From 8720ff94205959ebd547371570b0daf256a13af7 Mon Sep 17 00:00:00 2001 From: Vadbeg Date: Thu, 24 Oct 2019 12:34:47 +0300 Subject: [PATCH 01/11] Method for getting rss from url is created --- rss_reader.py | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 rss_reader.py diff --git a/rss_reader.py b/rss_reader.py new file mode 100644 index 0000000..2921236 --- /dev/null +++ b/rss_reader.py @@ -0,0 +1,43 @@ +import requests +import xml.etree.ElementTree as ET + + +def get_news(url, limit=None): + request = requests.get('https://news.yahoo.com/rss') + + result = request.text + tree = ET.fromstring(result) + + items = dict() + items.setdefault('title', ' ') + + for head_el in tree[0]: + if head_el.tag == 'title': + items['title'] = head_el.text + + for num, item in enumerate(tree.iter('item')): + + if limit is not None and limit == num: + break + + items.setdefault(num, {}) + + news_description = dict() + + for description in item: + news_description[description.tag] = description.text + + items[num].update(news_description) + + return items + + +def get_image(description): + pass + + +def fancy_output(): + pass + + +print(get_news('https://news.yahoo.com/rss')) From c3db1a37ed1217b6b935b1ddb201a995cfe0d087 Mon Sep 17 00:00:00 2001 From: Vadbeg Date: Thu, 24 Oct 2019 14:40:28 +0300 Subject: [PATCH 02/11] Methods for news ouput, image reading and description reading were added Every method was wrapped into class --- rss_reader.py | 98 +++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 75 insertions(+), 23 deletions(-) diff --git a/rss_reader.py b/rss_reader.py index 2921236..20f130b 100644 --- a/rss_reader.py +++ b/rss_reader.py @@ -1,43 +1,95 @@ import requests +import re + +import lxml.html as html import xml.etree.ElementTree as ET +import argparse + +class NewsReader: + def __init__(self, url, limit=None): + self.url = url + self.limit = limit + self.items = self.get_news() + + def get_news(self): + request = requests.get('https://news.yahoo.com/rss') + + result = request.text + tree = ET.fromstring(result) + + items = dict() + items.setdefault('title', ' ') + + for head_el in tree[0]: + if head_el.tag == 'title': + items['title'] = head_el.text + + for num, item in enumerate(tree.iter('item')): + + if self.limit is not None and self.limit == num: + break + + items.setdefault(num, {}) + + news_description = dict() + + for description in item: + news_description[description.tag] = description.text -def get_news(url, limit=None): - request = requests.get('https://news.yahoo.com/rss') + items[num].update(news_description) - result = request.text - tree = ET.fromstring(result) + return items - items = dict() - items.setdefault('title', ' ') + @staticmethod + def get_image_regexpr(description): + image_url = re.findall(r'src="([^"]+)"', description) + image_description = re.findall(r'alt="([^"]+)"', description) - for head_el in tree[0]: - if head_el.tag == 'title': - items['title'] = head_el.text + return image_url, image_description - for num, item in enumerate(tree.iter('item')): + @staticmethod + def get_image(description): + xhtml = html.fromstring(description) + image_src = xhtml.xpath('//img/@src') + image_description = xhtml.xpath('//img/@alt') - if limit is not None and limit == num: - break + return image_src, image_description - items.setdefault(num, {}) + @staticmethod + def get_description(description): + node = html.fromstring(description) - news_description = dict() + return node.text_content() - for description in item: - news_description[description.tag] = description.text + @staticmethod + def news_text(news): + image = NewsReader.get_image(news['description']) - items[num].update(news_description) + # TODO: solve problem with image indexing - return items + image_src = image[0][0] + image_description = image[1][0] + result = "\n\tTitle: {}\n\tDate: {}\n\tLink: {}\n\n\tImage link: {}\n\t" \ + "Image description: {}\n\tDescription: {}".format(news['title'], + news['pubDate'], + news['link'], + image_src, + image_description, + NewsReader.get_description(news['description'])) -def get_image(description): - pass + return result + def fancy_output(self): + for key, value in self.items.items(): + if key == 'title': + print(f'Feed: {value}') + else: + print(self.news_text(value)) -def fancy_output(): - pass + print('_' * 100) -print(get_news('https://news.yahoo.com/rss')) +rss = NewsReader('https://news.yahoo.com/rss', limit=2) +rss.fancy_output() From 945bf4872f4ef7abbd4282b6f994b24de16f6c97 Mon Sep 17 00:00:00 2001 From: Vadbeg Date: Fri, 25 Oct 2019 00:39:38 +0300 Subject: [PATCH 03/11] Simple argparse manipulations were added. New features: - from dict to json method created - news format was slightly changed --- rss_reader.py | 84 +++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 71 insertions(+), 13 deletions(-) diff --git a/rss_reader.py b/rss_reader.py index 20f130b..2b2c749 100644 --- a/rss_reader.py +++ b/rss_reader.py @@ -3,23 +3,40 @@ import lxml.html as html import xml.etree.ElementTree as ET +import json import argparse +PROJECT_VERSION = '1.0' + + class NewsReader: + """ + Class for reading news from rss-format files. + + @Input: url + """ + def __init__(self, url, limit=None): + """ + + :param url: url of rss + :param limit: limit of news in feed + """ + self.url = url self.limit = limit self.items = self.get_news() def get_news(self): - request = requests.get('https://news.yahoo.com/rss') + request = requests.get('https://news.yahoo.com/rss') # TODO: catch all errors result = request.text tree = ET.fromstring(result) items = dict() items.setdefault('title', ' ') + useful_tags = ['title', 'pubDate', 'link', 'description'] for head_el in tree[0]: if head_el.tag == 'title': @@ -35,12 +52,30 @@ def get_news(self): news_description = dict() for description in item: - news_description[description.tag] = description.text + if description.tag in useful_tags: + news_description[description.tag] = description.text + + text, image_link, image_text = NewsReader.parse_description(news_description['description']) + + news_description['description'] = text + news_description['imageLink'] = image_link + news_description['imageDescription'] = image_text items[num].update(news_description) return items + @staticmethod + def parse_description(description): + text = NewsReader.get_description(description) + image = NewsReader.get_image(description) + + # TODO: deal with image indexing + image_link = image[0][0] + image_text = image[1][0] + + return text, image_link, image_text + @staticmethod def get_image_regexpr(description): image_url = re.findall(r'src="([^"]+)"', description) @@ -64,20 +99,14 @@ def get_description(description): @staticmethod def news_text(news): - image = NewsReader.get_image(news['description']) - - # TODO: solve problem with image indexing - - image_src = image[0][0] - image_description = image[1][0] result = "\n\tTitle: {}\n\tDate: {}\n\tLink: {}\n\n\tImage link: {}\n\t" \ "Image description: {}\n\tDescription: {}".format(news['title'], news['pubDate'], news['link'], - image_src, - image_description, - NewsReader.get_description(news['description'])) + news['imageLink'], + news['imageDescription'], + news['description']) return result @@ -90,6 +119,35 @@ def fancy_output(self): print('_' * 100) + def to_json(self): + json_result = json.dumps(self.items) + # json_result = json.loads(json_result) + + return json_result + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='News Reader utility') + + parser.add_argument('source', type=str, help='RSS URL') + + parser.add_argument('--version', help='Print version info', action='store_true') + parser.add_argument('--json', help='Pring result as json in stdout', action='store_true') + parser.add_argument('--verbose', help='Output verbose status messages', action='store_true') + # TODO: add flags to output logs + parser.add_argument('--limit', type=int, help='Limit news topics if this parameter provided') + + args = parser.parse_args() + print(args) + + if args.version: + print(PROJECT_VERSION) + elif args.json: + news = NewsReader(args.source, args.limit) + + print(news.to_json()) + else: + news = NewsReader(args.source, args.limit) + + news.fancy_output() -rss = NewsReader('https://news.yahoo.com/rss', limit=2) -rss.fancy_output() From dfeae2c536533709f00a24e0138d7df7e272d7eb Mon Sep 17 00:00:00 2001 From: Vadbeg Date: Tue, 29 Oct 2019 12:56:21 +0300 Subject: [PATCH 04/11] Setuptools usage was added. As a result were created pacakge intsallation files (*.whl). Because of that project structure changed. rss_reader.py was moved to news_feed directory. --- README.md | 0 __init__.py | 0 build/__init__.py | 0 build/lib/__init__.py | 0 build/lib/build/__init__.py | 0 build/lib/build/lib/__init__.py | 0 build/lib/build/lib/build/__init__.py | 0 build/lib/build/lib/build/lib/__init__.py | 0 .../build/lib/news_feed_reader/__init__.py | 0 .../build/lib/news_feed_reader/rss_reader.py | 48 +++-- build/lib/build/lib/news_feed/__init__.py | 0 build/lib/build/lib/news_feed/rss_reader.py | 179 ++++++++++++++++++ .../build/lib/news_feed_reader/__init__.py | 0 .../build/lib/news_feed_reader/rss_reader.py | 179 ++++++++++++++++++ build/lib/news_feed/__init__.py | 0 build/lib/news_feed/rss_reader.py | 179 ++++++++++++++++++ build/lib/news_feed_reader/__init__.py | 0 build/lib/news_feed_reader/rss_reader.py | 179 ++++++++++++++++++ dist/news-feed-0.2.tar.gz | Bin 0 -> 2681 bytes dist/news_feed-0.2-py3-none-any.whl | Bin 0 -> 11382 bytes news_feed.egg-info/PKG-INFO | 14 ++ news_feed.egg-info/SOURCES.txt | 10 + news_feed.egg-info/dependency_links.txt | 1 + news_feed.egg-info/entry_points.txt | 3 + news_feed.egg-info/requires.txt | 1 + news_feed.egg-info/top_level.txt | 2 + news_feed/__init__.py | 0 news_feed/rss_reader.py | 179 ++++++++++++++++++ setup.py | 34 ++++ 29 files changed, 997 insertions(+), 11 deletions(-) create mode 100644 README.md create mode 100644 __init__.py create mode 100644 build/__init__.py create mode 100644 build/lib/__init__.py create mode 100644 build/lib/build/__init__.py create mode 100644 build/lib/build/lib/__init__.py create mode 100644 build/lib/build/lib/build/__init__.py create mode 100644 build/lib/build/lib/build/lib/__init__.py create mode 100644 build/lib/build/lib/build/lib/news_feed_reader/__init__.py rename rss_reader.py => build/lib/build/lib/build/lib/news_feed_reader/rss_reader.py (77%) create mode 100644 build/lib/build/lib/news_feed/__init__.py create mode 100644 build/lib/build/lib/news_feed/rss_reader.py create mode 100644 build/lib/build/lib/news_feed_reader/__init__.py create mode 100644 build/lib/build/lib/news_feed_reader/rss_reader.py create mode 100644 build/lib/news_feed/__init__.py create mode 100644 build/lib/news_feed/rss_reader.py create mode 100644 build/lib/news_feed_reader/__init__.py create mode 100644 build/lib/news_feed_reader/rss_reader.py create mode 100644 dist/news-feed-0.2.tar.gz create mode 100644 dist/news_feed-0.2-py3-none-any.whl create mode 100644 news_feed.egg-info/PKG-INFO create mode 100644 news_feed.egg-info/SOURCES.txt create mode 100644 news_feed.egg-info/dependency_links.txt create mode 100644 news_feed.egg-info/entry_points.txt create mode 100644 news_feed.egg-info/requires.txt create mode 100644 news_feed.egg-info/top_level.txt create mode 100644 news_feed/__init__.py create mode 100644 news_feed/rss_reader.py create mode 100644 setup.py diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/build/__init__.py b/build/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/build/lib/__init__.py b/build/lib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/build/lib/build/__init__.py b/build/lib/build/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/build/lib/build/lib/__init__.py b/build/lib/build/lib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/build/lib/build/lib/build/__init__.py b/build/lib/build/lib/build/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/build/lib/build/lib/build/lib/__init__.py b/build/lib/build/lib/build/lib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/build/lib/build/lib/build/lib/news_feed_reader/__init__.py b/build/lib/build/lib/build/lib/news_feed_reader/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/rss_reader.py b/build/lib/build/lib/build/lib/news_feed_reader/rss_reader.py similarity index 77% rename from rss_reader.py rename to build/lib/build/lib/build/lib/news_feed_reader/rss_reader.py index 2b2c749..6f44907 100644 --- a/rss_reader.py +++ b/build/lib/build/lib/build/lib/news_feed_reader/rss_reader.py @@ -8,6 +8,7 @@ import argparse PROJECT_VERSION = '1.0' +PROJECT_DESCRIPTION = '' class NewsReader: @@ -17,7 +18,7 @@ class NewsReader: @Input: url """ - def __init__(self, url, limit=None): + def __init__(self, url, limit=None, verbose=False): """ :param url: url of rss @@ -26,10 +27,15 @@ def __init__(self, url, limit=None): self.url = url self.limit = limit + self.verbose = verbose + self.items = self.get_news() def get_news(self): - request = requests.get('https://news.yahoo.com/rss') # TODO: catch all errors + request = requests.get(self.url) # TODO: catch all errors + + if self.verbose: + print(request.status_code) # TODO: create understandable error status output result = request.text tree = ET.fromstring(result) @@ -71,8 +77,8 @@ def parse_description(description): image = NewsReader.get_image(description) # TODO: deal with image indexing - image_link = image[0][0] - image_text = image[1][0] + image_link = image[0] + image_text = image[1] return text, image_link, image_text @@ -89,6 +95,16 @@ def get_image(description): image_src = xhtml.xpath('//img/@src') image_description = xhtml.xpath('//img/@alt') + if len(image_src) == 0: + image_src = 'No image' + else: + image_src = image_src[0] + + if len(image_description) == 0: + image_description = 'No image description' + else: + image_description = image_description[0] + return image_src, image_description @staticmethod @@ -111,6 +127,9 @@ def news_text(news): return result def fancy_output(self): + if self.verbose: + print('News feed is ready') + for key, value in self.items.items(): if key == 'title': print(f'Feed: {value}') @@ -120,19 +139,21 @@ def fancy_output(self): print('_' * 100) def to_json(self): + if self.verbose: + print('Json was created') + json_result = json.dumps(self.items) - # json_result = json.loads(json_result) return json_result -if __name__ == '__main__': - parser = argparse.ArgumentParser(description='News Reader utility') +def main(): + parser = argparse.ArgumentParser(description='Pure Python command-line RSS reader') parser.add_argument('source', type=str, help='RSS URL') parser.add_argument('--version', help='Print version info', action='store_true') - parser.add_argument('--json', help='Pring result as json in stdout', action='store_true') + parser.add_argument('--json', help='Print result as json in stdout', action='store_true') parser.add_argument('--verbose', help='Output verbose status messages', action='store_true') # TODO: add flags to output logs parser.add_argument('--limit', type=int, help='Limit news topics if this parameter provided') @@ -142,12 +163,17 @@ def to_json(self): if args.version: print(PROJECT_VERSION) - elif args.json: - news = NewsReader(args.source, args.limit) + print(PROJECT_DESCRIPTION) + + if args.json: + news = NewsReader(args.source, args.limit, args.verbose) print(news.to_json()) else: - news = NewsReader(args.source, args.limit) + news = NewsReader(args.source, args.limit, args.verbose) news.fancy_output() + +if __name__ == '__main__': + main() diff --git a/build/lib/build/lib/news_feed/__init__.py b/build/lib/build/lib/news_feed/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/build/lib/build/lib/news_feed/rss_reader.py b/build/lib/build/lib/news_feed/rss_reader.py new file mode 100644 index 0000000..0453156 --- /dev/null +++ b/build/lib/build/lib/news_feed/rss_reader.py @@ -0,0 +1,179 @@ +import requests +import re +import datetime + +import lxml.html as html +import xml.etree.ElementTree as ET +import json + +import argparse + +PROJECT_VERSION = '1.0' +PROJECT_DESCRIPTION = '' + + +class NewsReader: + """ + Class for reading news from rss-format files. + + @Input: url + """ + + def __init__(self, url, limit=None, verbose=False): + """ + + :param url: url of rss + :param limit: limit of news in feed + """ + + self.url = url + self.limit = limit + self.verbose = verbose + + self.items = self.get_news() + + def get_news(self): + request = requests.get(self.url) # TODO: catch all errors + + if self.verbose: + print(request.status_code) # TODO: create understandable error status output + + result = request.text + tree = ET.fromstring(result) + + items = dict() + items.setdefault('title', ' ') + useful_tags = ['title', 'pubDate', 'link', 'description'] + + for head_el in tree[0]: + if head_el.tag == 'title': + items['title'] = head_el.text + + for num, item in enumerate(tree.iter('item')): + + if self.limit is not None and self.limit == num: + break + + items.setdefault(num, {}) + + news_description = dict() + + for description in item: + if description.tag in useful_tags: + news_description[description.tag] = description.text + + text, image_link, image_text = NewsReader.parse_description(news_description['description']) + + news_description['description'] = text + news_description['imageLink'] = image_link + news_description['imageDescription'] = image_text + + items[num].update(news_description) + + return items + + def cash_news(self): + pass + + @staticmethod + def parse_description(description): + text = NewsReader.get_description(description) + image = NewsReader.get_image(description) + + # TODO: deal with image indexing + image_link = image[0] + image_text = image[1] + + return text, image_link, image_text + + @staticmethod + def get_image(description): + xhtml = html.fromstring(description) + image_src = xhtml.xpath('//img/@src') + image_description = xhtml.xpath('//img/@alt') + + if len(image_src) == 0: + image_src = 'No image' + else: + image_src = image_src[0] + + if len(image_description) == 0: + image_description = 'No image description' + else: + image_description = image_description[0] + + return image_src, image_description + + @staticmethod + def get_description(description): + node = html.fromstring(description) + + return node.text_content() + + @staticmethod + def news_text(news): + + result = "\n\tTitle: {}\n\tDate: {}\n\tLink: {}\n\n\tImage link: {}\n\t" \ + "Image description: {}\n\tDescription: {}".format(news['title'], + news['pubDate'], + news['link'], + news['imageLink'], + news['imageDescription'], + news['description']) + + return result + + def fancy_output(self): + if self.verbose: + print('News feed is ready') + + for key, value in self.items.items(): + if key == 'title': + print(f'Feed: {value}') + else: + print(self.news_text(value)) + + print('_' * 100) + + def to_json(self): + if self.verbose: + print('Json was created') + + json_result = json.dumps(self.items) + + return json_result + + +def main(): + parser = argparse.ArgumentParser(description='Pure Python command-line RSS reader') + + parser.add_argument('source', type=str, help='RSS URL') + + parser.add_argument('--version', help='Print version info', action='store_true') + parser.add_argument('--json', help='Print result as json in stdout', action='store_true') + parser.add_argument('--verbose', help='Output verbose status messages', action='store_true') + parser.add_argument('--cashing', help='Cash news if chosen', action='store_true') + + # TODO: add flags to output logs + parser.add_argument('--limit', type=int, help='Limit news topics if this parameter provided') + parser.add_argument('--date', type=datetime.datetime, help='Reads cashed news by date. And output them') + + args = parser.parse_args() + print(args) + + if args.version: + print(PROJECT_VERSION) + print(PROJECT_DESCRIPTION) + + if args.json: + news = NewsReader(args.source, args.limit, args.verbose) + + print(news.to_json()) + else: + news = NewsReader(args.source, args.limit, args.verbose) + + news.fancy_output() + + +if __name__ == '__main__': + main() diff --git a/build/lib/build/lib/news_feed_reader/__init__.py b/build/lib/build/lib/news_feed_reader/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/build/lib/build/lib/news_feed_reader/rss_reader.py b/build/lib/build/lib/news_feed_reader/rss_reader.py new file mode 100644 index 0000000..6f44907 --- /dev/null +++ b/build/lib/build/lib/news_feed_reader/rss_reader.py @@ -0,0 +1,179 @@ +import requests +import re + +import lxml.html as html +import xml.etree.ElementTree as ET +import json + +import argparse + +PROJECT_VERSION = '1.0' +PROJECT_DESCRIPTION = '' + + +class NewsReader: + """ + Class for reading news from rss-format files. + + @Input: url + """ + + def __init__(self, url, limit=None, verbose=False): + """ + + :param url: url of rss + :param limit: limit of news in feed + """ + + self.url = url + self.limit = limit + self.verbose = verbose + + self.items = self.get_news() + + def get_news(self): + request = requests.get(self.url) # TODO: catch all errors + + if self.verbose: + print(request.status_code) # TODO: create understandable error status output + + result = request.text + tree = ET.fromstring(result) + + items = dict() + items.setdefault('title', ' ') + useful_tags = ['title', 'pubDate', 'link', 'description'] + + for head_el in tree[0]: + if head_el.tag == 'title': + items['title'] = head_el.text + + for num, item in enumerate(tree.iter('item')): + + if self.limit is not None and self.limit == num: + break + + items.setdefault(num, {}) + + news_description = dict() + + for description in item: + if description.tag in useful_tags: + news_description[description.tag] = description.text + + text, image_link, image_text = NewsReader.parse_description(news_description['description']) + + news_description['description'] = text + news_description['imageLink'] = image_link + news_description['imageDescription'] = image_text + + items[num].update(news_description) + + return items + + @staticmethod + def parse_description(description): + text = NewsReader.get_description(description) + image = NewsReader.get_image(description) + + # TODO: deal with image indexing + image_link = image[0] + image_text = image[1] + + return text, image_link, image_text + + @staticmethod + def get_image_regexpr(description): + image_url = re.findall(r'src="([^"]+)"', description) + image_description = re.findall(r'alt="([^"]+)"', description) + + return image_url, image_description + + @staticmethod + def get_image(description): + xhtml = html.fromstring(description) + image_src = xhtml.xpath('//img/@src') + image_description = xhtml.xpath('//img/@alt') + + if len(image_src) == 0: + image_src = 'No image' + else: + image_src = image_src[0] + + if len(image_description) == 0: + image_description = 'No image description' + else: + image_description = image_description[0] + + return image_src, image_description + + @staticmethod + def get_description(description): + node = html.fromstring(description) + + return node.text_content() + + @staticmethod + def news_text(news): + + result = "\n\tTitle: {}\n\tDate: {}\n\tLink: {}\n\n\tImage link: {}\n\t" \ + "Image description: {}\n\tDescription: {}".format(news['title'], + news['pubDate'], + news['link'], + news['imageLink'], + news['imageDescription'], + news['description']) + + return result + + def fancy_output(self): + if self.verbose: + print('News feed is ready') + + for key, value in self.items.items(): + if key == 'title': + print(f'Feed: {value}') + else: + print(self.news_text(value)) + + print('_' * 100) + + def to_json(self): + if self.verbose: + print('Json was created') + + json_result = json.dumps(self.items) + + return json_result + + +def main(): + parser = argparse.ArgumentParser(description='Pure Python command-line RSS reader') + + parser.add_argument('source', type=str, help='RSS URL') + + parser.add_argument('--version', help='Print version info', action='store_true') + parser.add_argument('--json', help='Print result as json in stdout', action='store_true') + parser.add_argument('--verbose', help='Output verbose status messages', action='store_true') + # TODO: add flags to output logs + parser.add_argument('--limit', type=int, help='Limit news topics if this parameter provided') + + args = parser.parse_args() + print(args) + + if args.version: + print(PROJECT_VERSION) + print(PROJECT_DESCRIPTION) + + if args.json: + news = NewsReader(args.source, args.limit, args.verbose) + + print(news.to_json()) + else: + news = NewsReader(args.source, args.limit, args.verbose) + + news.fancy_output() + + +if __name__ == '__main__': + main() diff --git a/build/lib/news_feed/__init__.py b/build/lib/news_feed/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/build/lib/news_feed/rss_reader.py b/build/lib/news_feed/rss_reader.py new file mode 100644 index 0000000..0453156 --- /dev/null +++ b/build/lib/news_feed/rss_reader.py @@ -0,0 +1,179 @@ +import requests +import re +import datetime + +import lxml.html as html +import xml.etree.ElementTree as ET +import json + +import argparse + +PROJECT_VERSION = '1.0' +PROJECT_DESCRIPTION = '' + + +class NewsReader: + """ + Class for reading news from rss-format files. + + @Input: url + """ + + def __init__(self, url, limit=None, verbose=False): + """ + + :param url: url of rss + :param limit: limit of news in feed + """ + + self.url = url + self.limit = limit + self.verbose = verbose + + self.items = self.get_news() + + def get_news(self): + request = requests.get(self.url) # TODO: catch all errors + + if self.verbose: + print(request.status_code) # TODO: create understandable error status output + + result = request.text + tree = ET.fromstring(result) + + items = dict() + items.setdefault('title', ' ') + useful_tags = ['title', 'pubDate', 'link', 'description'] + + for head_el in tree[0]: + if head_el.tag == 'title': + items['title'] = head_el.text + + for num, item in enumerate(tree.iter('item')): + + if self.limit is not None and self.limit == num: + break + + items.setdefault(num, {}) + + news_description = dict() + + for description in item: + if description.tag in useful_tags: + news_description[description.tag] = description.text + + text, image_link, image_text = NewsReader.parse_description(news_description['description']) + + news_description['description'] = text + news_description['imageLink'] = image_link + news_description['imageDescription'] = image_text + + items[num].update(news_description) + + return items + + def cash_news(self): + pass + + @staticmethod + def parse_description(description): + text = NewsReader.get_description(description) + image = NewsReader.get_image(description) + + # TODO: deal with image indexing + image_link = image[0] + image_text = image[1] + + return text, image_link, image_text + + @staticmethod + def get_image(description): + xhtml = html.fromstring(description) + image_src = xhtml.xpath('//img/@src') + image_description = xhtml.xpath('//img/@alt') + + if len(image_src) == 0: + image_src = 'No image' + else: + image_src = image_src[0] + + if len(image_description) == 0: + image_description = 'No image description' + else: + image_description = image_description[0] + + return image_src, image_description + + @staticmethod + def get_description(description): + node = html.fromstring(description) + + return node.text_content() + + @staticmethod + def news_text(news): + + result = "\n\tTitle: {}\n\tDate: {}\n\tLink: {}\n\n\tImage link: {}\n\t" \ + "Image description: {}\n\tDescription: {}".format(news['title'], + news['pubDate'], + news['link'], + news['imageLink'], + news['imageDescription'], + news['description']) + + return result + + def fancy_output(self): + if self.verbose: + print('News feed is ready') + + for key, value in self.items.items(): + if key == 'title': + print(f'Feed: {value}') + else: + print(self.news_text(value)) + + print('_' * 100) + + def to_json(self): + if self.verbose: + print('Json was created') + + json_result = json.dumps(self.items) + + return json_result + + +def main(): + parser = argparse.ArgumentParser(description='Pure Python command-line RSS reader') + + parser.add_argument('source', type=str, help='RSS URL') + + parser.add_argument('--version', help='Print version info', action='store_true') + parser.add_argument('--json', help='Print result as json in stdout', action='store_true') + parser.add_argument('--verbose', help='Output verbose status messages', action='store_true') + parser.add_argument('--cashing', help='Cash news if chosen', action='store_true') + + # TODO: add flags to output logs + parser.add_argument('--limit', type=int, help='Limit news topics if this parameter provided') + parser.add_argument('--date', type=datetime.datetime, help='Reads cashed news by date. And output them') + + args = parser.parse_args() + print(args) + + if args.version: + print(PROJECT_VERSION) + print(PROJECT_DESCRIPTION) + + if args.json: + news = NewsReader(args.source, args.limit, args.verbose) + + print(news.to_json()) + else: + news = NewsReader(args.source, args.limit, args.verbose) + + news.fancy_output() + + +if __name__ == '__main__': + main() diff --git a/build/lib/news_feed_reader/__init__.py b/build/lib/news_feed_reader/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/build/lib/news_feed_reader/rss_reader.py b/build/lib/news_feed_reader/rss_reader.py new file mode 100644 index 0000000..6f44907 --- /dev/null +++ b/build/lib/news_feed_reader/rss_reader.py @@ -0,0 +1,179 @@ +import requests +import re + +import lxml.html as html +import xml.etree.ElementTree as ET +import json + +import argparse + +PROJECT_VERSION = '1.0' +PROJECT_DESCRIPTION = '' + + +class NewsReader: + """ + Class for reading news from rss-format files. + + @Input: url + """ + + def __init__(self, url, limit=None, verbose=False): + """ + + :param url: url of rss + :param limit: limit of news in feed + """ + + self.url = url + self.limit = limit + self.verbose = verbose + + self.items = self.get_news() + + def get_news(self): + request = requests.get(self.url) # TODO: catch all errors + + if self.verbose: + print(request.status_code) # TODO: create understandable error status output + + result = request.text + tree = ET.fromstring(result) + + items = dict() + items.setdefault('title', ' ') + useful_tags = ['title', 'pubDate', 'link', 'description'] + + for head_el in tree[0]: + if head_el.tag == 'title': + items['title'] = head_el.text + + for num, item in enumerate(tree.iter('item')): + + if self.limit is not None and self.limit == num: + break + + items.setdefault(num, {}) + + news_description = dict() + + for description in item: + if description.tag in useful_tags: + news_description[description.tag] = description.text + + text, image_link, image_text = NewsReader.parse_description(news_description['description']) + + news_description['description'] = text + news_description['imageLink'] = image_link + news_description['imageDescription'] = image_text + + items[num].update(news_description) + + return items + + @staticmethod + def parse_description(description): + text = NewsReader.get_description(description) + image = NewsReader.get_image(description) + + # TODO: deal with image indexing + image_link = image[0] + image_text = image[1] + + return text, image_link, image_text + + @staticmethod + def get_image_regexpr(description): + image_url = re.findall(r'src="([^"]+)"', description) + image_description = re.findall(r'alt="([^"]+)"', description) + + return image_url, image_description + + @staticmethod + def get_image(description): + xhtml = html.fromstring(description) + image_src = xhtml.xpath('//img/@src') + image_description = xhtml.xpath('//img/@alt') + + if len(image_src) == 0: + image_src = 'No image' + else: + image_src = image_src[0] + + if len(image_description) == 0: + image_description = 'No image description' + else: + image_description = image_description[0] + + return image_src, image_description + + @staticmethod + def get_description(description): + node = html.fromstring(description) + + return node.text_content() + + @staticmethod + def news_text(news): + + result = "\n\tTitle: {}\n\tDate: {}\n\tLink: {}\n\n\tImage link: {}\n\t" \ + "Image description: {}\n\tDescription: {}".format(news['title'], + news['pubDate'], + news['link'], + news['imageLink'], + news['imageDescription'], + news['description']) + + return result + + def fancy_output(self): + if self.verbose: + print('News feed is ready') + + for key, value in self.items.items(): + if key == 'title': + print(f'Feed: {value}') + else: + print(self.news_text(value)) + + print('_' * 100) + + def to_json(self): + if self.verbose: + print('Json was created') + + json_result = json.dumps(self.items) + + return json_result + + +def main(): + parser = argparse.ArgumentParser(description='Pure Python command-line RSS reader') + + parser.add_argument('source', type=str, help='RSS URL') + + parser.add_argument('--version', help='Print version info', action='store_true') + parser.add_argument('--json', help='Print result as json in stdout', action='store_true') + parser.add_argument('--verbose', help='Output verbose status messages', action='store_true') + # TODO: add flags to output logs + parser.add_argument('--limit', type=int, help='Limit news topics if this parameter provided') + + args = parser.parse_args() + print(args) + + if args.version: + print(PROJECT_VERSION) + print(PROJECT_DESCRIPTION) + + if args.json: + news = NewsReader(args.source, args.limit, args.verbose) + + print(news.to_json()) + else: + news = NewsReader(args.source, args.limit, args.verbose) + + news.fancy_output() + + +if __name__ == '__main__': + main() diff --git a/dist/news-feed-0.2.tar.gz b/dist/news-feed-0.2.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..bbaa8834c231e9fa16629f488d53ed7d84a1d18a GIT binary patch literal 2681 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 literal 0 HcmV?d00001 diff --git a/dist/news_feed-0.2-py3-none-any.whl b/dist/news_feed-0.2-py3-none-any.whl new file mode 100644 index 0000000000000000000000000000000000000000..c626569c1a066652d8e62156a70c0427fecfbc64 GIT binary patch literal 11382 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 literal 0 HcmV?d00001 diff --git a/news_feed.egg-info/PKG-INFO b/news_feed.egg-info/PKG-INFO new file mode 100644 index 0000000..0fcb52b --- /dev/null +++ b/news_feed.egg-info/PKG-INFO @@ -0,0 +1,14 @@ +Metadata-Version: 2.1 +Name: news-feed +Version: 0.2 +Summary: News aggregator +Home-page: https://github.com/Vadbeg/news_feed_reader +Author: Vadim Titko +Author-email: Vadbeg@tut.by +License: UNKNOWN +Description: UNKNOWN +Platform: UNKNOWN +Classifier: Programming Language :: Python :: 3 +Classifier: Operating System :: OS Independent +Requires-Python: >=3.6 +Description-Content-Type: text/markdown diff --git a/news_feed.egg-info/SOURCES.txt b/news_feed.egg-info/SOURCES.txt new file mode 100644 index 0000000..870fff8 --- /dev/null +++ b/news_feed.egg-info/SOURCES.txt @@ -0,0 +1,10 @@ +README.md +setup.py +news_feed/__init__.py +news_feed/rss_reader.py +news_feed.egg-info/PKG-INFO +news_feed.egg-info/SOURCES.txt +news_feed.egg-info/dependency_links.txt +news_feed.egg-info/entry_points.txt +news_feed.egg-info/requires.txt +news_feed.egg-info/top_level.txt \ No newline at end of file diff --git a/news_feed.egg-info/dependency_links.txt b/news_feed.egg-info/dependency_links.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/news_feed.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/news_feed.egg-info/entry_points.txt b/news_feed.egg-info/entry_points.txt new file mode 100644 index 0000000..1aa40ae --- /dev/null +++ b/news_feed.egg-info/entry_points.txt @@ -0,0 +1,3 @@ +[console_scripts] +rss_reader = news_feed.rss_reader:main + diff --git a/news_feed.egg-info/requires.txt b/news_feed.egg-info/requires.txt new file mode 100644 index 0000000..f2d1975 --- /dev/null +++ b/news_feed.egg-info/requires.txt @@ -0,0 +1 @@ +lxml>=4.3.0 diff --git a/news_feed.egg-info/top_level.txt b/news_feed.egg-info/top_level.txt new file mode 100644 index 0000000..85f2f3e --- /dev/null +++ b/news_feed.egg-info/top_level.txt @@ -0,0 +1,2 @@ +build +news_feed diff --git a/news_feed/__init__.py b/news_feed/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/news_feed/rss_reader.py b/news_feed/rss_reader.py new file mode 100644 index 0000000..0453156 --- /dev/null +++ b/news_feed/rss_reader.py @@ -0,0 +1,179 @@ +import requests +import re +import datetime + +import lxml.html as html +import xml.etree.ElementTree as ET +import json + +import argparse + +PROJECT_VERSION = '1.0' +PROJECT_DESCRIPTION = '' + + +class NewsReader: + """ + Class for reading news from rss-format files. + + @Input: url + """ + + def __init__(self, url, limit=None, verbose=False): + """ + + :param url: url of rss + :param limit: limit of news in feed + """ + + self.url = url + self.limit = limit + self.verbose = verbose + + self.items = self.get_news() + + def get_news(self): + request = requests.get(self.url) # TODO: catch all errors + + if self.verbose: + print(request.status_code) # TODO: create understandable error status output + + result = request.text + tree = ET.fromstring(result) + + items = dict() + items.setdefault('title', ' ') + useful_tags = ['title', 'pubDate', 'link', 'description'] + + for head_el in tree[0]: + if head_el.tag == 'title': + items['title'] = head_el.text + + for num, item in enumerate(tree.iter('item')): + + if self.limit is not None and self.limit == num: + break + + items.setdefault(num, {}) + + news_description = dict() + + for description in item: + if description.tag in useful_tags: + news_description[description.tag] = description.text + + text, image_link, image_text = NewsReader.parse_description(news_description['description']) + + news_description['description'] = text + news_description['imageLink'] = image_link + news_description['imageDescription'] = image_text + + items[num].update(news_description) + + return items + + def cash_news(self): + pass + + @staticmethod + def parse_description(description): + text = NewsReader.get_description(description) + image = NewsReader.get_image(description) + + # TODO: deal with image indexing + image_link = image[0] + image_text = image[1] + + return text, image_link, image_text + + @staticmethod + def get_image(description): + xhtml = html.fromstring(description) + image_src = xhtml.xpath('//img/@src') + image_description = xhtml.xpath('//img/@alt') + + if len(image_src) == 0: + image_src = 'No image' + else: + image_src = image_src[0] + + if len(image_description) == 0: + image_description = 'No image description' + else: + image_description = image_description[0] + + return image_src, image_description + + @staticmethod + def get_description(description): + node = html.fromstring(description) + + return node.text_content() + + @staticmethod + def news_text(news): + + result = "\n\tTitle: {}\n\tDate: {}\n\tLink: {}\n\n\tImage link: {}\n\t" \ + "Image description: {}\n\tDescription: {}".format(news['title'], + news['pubDate'], + news['link'], + news['imageLink'], + news['imageDescription'], + news['description']) + + return result + + def fancy_output(self): + if self.verbose: + print('News feed is ready') + + for key, value in self.items.items(): + if key == 'title': + print(f'Feed: {value}') + else: + print(self.news_text(value)) + + print('_' * 100) + + def to_json(self): + if self.verbose: + print('Json was created') + + json_result = json.dumps(self.items) + + return json_result + + +def main(): + parser = argparse.ArgumentParser(description='Pure Python command-line RSS reader') + + parser.add_argument('source', type=str, help='RSS URL') + + parser.add_argument('--version', help='Print version info', action='store_true') + parser.add_argument('--json', help='Print result as json in stdout', action='store_true') + parser.add_argument('--verbose', help='Output verbose status messages', action='store_true') + parser.add_argument('--cashing', help='Cash news if chosen', action='store_true') + + # TODO: add flags to output logs + parser.add_argument('--limit', type=int, help='Limit news topics if this parameter provided') + parser.add_argument('--date', type=datetime.datetime, help='Reads cashed news by date. And output them') + + args = parser.parse_args() + print(args) + + if args.version: + print(PROJECT_VERSION) + print(PROJECT_DESCRIPTION) + + if args.json: + news = NewsReader(args.source, args.limit, args.verbose) + + print(news.to_json()) + else: + news = NewsReader(args.source, args.limit, args.verbose) + + news.fancy_output() + + +if __name__ == '__main__': + main() diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..734c7a0 --- /dev/null +++ b/setup.py @@ -0,0 +1,34 @@ +from setuptools import setup, find_packages + +with open('README.md', 'r') as file: + long_description = file.read() + + +setup( + name='news-feed', + version='0.2', + description='News aggregator', + long_description=long_description, + long_description_content_type='text/markdown', + + py_modules=['news_feed.rss_reader'], + author='Vadim Titko', + author_email='Vadbeg@tut.by', + url='https://github.com/Vadbeg/news_feed_reader', + + packages=find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "Operating System :: OS Independent" + ], + + entry_points={ + 'console_scripts': [ + 'rss_reader = news_feed.rss_reader:main' + ] + }, + + install_requires=['lxml>=4.3.0'], + python_requires='>=3.6' +) + From 0cf5b6b0d20195e141b49224e02840ef21c0b8de Mon Sep 17 00:00:00 2001 From: Vadbeg Date: Tue, 29 Oct 2019 23:01:01 +0300 Subject: [PATCH 05/11] News cashing was added to method _cash_news --- news_feed/news_cash/20191028.csv | 2 + news_feed/news_cash/20191029.csv | 2 + news_feed/rss_reader.py | 110 +++++++++++++++++++++---------- setup.py | 2 +- 4 files changed, 79 insertions(+), 37 deletions(-) create mode 100644 news_feed/news_cash/20191028.csv create mode 100644 news_feed/news_cash/20191029.csv diff --git a/news_feed/news_cash/20191028.csv b/news_feed/news_cash/20191028.csv new file mode 100644 index 0000000..921c77c --- /dev/null +++ b/news_feed/news_cash/20191028.csv @@ -0,0 +1,2 @@ +title,description,link,pubDate,imageLink,imageDescription +Washington Post changes al-Baghdadi headline that called terror leader an 'austere religious scholar',"Critics, including President Trump’s children, blasted the paper for an obituary headline that did not portray the ISIS leader's brutality.",https://news.yahoo.com/washington-post-al-baghdadi-obit-headline-austere-religious-scholar-143726879.html,"Mon, 28 Oct 2019 10:37:26 -0400",http://l.yimg.com/uu/api/res/1.2/7rwCo096GFtbwM3xksJyJw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e89af620-f98f-11e9-a7fb-7c7ac5390849,Washington Post changes al-Baghdadi headline that called terror leader an 'austere religious scholar' diff --git a/news_feed/news_cash/20191029.csv b/news_feed/news_cash/20191029.csv new file mode 100644 index 0000000..ac302e7 --- /dev/null +++ b/news_feed/news_cash/20191029.csv @@ -0,0 +1,2 @@ +title,description,link,pubDate,imageLink,imageDescription +"Australian sentenced to 36 years for murder, rape of Israeli","An Australian judge sentenced a man to 36 years in prison on Tuesday for the murder and rape of an Israeli student whom he bludgeoned into unconsciousness moments after she stepped off a tram in Melbourne before setting her corpse on fire. Victoria state Supreme Court Justice Elizabeth Hollingworth ordered Codey Herrmann, 21, to serve at least 30 years behind bars for his crimes against 21-year-old Aiia Maasarwe last January. The judge said she would have sentenced Herrmann to 40 years in prison with 35 years to be served before he became eligible for parole if he had not pleaded guilty in the face of an overwhelming prosecution case.",https://news.yahoo.com/australian-sentenced-36-years-murder-070115167.html,"Tue, 29 Oct 2019 07:19:51 -0400",http://l2.yimg.com/uu/api/res/1.2/0CYJ1TXh_l4vlv6ue7nf4w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/dd0e716151b3d52cbd8a634fb73ee4e8,"Australian sentenced to 36 years for murder, rape of Israeli" diff --git a/news_feed/rss_reader.py b/news_feed/rss_reader.py index 0453156..2dc3905 100644 --- a/news_feed/rss_reader.py +++ b/news_feed/rss_reader.py @@ -1,10 +1,14 @@ import requests import re +import os + import datetime +from dateutil.parser import parse import lxml.html as html import xml.etree.ElementTree as ET import json +import csv import argparse @@ -19,7 +23,7 @@ class NewsReader: @Input: url """ - def __init__(self, url, limit=None, verbose=False): + def __init__(self, url, limit=None, verbose=False, cashing=False): """ :param url: url of rss @@ -29,6 +33,7 @@ def __init__(self, url, limit=None, verbose=False): self.url = url self.limit = limit self.verbose = verbose + self.cashing = cashing self.items = self.get_news() @@ -69,11 +74,39 @@ def get_news(self): news_description['imageDescription'] = image_text items[num].update(news_description) + NewsReader._cash_news(items[num]) return items - def cash_news(self): - pass + @staticmethod + def _cash_news(news, dir='news_cash', ): + date = NewsReader.get_date(news) + date = ''.join(str(date).split('-')) + + if not os.path.exists(dir): + os.mkdir(dir) + + path = os.path.join(dir, date + '.csv') + with open(path, 'w+') as file: + csv_writer = csv.writer(file, delimiter=',', + quotechar='"', quoting=csv.QUOTE_MINIMAL) + + if os.path.getsize(path) == 0: + head = ','.join(news.keys()) + + file.write(head + '\n') + + csv_writer.writerow(news.values()) + + @staticmethod + def get_date(news): + news_date = news['pubDate'] + + # news_date = datetime.datetime.strptime(date, '%a, %d %b %Y %H:%M:%S %Z') + news_date = parse(news_date) + news_date = news_date.date() + + return news_date @staticmethod def parse_description(description): @@ -144,36 +177,41 @@ def to_json(self): return json_result -def main(): - parser = argparse.ArgumentParser(description='Pure Python command-line RSS reader') - - parser.add_argument('source', type=str, help='RSS URL') - - parser.add_argument('--version', help='Print version info', action='store_true') - parser.add_argument('--json', help='Print result as json in stdout', action='store_true') - parser.add_argument('--verbose', help='Output verbose status messages', action='store_true') - parser.add_argument('--cashing', help='Cash news if chosen', action='store_true') - - # TODO: add flags to output logs - parser.add_argument('--limit', type=int, help='Limit news topics if this parameter provided') - parser.add_argument('--date', type=datetime.datetime, help='Reads cashed news by date. And output them') - - args = parser.parse_args() - print(args) - - if args.version: - print(PROJECT_VERSION) - print(PROJECT_DESCRIPTION) - - if args.json: - news = NewsReader(args.source, args.limit, args.verbose) - - print(news.to_json()) - else: - news = NewsReader(args.source, args.limit, args.verbose) - - news.fancy_output() - - -if __name__ == '__main__': - main() +feed = NewsReader(' https://news.yahoo.com/rss/', limit=3, cashing=True) +print(feed.to_json()) + +# date = datetime.datetime.strptime(date, '%a, %d %b %Y %H:%M:%S %Z') + +# def main(): +# parser = argparse.ArgumentParser(description='Pure Python command-line RSS reader') +# +# parser.add_argument('source', type=str, help='RSS URL') +# +# parser.add_argument('--version', help='Print version info', action='store_true') +# parser.add_argument('--json', help='Print result as json in stdout', action='store_true') +# parser.add_argument('--verbose', help='Output verbose status messages', action='store_true') +# parser.add_argument('--cashing', help='Cash news if chosen', action='store_true') +# +# # TODO: add flags to output logs +# parser.add_argument('--limit', type=int, help='Limit news topics if this parameter provided') +# parser.add_argument('--date', type=datetime.datetime, help='Reads cashed news by date. And output them') +# +# args = parser.parse_args() +# print(args) +# +# if args.version: +# print(PROJECT_VERSION) +# print(PROJECT_DESCRIPTION) +# +# if args.json: +# news = NewsReader(args.source, args.limit, args.verbose) +# +# print(news.to_json()) +# else: +# news = NewsReader(args.source, args.limit, args.verbose) +# +# news.fancy_output() +# +# +# if __name__ == '__main__': +# main() diff --git a/setup.py b/setup.py index 734c7a0..824ca24 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ ] }, - install_requires=['lxml>=4.3.0'], + install_requires=['lxml>=4.3.0', 'dateutil'], python_requires='>=3.6' ) From 9f8be1d8f62d765e5f6f21ce4d85e17b0f693b82 Mon Sep 17 00:00:00 2001 From: Vadbeg Date: Wed, 30 Oct 2019 00:20:23 +0300 Subject: [PATCH 06/11] News cashing and reading by date were added --- news_feed/news_cash/20180726.csv | 2 + news_feed/news_cash/20181106.csv | 2 + news_feed/news_cash/20190409.csv | 2 + news_feed/news_cash/20190607.csv | 2 + news_feed/news_cash/20190712.csv | 3 + news_feed/news_cash/20190730.csv | 2 + news_feed/news_cash/20190731.csv | 2 + news_feed/news_cash/20190816.csv | 2 + news_feed/news_cash/20190902.csv | 2 + news_feed/news_cash/20190918.csv | 2 + news_feed/news_cash/20190924.csv | 2 + news_feed/news_cash/20191007.csv | 2 + news_feed/news_cash/20191015.csv | 3 + news_feed/news_cash/20191021.csv | 2 + news_feed/news_cash/20191022.csv | 2 + news_feed/news_cash/20191026.csv | 2 + news_feed/news_cash/20191028.csv | 6 +- news_feed/news_cash/20191029.csv | 9 ++- news_feed/rss_reader.py | 121 +++++++++++++++++++++++++++++-- 19 files changed, 158 insertions(+), 12 deletions(-) create mode 100644 news_feed/news_cash/20180726.csv create mode 100644 news_feed/news_cash/20181106.csv create mode 100644 news_feed/news_cash/20190409.csv create mode 100644 news_feed/news_cash/20190607.csv create mode 100644 news_feed/news_cash/20190712.csv create mode 100644 news_feed/news_cash/20190730.csv create mode 100644 news_feed/news_cash/20190731.csv create mode 100644 news_feed/news_cash/20190816.csv create mode 100644 news_feed/news_cash/20190902.csv create mode 100644 news_feed/news_cash/20190918.csv create mode 100644 news_feed/news_cash/20190924.csv create mode 100644 news_feed/news_cash/20191007.csv create mode 100644 news_feed/news_cash/20191015.csv create mode 100644 news_feed/news_cash/20191021.csv create mode 100644 news_feed/news_cash/20191022.csv create mode 100644 news_feed/news_cash/20191026.csv diff --git a/news_feed/news_cash/20180726.csv b/news_feed/news_cash/20180726.csv new file mode 100644 index 0000000..ee37b6f --- /dev/null +++ b/news_feed/news_cash/20180726.csv @@ -0,0 +1,2 @@ +title,description,link,pubDate,imageLink,imageDescription +Striking photographs retell the horror of D-Day,"At the height of World War II, the US military commissioned Kodak to produce a new type of color film that could capture infrared waves invisible to the human eye. The resulting photographs, taken during aerial reconnaissance missions, allowed allied forces to distinguish between foliage and the enemy camouflage it concealed.",http://rss.cnn.com/~r/rss/edition_world/~3/DyDh8y6sOgQ/index.html,"Thu, 26 Jul 2018 13:22:22 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/DyDh8y6sOgQ, diff --git a/news_feed/news_cash/20181106.csv b/news_feed/news_cash/20181106.csv new file mode 100644 index 0000000..e31fba2 --- /dev/null +++ b/news_feed/news_cash/20181106.csv @@ -0,0 +1,2 @@ +title,description,link,pubDate,imageLink,imageDescription +Families get a hug at US-Mexico border,"Since 2016, the Border Network for Human Rights (BNHR) have been bringing together families separated by the US-Mexico border, in an event called Hugs Not Walls. Twice a year, hundreds of families have the chance to see long-lost relatives for an unimaginably short, but precious, period of time: three minutes.",http://rss.cnn.com/~r/rss/edition_world/~3/Jf5Aw6-QRd4/index.html,"Tue, 06 Nov 2018 10:53:08 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/Jf5Aw6-QRd4, diff --git a/news_feed/news_cash/20190409.csv b/news_feed/news_cash/20190409.csv new file mode 100644 index 0000000..0ff46f9 --- /dev/null +++ b/news_feed/news_cash/20190409.csv @@ -0,0 +1,2 @@ +title,description,link,pubDate,imageLink,imageDescription +Why Anna Wintour always wears sunglasses,"Anna Wintour's omnipresent status, crafted over a three-decade-long career at the helm of Vogue, is unrivaled in the fashion industry. Her reputation has transcended that of the magazine she edits, her image -- immaculately sliced bob, sunglasses -- now instantly recognizable in silhouette or line sketch.",http://rss.cnn.com/~r/rss/edition_world/~3/y7ovKhrj4b0/index.html,"Tue, 09 Apr 2019 14:51:57 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/y7ovKhrj4b0, diff --git a/news_feed/news_cash/20190607.csv b/news_feed/news_cash/20190607.csv new file mode 100644 index 0000000..69455b4 --- /dev/null +++ b/news_feed/news_cash/20190607.csv @@ -0,0 +1,2 @@ +title,description,link,pubDate,imageLink,imageDescription +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Fri, 07 Jun 2019 11:46:00 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, diff --git a/news_feed/news_cash/20190712.csv b/news_feed/news_cash/20190712.csv new file mode 100644 index 0000000..277005d --- /dev/null +++ b/news_feed/news_cash/20190712.csv @@ -0,0 +1,3 @@ +title,link,pubDate,description,imageLink,imageDescription +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,"Fri, 12 Jul 2019 15:14:00 GMT",,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,"Fri, 12 Jul 2019 09:20:40 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, diff --git a/news_feed/news_cash/20190730.csv b/news_feed/news_cash/20190730.csv new file mode 100644 index 0000000..ffa0443 --- /dev/null +++ b/news_feed/news_cash/20190730.csv @@ -0,0 +1,2 @@ +title,description,link,pubDate,imageLink,imageDescription +Italy's forbidden 'orgy island' ,"With emerald-green waters, blue skies and and a rugged empty landscape, Zannone has everything you'd expect from a near-deserted Italian island destination. It also has a reputation for something rather more unexpected:",http://rss.cnn.com/~r/rss/edition_world/~3/xKkQ5o65EqU/index.html,"Tue, 30 Jul 2019 10:44:19 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/xKkQ5o65EqU, diff --git a/news_feed/news_cash/20190731.csv b/news_feed/news_cash/20190731.csv new file mode 100644 index 0000000..08ee28b --- /dev/null +++ b/news_feed/news_cash/20190731.csv @@ -0,0 +1,2 @@ +title,description,link,pubDate,imageLink,imageDescription +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"Wed, 31 Jul 2019 17:50:39 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, diff --git a/news_feed/news_cash/20190816.csv b/news_feed/news_cash/20190816.csv new file mode 100644 index 0000000..70530b3 --- /dev/null +++ b/news_feed/news_cash/20190816.csv @@ -0,0 +1,2 @@ +title,description,link,pubDate,imageLink,imageDescription +Remember Madonna's cone bra?,"Remember when Madonna caused a sharp intake of breath by dancing on stage in her underwear? Ok, that's happened quite a few times so we'll narrow it down: cone bra.",http://rss.cnn.com/~r/rss/edition_world/~3/4sZmnulDy7s/index.html,"Fri, 16 Aug 2019 10:59:33 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/4sZmnulDy7s, diff --git a/news_feed/news_cash/20190902.csv b/news_feed/news_cash/20190902.csv new file mode 100644 index 0000000..d8d9cc6 --- /dev/null +++ b/news_feed/news_cash/20190902.csv @@ -0,0 +1,2 @@ +title,description,link,pubDate,imageLink,imageDescription +Radical ways to 'refreeze' the Arctic,"If planting more trees can replenish forests and remove carbon dioxide from the atmosphere, then could we also repopulate the Arctic with ice?",http://rss.cnn.com/~r/rss/edition_world/~3/oiLKeZ-x9zU/index.html,"Mon, 02 Sep 2019 01:11:36 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/oiLKeZ-x9zU, diff --git a/news_feed/news_cash/20190918.csv b/news_feed/news_cash/20190918.csv new file mode 100644 index 0000000..75e8b82 --- /dev/null +++ b/news_feed/news_cash/20190918.csv @@ -0,0 +1,2 @@ +title,description,link,pubDate,imageLink,imageDescription +US cities are losing 36 million trees a year. Here's why it matters ,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"Wed, 18 Sep 2019 16:44:32 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, diff --git a/news_feed/news_cash/20190924.csv b/news_feed/news_cash/20190924.csv new file mode 100644 index 0000000..1cfb0b8 --- /dev/null +++ b/news_feed/news_cash/20190924.csv @@ -0,0 +1,2 @@ +title,description,link,pubDate,imageLink,imageDescription +Good Samaritans scramble under a subway to save a 5-year-old girl,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,"Tue, 24 Sep 2019 18:19:40 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, diff --git a/news_feed/news_cash/20191007.csv b/news_feed/news_cash/20191007.csv new file mode 100644 index 0000000..e2c4cc5 --- /dev/null +++ b/news_feed/news_cash/20191007.csv @@ -0,0 +1,2 @@ +title,description,link,pubDate,imageLink,imageDescription +The people making art deals for the super rich,"""I'm always flying by the seat of my pants,"" says Lisa Schiff with engaging and, I suspect, characteristic honesty. ""I never know what we're going to make each month -- five dollars or a million!""",http://rss.cnn.com/~r/rss/edition_world/~3/AoBMQEjkVIk/index.html,"Mon, 07 Oct 2019 11:22:33 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/AoBMQEjkVIk, diff --git a/news_feed/news_cash/20191015.csv b/news_feed/news_cash/20191015.csv new file mode 100644 index 0000000..a2f7b2b --- /dev/null +++ b/news_feed/news_cash/20191015.csv @@ -0,0 +1,3 @@ +title,link,pubDate,description,imageLink,imageDescription +Wildlife Photographer of the Year captured this frightened marmot,http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,"Tue, 15 Oct 2019 22:35:39 GMT",,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"Tue, 15 Oct 2019 23:21:06 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, diff --git a/news_feed/news_cash/20191021.csv b/news_feed/news_cash/20191021.csv new file mode 100644 index 0000000..6681509 --- /dev/null +++ b/news_feed/news_cash/20191021.csv @@ -0,0 +1,2 @@ +title,description,link,pubDate,imageLink,imageDescription +This Caribbean island is bouncing back,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Mon, 21 Oct 2019 17:15:35 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, diff --git a/news_feed/news_cash/20191022.csv b/news_feed/news_cash/20191022.csv new file mode 100644 index 0000000..9d87ce5 --- /dev/null +++ b/news_feed/news_cash/20191022.csv @@ -0,0 +1,2 @@ +title,description,link,pubDate,imageLink,imageDescription +This Norwegian bridge is also an art museum,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"Tue, 22 Oct 2019 14:51:54 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, diff --git a/news_feed/news_cash/20191026.csv b/news_feed/news_cash/20191026.csv new file mode 100644 index 0000000..14e3f6a --- /dev/null +++ b/news_feed/news_cash/20191026.csv @@ -0,0 +1,2 @@ +title,description,link,pubDate,imageLink,imageDescription +The Model Y could be a game changer for Tesla ,Tesla's stock enjoyed its biggest spike in six years this week after the automaker reported an unexpected third quarter profit. But that might not have been the biggest achievement for the company.,http://rss.cnn.com/~r/rss/edition_world/~3/eTXTqPOUTPM/index.html,"Sat, 26 Oct 2019 17:16:07 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/eTXTqPOUTPM, diff --git a/news_feed/news_cash/20191028.csv b/news_feed/news_cash/20191028.csv index 921c77c..bb85b4e 100644 --- a/news_feed/news_cash/20191028.csv +++ b/news_feed/news_cash/20191028.csv @@ -1,2 +1,4 @@ -title,description,link,pubDate,imageLink,imageDescription -Washington Post changes al-Baghdadi headline that called terror leader an 'austere religious scholar',"Critics, including President Trump’s children, blasted the paper for an obituary headline that did not portray the ISIS leader's brutality.",https://news.yahoo.com/washington-post-al-baghdadi-obit-headline-austere-religious-scholar-143726879.html,"Mon, 28 Oct 2019 10:37:26 -0400",http://l.yimg.com/uu/api/res/1.2/7rwCo096GFtbwM3xksJyJw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e89af620-f98f-11e9-a7fb-7c7ac5390849,Washington Post changes al-Baghdadi headline that called terror leader an 'austere religious scholar' +title,description,link,pubDate,imageLink,imageDescription +The world's biggest banks have major problems. Just look at HSBC ,Happy Monday. A version of this story first appeared in CNN Business' Before the Bell newsletter. Not a subscriber? You can sign up right here.,http://rss.cnn.com/~r/rss/edition_world/~3/OfRYNK8ELnY/index.html,"Mon, 28 Oct 2019 11:37:51 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/OfRYNK8ELnY, +Impossible Whoppers are a huge hit at Burger King,"Popeyes' spicy chicken sandwich is the only thing in the fast food business that's hotter than Burger King's Impossible Whopper. That's great news for Restaurant Brands, which owns both chains.",http://rss.cnn.com/~r/rss/edition_world/~3/yNjcrbXsi1s/index.html,"Mon, 28 Oct 2019 17:27:44 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/yNjcrbXsi1s, +Is this the most surreal exhibition ever?,"When Susanna Brown joined London's prestigious V&A museum over a decade ago as a curator in photographs, one of the first things she acquired was a group of images by Tim Walker.",http://rss.cnn.com/~r/rss/edition_world/~3/ns6RnnZgyiA/index.html,"Mon, 28 Oct 2019 15:22:42 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/ns6RnnZgyiA, diff --git a/news_feed/news_cash/20191029.csv b/news_feed/news_cash/20191029.csv index ac302e7..46ec032 100644 --- a/news_feed/news_cash/20191029.csv +++ b/news_feed/news_cash/20191029.csv @@ -1,2 +1,7 @@ -title,description,link,pubDate,imageLink,imageDescription -"Australian sentenced to 36 years for murder, rape of Israeli","An Australian judge sentenced a man to 36 years in prison on Tuesday for the murder and rape of an Israeli student whom he bludgeoned into unconsciousness moments after she stepped off a tram in Melbourne before setting her corpse on fire. Victoria state Supreme Court Justice Elizabeth Hollingworth ordered Codey Herrmann, 21, to serve at least 30 years behind bars for his crimes against 21-year-old Aiia Maasarwe last January. The judge said she would have sentenced Herrmann to 40 years in prison with 35 years to be served before he became eligible for parole if he had not pleaded guilty in the face of an overwhelming prosecution case.",https://news.yahoo.com/australian-sentenced-36-years-murder-070115167.html,"Tue, 29 Oct 2019 07:19:51 -0400",http://l2.yimg.com/uu/api/res/1.2/0CYJ1TXh_l4vlv6ue7nf4w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/dd0e716151b3d52cbd8a634fb73ee4e8,"Australian sentenced to 36 years for murder, rape of Israeli" +title,link,pubDate,description,imageLink,imageDescription +Lebanon's PM quits after nationwide protests,http://rss.cnn.com/~r/rss/edition_world/~3/wo6r3XV0GnY/index.html,"Tue, 29 Oct 2019 18:34:46 GMT",,http://feeds.feedburner.com/~r/rss/edition_world/~4/wo6r3XV0GnY, +Tick-borne brain disease found in UK,"A potentially fatal infection spread by ticks has been detected for the first time in the UK, according to health authorities.",http://rss.cnn.com/~r/rss/edition_world/~3/UrzOiLkK0WA/index.html,"Tue, 29 Oct 2019 09:53:44 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/UrzOiLkK0WA, +Age just a number to rugby playing pensioners,"The Rugby World Cup has seen rugby fever sweep across Japan as a whole new generation of Japanese rugby fans have been inspired by the incredible exploits of the country's national team, the Brave Blossoms.",http://rss.cnn.com/~r/rss/edition_world/~3/OKEaouowThQ/rugby-world-cup-japanese-pensioners-brave-blossoms-spt-intl.cnn,"Tue, 29 Oct 2019 13:54:32 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/OKEaouowThQ, +Bulgaria gets one-time stadium ban and fine,"Bulgaria's national soccer team has been ordered by UEFA to play its next home game behind closed doors as punishment for the ""racist behavior"" of its fans during a Euro 2020 against England.",http://rss.cnn.com/~r/rss/edition_world/~3/39Gaxl2worM/index.html,"Tue, 29 Oct 2019 16:05:29 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/39Gaxl2worM, +Ex-soldier climbs 14 highest peaks,"A former soldier from Nepal has climbed the world's 14 highest peaks in just over six months, smashing the previous record by over 7 years.",http://rss.cnn.com/~r/rss/edition_world/~3/J3nHBHZo0K8/index.html,"Tue, 29 Oct 2019 14:00:23 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/J3nHBHZo0K8, +Huawei and ZTE could lose what little business they have in the US,The US Federal Communications Commission wants to place more restrictions on Huawei and ZTE by barring companies that receive government money from purchasing equipment or services from the Chinese tech firms.,http://rss.cnn.com/~r/rss/edition_world/~3/DhpgwjNf_sM/index.html,"Tue, 29 Oct 2019 06:09:21 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/DhpgwjNf_sM, diff --git a/news_feed/rss_reader.py b/news_feed/rss_reader.py index 2dc3905..8867a02 100644 --- a/news_feed/rss_reader.py +++ b/news_feed/rss_reader.py @@ -38,6 +38,13 @@ def __init__(self, url, limit=None, verbose=False, cashing=False): self.items = self.get_news() def get_news(self): + """ + Read rss from self.url and creates from it + dictionary. If self.cashing is True -> cashed news + + :return: dictionary of news + """ + request = requests.get(self.url) # TODO: catch all errors if self.verbose: @@ -45,6 +52,7 @@ def get_news(self): result = request.text tree = ET.fromstring(result) + print(result) items = dict() items.setdefault('title', ' ') @@ -62,6 +70,7 @@ def get_news(self): items.setdefault(num, {}) news_description = dict() + # TODO: set useful_tags as default tags! for description in item: if description.tag in useful_tags: @@ -74,12 +83,23 @@ def get_news(self): news_description['imageDescription'] = image_text items[num].update(news_description) - NewsReader._cash_news(items[num]) + + if self.cashing: + NewsReader._cash_news(items[num]) return items @staticmethod - def _cash_news(news, dir='news_cash', ): + def _cash_news(news, dir='news_cash'): + """ + Cashes news into csv format by publication date + into given directory + + :param news: dictionary of given news + :param dir: directory into which we save news + :return: None + """ + date = NewsReader.get_date(news) date = ''.join(str(date).split('-')) @@ -87,19 +107,60 @@ def _cash_news(news, dir='news_cash', ): os.mkdir(dir) path = os.path.join(dir, date + '.csv') - with open(path, 'w+') as file: + with open(path, 'a', newline='', encoding='UTF-8') as file: csv_writer = csv.writer(file, delimiter=',', quotechar='"', quoting=csv.QUOTE_MINIMAL) if os.path.getsize(path) == 0: - head = ','.join(news.keys()) - - file.write(head + '\n') + csv_writer.writerow(news.keys()) + print(news.values()) csv_writer.writerow(news.values()) + @staticmethod + def read_by_date(date, dir='news_cash'): + """ + Reads news from csv by given date + from given directory + + :param date: news date + :param dir: directory from which we get news + :return: dictionary of news + """ + + dates = os.listdir(dir) + + if date not in dates: + pass # TODO: raise some exception + + path = os.path.join(dir, date + '.csv') + with open(path, 'r', encoding='UTF-8') as file: + csv_reader = csv.reader(file, delimiter=',', + quotechar='"') + + header = list() + items = dict() + for index, row in enumerate(csv_reader): + if index == 0: + header = row + continue + + items.setdefault(index, list()) + + items[index] = dict(zip(header, row)) + + return items + @staticmethod def get_date(news): + """ + Returns date of news publication + + :param news: dictionary of given news + :return: date of news publication + """ + + print(news) news_date = news['pubDate'] # news_date = datetime.datetime.strptime(date, '%a, %d %b %Y %H:%M:%S %Z') @@ -110,6 +171,13 @@ def get_date(news): @staticmethod def parse_description(description): + """ + Return news description + + :param description: raw news description + :return: news description + """ + text = NewsReader.get_description(description) image = NewsReader.get_image(description) @@ -121,6 +189,14 @@ def parse_description(description): @staticmethod def get_image(description): + """ + Parse description file trying to find image + source and description of this image + + :param description: raw news description + :return: image source, image description + """ + xhtml = html.fromstring(description) image_src = xhtml.xpath('//img/@src') image_description = xhtml.xpath('//img/@alt') @@ -139,12 +215,27 @@ def get_image(description): @staticmethod def get_description(description): + """ + Remove all tags from raw description and + return just simple news description + + :param description: news description + :return: processed description + """ + node = html.fromstring(description) return node.text_content() @staticmethod def news_text(news): + """ + Process news in dictionary format into + readable text + + :param news: news dictionary + :return: readable news description + """ result = "\n\tTitle: {}\n\tDate: {}\n\tLink: {}\n\n\tImage link: {}\n\t" \ "Image description: {}\n\tDescription: {}".format(news['title'], @@ -157,6 +248,13 @@ def news_text(news): return result def fancy_output(self): + """ + Output readable information about news + from items dictionary + + :return: None + """ + if self.verbose: print('News feed is ready') @@ -169,6 +267,13 @@ def fancy_output(self): print('_' * 100) def to_json(self): + """ + Convert self.items (all news description) + into json format + + :return: json format news + """ + if self.verbose: print('Json was created') @@ -177,8 +282,8 @@ def to_json(self): return json_result -feed = NewsReader(' https://news.yahoo.com/rss/', limit=3, cashing=True) -print(feed.to_json()) +feed = NewsReader(' http://rss.cnn.com/rss/edition_world.rss', limit=None, cashing=True) +print(feed.read_by_date('20191028')) # date = datetime.datetime.strptime(date, '%a, %d %b %Y %H:%M:%S %Z') From ef9e2444e709fa830e36ceb890f2b6418b70d2d7 Mon Sep 17 00:00:00 2001 From: vadbeg Date: Sun, 3 Nov 2019 12:45:52 +0300 Subject: [PATCH 07/11] News converter (format_converter.py) was added. Now there is just converter into pdf format using fpdf library --- .idea/.gitignore | 3 + .../inspectionProfiles/profiles_settings.xml | 6 + .idea/misc.xml | 4 + .idea/modules.xml | 8 + .idea/news_feed_reader.iml | 11 + .idea/vcs.xml | 6 + .../__pycache__/rss_reader.cpython-37.pyc | Bin 0 -> 6639 bytes news_feed/format_converter.py | 176 +++ news_feed/news.pdf | Bin 0 -> 203322 bytes news_feed/news_cash/20180726.csv | 2 - news_feed/news_cash/20181106.csv | 2 - news_feed/news_cash/20190409.csv | 2 - news_feed/news_cash/20190607.csv | 22 +- news_feed/news_cash/20190712.csv | 42 +- news_feed/news_cash/20190730.csv | 2 - news_feed/news_cash/20190731.csv | 22 +- news_feed/news_cash/20190816.csv | 2 - news_feed/news_cash/20190902.csv | 2 - news_feed/news_cash/20190918.csv | 22 +- news_feed/news_cash/20190924.csv | 22 +- news_feed/news_cash/20191007.csv | 2 - news_feed/news_cash/20191015.csv | 61 +- news_feed/news_cash/20191021.csv | 41 +- news_feed/news_cash/20191022.csv | 22 +- news_feed/news_cash/20191026.csv | 22 +- news_feed/news_cash/20191028.csv | 4 - news_feed/news_cash/20191029.csv | 484 ++++++- news_feed/news_cash/20191030.csv | 1135 +++++++++++++++++ news_feed/news_cash/20191031.csv | 745 +++++++++++ news_feed/rss_reader.py | 21 +- 30 files changed, 2841 insertions(+), 52 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/news_feed_reader.iml create mode 100644 .idea/vcs.xml create mode 100644 news_feed/__pycache__/rss_reader.cpython-37.pyc create mode 100644 news_feed/format_converter.py create mode 100644 news_feed/news.pdf delete mode 100644 news_feed/news_cash/20180726.csv delete mode 100644 news_feed/news_cash/20181106.csv delete mode 100644 news_feed/news_cash/20190409.csv delete mode 100644 news_feed/news_cash/20190730.csv delete mode 100644 news_feed/news_cash/20190816.csv delete mode 100644 news_feed/news_cash/20190902.csv delete mode 100644 news_feed/news_cash/20191007.csv delete mode 100644 news_feed/news_cash/20191028.csv create mode 100644 news_feed/news_cash/20191030.csv create mode 100644 news_feed/news_cash/20191031.csv diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..0e40fe8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ + +# Default ignored files +/workspace.xml \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..4b78038 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..2f4b040 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/news_feed_reader.iml b/.idea/news_feed_reader.iml new file mode 100644 index 0000000..f6bbd3d --- /dev/null +++ b/.idea/news_feed_reader.iml @@ -0,0 +1,11 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/news_feed/__pycache__/rss_reader.cpython-37.pyc b/news_feed/__pycache__/rss_reader.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..344688c4fe570f6ee76e41fad147c25b1bcd35da GIT binary patch literal 6639 zcmcgx-ESOM6`!x2nVlWmYsYC4H!ahu0u~y(MW_@jl+f5NDeWe8T~bD^M(e%T_Bgvc z&YjuV-p-;*&Qnp;KL99e9*}tC6<&~d;(-@d>0oTB`VJ|;f{#5FweeH2V#YDe+&x9Y3%Tk|!%wT|93 zd_&FKDqYhz$F$Y8HAPjrRo@xc)cl$p>H4mGPx(_!_otcR&%CCv3N!C3%;fbW-Jiv` z#cX`rN18v!)VGyJ^;7IbX*SfXveyzZALuVGzK|(xs-65)5ZCa;E()&DPO(cGt!1-K zz8^QEWG(9V*s2hbXg2iB4uW2*%Yz_uf}k6*euro`2=4YcPu*EqG1aC1ePAZl}9FHp(_YMWIcaAoyp|Dl? zed;6y|35;9lau&5dy*Nfa$ofgW-{x(;#auIF0(3g?yExA7f zSKPFTJ;>DMN#(~oAe@JK%G zpf*uP;MA^mtPbg|i_3|Ts=JjVRRs@s&7qc9BRi#bJ*gfkLnAdt4pW(StU*&%rW3-p zjbY{Bxm0K7C1pi<|KiY0&D|PP?`UEJl$jb#y{g>ZxUC%gBXLuGG{vlAAP{~3`kpql zhBnroX7-(`_=Kp`!pKiKjWrjBPU`H|(#joEdes)_)&W+~NDyv*lj@9?{VQuIRr_vhL zTvbvRZx`<=yr=LsQtOg3I-gdLiC@a@6XHXRzmV5c-Q5pwqZf2xdhoLX9i$KhtsL5Ja7cQVNYxW)WgB?*%bf2ewywb$QV!6q`J6ZY<8HOAw%2={1tK{(0`0&H_&_aaXY z8d#vH?_e54se4upyRB{h22E3!?M9JPFhJn z4%!jJZW4ZwWZLRR=8&O?6Li_m3_4Th#5`eqtJUu$nVz(^vnucPyIjaqV7EdlRHkE4 zW;4_#VVC2`5o;Y{3RDQvqHI<=i=cc2v%e?XNpoQKiNR8B8`ENzs;u!DGE?vv>-$C` zI2U!a`L%w`xB8s`JBod42T~7sC)2Stago~Vr2pmB#06A~r)geC@+*)c7}LanGp0by zpzqi5#IK-GY*#Z?XZ*OTt4*tpI;~yQ=2cBYo9?O$D%CrvuWR#~t>RCc#)!GomZPvv zRk=qxcAE?={Y*S$holkt6^Pu3z(l}(jIs}BD{_8yU3kMV;{7t#J1G-fXK4>k`2n(W8u9Fvs?EHzu7Q|rqy!BL z31Vs7Cc!}2>iy3)ZDO71oR6J&V#maJ>=y#0{Y!3x{sCw|_c%2E3=_pwG>`Da6b~y^ zTPNprD&QrzMI#FiQDQ)*QF3SzMB%HzBlsV9jiCk~L|lX4VjA8EfRQp7TRPN99}Lg% zY^(q$fy^VUDuoZro@nhqI%2|u!j_YTD@RVnniAEY60{q7Zii>&8Bdnas#GDPg+`?m zKvZOvcmYGji&UIWBE;8F_ZvKU{!m3kkhAl033QKyLj_+c?xS=`d|CFk`6okWw%myryVDKSCOTme*NjsG~)fEf|sNTa-qcgFhAgxJB7~nNu=L z^b&ChhvmUHZ$Sq=dGumT9Q8$;%ka7+8UkmsgV;ImT=bq;vl9;gw?dQ?dHHJ3=hK#V zTC6Z|mX^Zq_R_UjvVMyVl zikkgA^bW9uKPxwOD$YEE1rp#N@Wk^d6o;Zi2j0@u>~V>`oOsFtZv`4ihYK{&RmEvE z94nBbI{00|fpy-E5ZAOi9gkw;apn(ADa!}xP%$94D&B5CPP{nm?sf8@sNDaH)$nr_ ztWd!{5w&?7BYP@sqSyem?>(F==ekRgII@yn!g~qK7Des8(L^*ZmcQVMNngNN zZLn~Lk)_2>v9pLfNP!VnlWB)>LJ74&X~+^;DrjWgD3OUCn`2XN4}MW>9rsRju-ppa zqN3z*#{n;eoJDtXG_6fAm=5^}Q;Cn07@$Z=i?IbWi%CA0?}K-p>IS8p%iae=r@8{8 zol}%8O3JC;pzKj*mU&bDUEaY?nDj1!LO*ediUlf2PPh^@^J9?eEuL|&^&8HT<5tdz&JHX}6APK)j`Mw8c1B~+ATK5^!!QjNh}6LZM>F1mUkQ6Ea4 z56m^(fh~JJ3;qwkCJdguA)`w$8GnfY6cknFceT9fIx> z1l>qxRuHhL9Rz~>hrHLwT)O`W+g+aQL`+aZCvH paste text 'No file' + + :param link: link to the image + :return: None + """ + + filename = link.split('/')[-1] + '.jpg' + + try: + response = requests.get(link) + img = Image.open(BytesIO(response.content)) + img = img.convert('RGB') + + img.save(filename) + img.close() + + self.set_x(self.w / 2 - 15) + self.image(filename, type='jpg') + except requests.exceptions.MissingSchema: + + self.cell(0, 10, 'No image', 0, 0, 'C') + finally: + self.set_x(0) + silent_remove(filename) + + @staticmethod + def change_encoding(txt): + """ + Changes encoding to fpdf compatible + + :param txt: Text to encode + :return: new-encoded text + """ + + return txt.encode('latin-1', + 'replace').decode('latin-1') + + def add_news_page(self, item): + """ + Writes info about one news + + :param item: one news dictionary + :return: None + """ + + item = {key: self.change_encoding(value) + for key, value in item.items()} + + title = item['title'] + pub_date = item['pubDate'] + link = item['link'] + description = item['description'] + image_link = item['imageLink'] + image_description = item['imageDescription'] + + self.set_font('Times', 'I', 14) + self.multi_cell(w=0, h=10, + txt=title, align='C') + + self.set_font('Times', 'I', 10) + self.multi_cell(w=0, h=10, + txt=f'Date: {pub_date}', align='C') + + self.multi_cell(w=0, h=10, + txt=f'Link: {link}', align='C') + + self.set_font('Times', '', 12) + self.multi_cell(w=0, h=5, + txt=description, align='L') + + self.put_image(image_link) + + self.set_font('Times', 'I', 10) + self.multi_cell(w=0, h=5, + txt=f'Image description: {image_description}', + align='C') + print(image_description) + + # self.cell(w=5, h=20, txt='', border=0, ln=20, align='L') + + def add_all_news(self): + """ + Add all news information into pdf + + :return: None + """ + + self.add_page() + + for el, plot in self.items.items(): + if el != 'title': + self.add_news_page(plot) + + +feed = NewsReader('https://news.yahoo.com/rss/', limit=None, cashing=False) +it = feed.items +it = it + +pdf = PdfNewsConverter(it) + +pdf.add_all_news() +pdf.output('news.pdf', 'F') +print(pdf.items) diff --git a/news_feed/news.pdf b/news_feed/news.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c4037e099877825d95d60417a99c92bd441b95f4 GIT binary patch literal 203322 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 literal 0 HcmV?d00001 diff --git a/news_feed/news_cash/20180726.csv b/news_feed/news_cash/20180726.csv deleted file mode 100644 index ee37b6f..0000000 --- a/news_feed/news_cash/20180726.csv +++ /dev/null @@ -1,2 +0,0 @@ -title,description,link,pubDate,imageLink,imageDescription -Striking photographs retell the horror of D-Day,"At the height of World War II, the US military commissioned Kodak to produce a new type of color film that could capture infrared waves invisible to the human eye. The resulting photographs, taken during aerial reconnaissance missions, allowed allied forces to distinguish between foliage and the enemy camouflage it concealed.",http://rss.cnn.com/~r/rss/edition_world/~3/DyDh8y6sOgQ/index.html,"Thu, 26 Jul 2018 13:22:22 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/DyDh8y6sOgQ, diff --git a/news_feed/news_cash/20181106.csv b/news_feed/news_cash/20181106.csv deleted file mode 100644 index e31fba2..0000000 --- a/news_feed/news_cash/20181106.csv +++ /dev/null @@ -1,2 +0,0 @@ -title,description,link,pubDate,imageLink,imageDescription -Families get a hug at US-Mexico border,"Since 2016, the Border Network for Human Rights (BNHR) have been bringing together families separated by the US-Mexico border, in an event called Hugs Not Walls. Twice a year, hundreds of families have the chance to see long-lost relatives for an unimaginably short, but precious, period of time: three minutes.",http://rss.cnn.com/~r/rss/edition_world/~3/Jf5Aw6-QRd4/index.html,"Tue, 06 Nov 2018 10:53:08 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/Jf5Aw6-QRd4, diff --git a/news_feed/news_cash/20190409.csv b/news_feed/news_cash/20190409.csv deleted file mode 100644 index 0ff46f9..0000000 --- a/news_feed/news_cash/20190409.csv +++ /dev/null @@ -1,2 +0,0 @@ -title,description,link,pubDate,imageLink,imageDescription -Why Anna Wintour always wears sunglasses,"Anna Wintour's omnipresent status, crafted over a three-decade-long career at the helm of Vogue, is unrivaled in the fashion industry. Her reputation has transcended that of the magazine she edits, her image -- immaculately sliced bob, sunglasses -- now instantly recognizable in silhouette or line sketch.",http://rss.cnn.com/~r/rss/edition_world/~3/y7ovKhrj4b0/index.html,"Tue, 09 Apr 2019 14:51:57 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/y7ovKhrj4b0, diff --git a/news_feed/news_cash/20190607.csv b/news_feed/news_cash/20190607.csv index 69455b4..dc3f601 100644 --- a/news_feed/news_cash/20190607.csv +++ b/news_feed/news_cash/20190607.csv @@ -1,2 +1,20 @@ -title,description,link,pubDate,imageLink,imageDescription -"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Fri, 07 Jun 2019 11:46:00 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, +title,pubDate,link,description,imageLink,imageDescription +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Fri, 07 Jun 2019 11:46:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Fri, 07 Jun 2019 11:46:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Fri, 07 Jun 2019 11:46:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Fri, 07 Jun 2019 11:46:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Fri, 07 Jun 2019 11:46:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Fri, 07 Jun 2019 11:46:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Fri, 07 Jun 2019 11:46:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Fri, 07 Jun 2019 11:46:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Fri, 07 Jun 2019 11:46:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Fri, 07 Jun 2019 11:46:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Fri, 07 Jun 2019 11:46:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Fri, 07 Jun 2019 11:46:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Fri, 07 Jun 2019 11:46:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Fri, 07 Jun 2019 11:46:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Fri, 07 Jun 2019 11:46:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Fri, 07 Jun 2019 11:46:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Fri, 07 Jun 2019 11:46:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Fri, 07 Jun 2019 11:46:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, +"Four teens rush into a burning home, saving the life of a 90-year-old neighbor","Fri, 07 Jun 2019 11:46:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Q9_VgpEHKw0/index.html,"Four Oklahoma teens had planned to spend the evening hanging out together. They had no idea that by the time the night would end, they would be running into a burning house to save the life of a 90-year-old neighbor.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Q9_VgpEHKw0, diff --git a/news_feed/news_cash/20190712.csv b/news_feed/news_cash/20190712.csv index 277005d..1a9cb40 100644 --- a/news_feed/news_cash/20190712.csv +++ b/news_feed/news_cash/20190712.csv @@ -1,3 +1,39 @@ -title,link,pubDate,description,imageLink,imageDescription -Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,"Fri, 12 Jul 2019 15:14:00 GMT",,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, -How rich people could help save the planet from the climate crisis,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,"Fri, 12 Jul 2019 09:20:40 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, +title,pubDate,link,description,imageLink,imageDescription +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,"Fri, 12 Jul 2019 09:20:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,"Fri, 12 Jul 2019 09:20:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,"Fri, 12 Jul 2019 09:20:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,"Fri, 12 Jul 2019 09:20:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,"Fri, 12 Jul 2019 09:20:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,"Fri, 12 Jul 2019 09:20:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,"Fri, 12 Jul 2019 09:20:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,"Fri, 12 Jul 2019 09:20:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,"Fri, 12 Jul 2019 09:20:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,"Fri, 12 Jul 2019 09:20:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,"Fri, 12 Jul 2019 09:20:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,"Fri, 12 Jul 2019 09:20:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,"Fri, 12 Jul 2019 09:20:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,"Fri, 12 Jul 2019 09:20:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,"Fri, 12 Jul 2019 09:20:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,"Fri, 12 Jul 2019 09:20:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,"Fri, 12 Jul 2019 09:20:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,"Fri, 12 Jul 2019 09:20:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, +How rich people could help save the planet from the climate crisis,"Fri, 12 Jul 2019 09:20:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Pa_SMoc1110/index.html,Rich people don't just have bigger bank balances and more lavish lifestyles than the rest of us -- they also have bigger carbon footprints.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Pa_SMoc1110, diff --git a/news_feed/news_cash/20190730.csv b/news_feed/news_cash/20190730.csv deleted file mode 100644 index ffa0443..0000000 --- a/news_feed/news_cash/20190730.csv +++ /dev/null @@ -1,2 +0,0 @@ -title,description,link,pubDate,imageLink,imageDescription -Italy's forbidden 'orgy island' ,"With emerald-green waters, blue skies and and a rugged empty landscape, Zannone has everything you'd expect from a near-deserted Italian island destination. It also has a reputation for something rather more unexpected:",http://rss.cnn.com/~r/rss/edition_world/~3/xKkQ5o65EqU/index.html,"Tue, 30 Jul 2019 10:44:19 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/xKkQ5o65EqU, diff --git a/news_feed/news_cash/20190731.csv b/news_feed/news_cash/20190731.csv index 08ee28b..b696bcb 100644 --- a/news_feed/news_cash/20190731.csv +++ b/news_feed/news_cash/20190731.csv @@ -1,2 +1,20 @@ -title,description,link,pubDate,imageLink,imageDescription -Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"Wed, 31 Jul 2019 17:50:39 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, +title,pubDate,link,description,imageLink,imageDescription +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"Wed, 31 Jul 2019 17:50:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"Wed, 31 Jul 2019 17:50:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"Wed, 31 Jul 2019 17:50:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"Wed, 31 Jul 2019 17:50:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"Wed, 31 Jul 2019 17:50:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"Wed, 31 Jul 2019 17:50:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"Wed, 31 Jul 2019 17:50:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"Wed, 31 Jul 2019 17:50:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"Wed, 31 Jul 2019 17:50:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"Wed, 31 Jul 2019 17:50:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"Wed, 31 Jul 2019 17:50:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"Wed, 31 Jul 2019 17:50:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"Wed, 31 Jul 2019 17:50:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"Wed, 31 Jul 2019 17:50:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"Wed, 31 Jul 2019 17:50:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"Wed, 31 Jul 2019 17:50:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"Wed, 31 Jul 2019 17:50:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"Wed, 31 Jul 2019 17:50:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, +Neighbors complete three weeks' worth of harvesting in a day for farmer diagnosed with cancer,"Wed, 31 Jul 2019 17:50:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/o2LXCtaXaZs/index.html,"When stage 4 cancer stood in the way of farmer Larry Yockey reaping his wheat harvest for the first time in 50 years, dozens of his fellow farmers stepped up to save his crop.",http://feeds.feedburner.com/~r/rss/edition_world/~4/o2LXCtaXaZs, diff --git a/news_feed/news_cash/20190816.csv b/news_feed/news_cash/20190816.csv deleted file mode 100644 index 70530b3..0000000 --- a/news_feed/news_cash/20190816.csv +++ /dev/null @@ -1,2 +0,0 @@ -title,description,link,pubDate,imageLink,imageDescription -Remember Madonna's cone bra?,"Remember when Madonna caused a sharp intake of breath by dancing on stage in her underwear? Ok, that's happened quite a few times so we'll narrow it down: cone bra.",http://rss.cnn.com/~r/rss/edition_world/~3/4sZmnulDy7s/index.html,"Fri, 16 Aug 2019 10:59:33 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/4sZmnulDy7s, diff --git a/news_feed/news_cash/20190902.csv b/news_feed/news_cash/20190902.csv deleted file mode 100644 index d8d9cc6..0000000 --- a/news_feed/news_cash/20190902.csv +++ /dev/null @@ -1,2 +0,0 @@ -title,description,link,pubDate,imageLink,imageDescription -Radical ways to 'refreeze' the Arctic,"If planting more trees can replenish forests and remove carbon dioxide from the atmosphere, then could we also repopulate the Arctic with ice?",http://rss.cnn.com/~r/rss/edition_world/~3/oiLKeZ-x9zU/index.html,"Mon, 02 Sep 2019 01:11:36 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/oiLKeZ-x9zU, diff --git a/news_feed/news_cash/20190918.csv b/news_feed/news_cash/20190918.csv index 75e8b82..0d15761 100644 --- a/news_feed/news_cash/20190918.csv +++ b/news_feed/news_cash/20190918.csv @@ -1,2 +1,20 @@ -title,description,link,pubDate,imageLink,imageDescription -US cities are losing 36 million trees a year. Here's why it matters ,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"Wed, 18 Sep 2019 16:44:32 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, +title,pubDate,link,description,imageLink,imageDescription +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, diff --git a/news_feed/news_cash/20190924.csv b/news_feed/news_cash/20190924.csv index 1cfb0b8..f097a62 100644 --- a/news_feed/news_cash/20190924.csv +++ b/news_feed/news_cash/20190924.csv @@ -1,2 +1,20 @@ -title,description,link,pubDate,imageLink,imageDescription -Good Samaritans scramble under a subway to save a 5-year-old girl,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,"Tue, 24 Sep 2019 18:19:40 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, +title,pubDate,link,description,imageLink,imageDescription +Good Samaritans scramble under a subway to save a 5-year-old girl,"Tue, 24 Sep 2019 18:19:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, +Good Samaritans scramble under a subway to save a 5-year-old girl,"Tue, 24 Sep 2019 18:19:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, +Good Samaritans scramble under a subway to save a 5-year-old girl,"Tue, 24 Sep 2019 18:19:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, +Good Samaritans scramble under a subway to save a 5-year-old girl,"Tue, 24 Sep 2019 18:19:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, +Good Samaritans scramble under a subway to save a 5-year-old girl,"Tue, 24 Sep 2019 18:19:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, +Good Samaritans scramble under a subway to save a 5-year-old girl,"Tue, 24 Sep 2019 18:19:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, +Good Samaritans scramble under a subway to save a 5-year-old girl,"Tue, 24 Sep 2019 18:19:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, +Good Samaritans scramble under a subway to save a 5-year-old girl,"Tue, 24 Sep 2019 18:19:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, +Good Samaritans scramble under a subway to save a 5-year-old girl,"Tue, 24 Sep 2019 18:19:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, +Good Samaritans scramble under a subway to save a 5-year-old girl,"Tue, 24 Sep 2019 18:19:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, +Good Samaritans scramble under a subway to save a 5-year-old girl,"Tue, 24 Sep 2019 18:19:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, +Good Samaritans scramble under a subway to save a 5-year-old girl,"Tue, 24 Sep 2019 18:19:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, +Good Samaritans scramble under a subway to save a 5-year-old girl,"Tue, 24 Sep 2019 18:19:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, +Good Samaritans scramble under a subway to save a 5-year-old girl,"Tue, 24 Sep 2019 18:19:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, +Good Samaritans scramble under a subway to save a 5-year-old girl,"Tue, 24 Sep 2019 18:19:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, +Good Samaritans scramble under a subway to save a 5-year-old girl,"Tue, 24 Sep 2019 18:19:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, +Good Samaritans scramble under a subway to save a 5-year-old girl,"Tue, 24 Sep 2019 18:19:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, +Good Samaritans scramble under a subway to save a 5-year-old girl,"Tue, 24 Sep 2019 18:19:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, +Good Samaritans scramble under a subway to save a 5-year-old girl,"Tue, 24 Sep 2019 18:19:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZqBz56XoI_M/index.html,A 45-year-old man holding his 5-year-old daughter was killed when witnesses say he jumped in front of a subway train in New York City on Monday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/ZqBz56XoI_M, diff --git a/news_feed/news_cash/20191007.csv b/news_feed/news_cash/20191007.csv deleted file mode 100644 index e2c4cc5..0000000 --- a/news_feed/news_cash/20191007.csv +++ /dev/null @@ -1,2 +0,0 @@ -title,description,link,pubDate,imageLink,imageDescription -The people making art deals for the super rich,"""I'm always flying by the seat of my pants,"" says Lisa Schiff with engaging and, I suspect, characteristic honesty. ""I never know what we're going to make each month -- five dollars or a million!""",http://rss.cnn.com/~r/rss/edition_world/~3/AoBMQEjkVIk/index.html,"Mon, 07 Oct 2019 11:22:33 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/AoBMQEjkVIk, diff --git a/news_feed/news_cash/20191015.csv b/news_feed/news_cash/20191015.csv index a2f7b2b..6e6d441 100644 --- a/news_feed/news_cash/20191015.csv +++ b/news_feed/news_cash/20191015.csv @@ -1,3 +1,58 @@ -title,link,pubDate,description,imageLink,imageDescription -Wildlife Photographer of the Year captured this frightened marmot,http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,"Tue, 15 Oct 2019 22:35:39 GMT",,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, -50 of the world's best breads,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"Tue, 15 Oct 2019 23:21:06 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, +title,pubDate,link,description,imageLink,imageDescription +How the black turtleneck came to represent creative genius,"Tue, 15 Oct 2019 02:35:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/l9EJEiwCF_k/index.html,"When the disgraced health entrepreneur Elizabeth Holmes was indicted on fraud charges for her lab-testing company Theranos last year, much of the media discussion rested not on her alleged corporate recklessness and staggering abuses of trust, but on her sartorial choices: black jackets, black slacks, and -- most importantly -- black turtlenecks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/l9EJEiwCF_k, +Wildlife Photographer of the Year captured this frightened marmot,"Tue, 15 Oct 2019 22:35:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"Tue, 15 Oct 2019 23:21:06 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, +How the black turtleneck came to represent creative genius,"Tue, 15 Oct 2019 02:35:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/l9EJEiwCF_k/index.html,"When the disgraced health entrepreneur Elizabeth Holmes was indicted on fraud charges for her lab-testing company Theranos last year, much of the media discussion rested not on her alleged corporate recklessness and staggering abuses of trust, but on her sartorial choices: black jackets, black slacks, and -- most importantly -- black turtlenecks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/l9EJEiwCF_k, +Wildlife Photographer of the Year captured this frightened marmot,"Tue, 15 Oct 2019 22:35:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"Tue, 15 Oct 2019 23:21:06 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, +How the black turtleneck came to represent creative genius,"Tue, 15 Oct 2019 02:35:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/l9EJEiwCF_k/index.html,"When the disgraced health entrepreneur Elizabeth Holmes was indicted on fraud charges for her lab-testing company Theranos last year, much of the media discussion rested not on her alleged corporate recklessness and staggering abuses of trust, but on her sartorial choices: black jackets, black slacks, and -- most importantly -- black turtlenecks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/l9EJEiwCF_k, +Wildlife Photographer of the Year captured this frightened marmot,"Tue, 15 Oct 2019 22:35:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"Tue, 15 Oct 2019 23:21:06 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, +How the black turtleneck came to represent creative genius,"Tue, 15 Oct 2019 02:35:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/l9EJEiwCF_k/index.html,"When the disgraced health entrepreneur Elizabeth Holmes was indicted on fraud charges for her lab-testing company Theranos last year, much of the media discussion rested not on her alleged corporate recklessness and staggering abuses of trust, but on her sartorial choices: black jackets, black slacks, and -- most importantly -- black turtlenecks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/l9EJEiwCF_k, +Wildlife Photographer of the Year captured this frightened marmot,"Tue, 15 Oct 2019 22:35:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"Tue, 15 Oct 2019 23:21:06 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, +How the black turtleneck came to represent creative genius,"Tue, 15 Oct 2019 02:35:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/l9EJEiwCF_k/index.html,"When the disgraced health entrepreneur Elizabeth Holmes was indicted on fraud charges for her lab-testing company Theranos last year, much of the media discussion rested not on her alleged corporate recklessness and staggering abuses of trust, but on her sartorial choices: black jackets, black slacks, and -- most importantly -- black turtlenecks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/l9EJEiwCF_k, +Wildlife Photographer of the Year captured this frightened marmot,"Tue, 15 Oct 2019 22:35:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"Tue, 15 Oct 2019 23:21:06 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, +How the black turtleneck came to represent creative genius,"Tue, 15 Oct 2019 02:35:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/l9EJEiwCF_k/index.html,"When the disgraced health entrepreneur Elizabeth Holmes was indicted on fraud charges for her lab-testing company Theranos last year, much of the media discussion rested not on her alleged corporate recklessness and staggering abuses of trust, but on her sartorial choices: black jackets, black slacks, and -- most importantly -- black turtlenecks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/l9EJEiwCF_k, +Wildlife Photographer of the Year captured this frightened marmot,"Tue, 15 Oct 2019 22:35:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"Tue, 15 Oct 2019 23:21:06 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, +How the black turtleneck came to represent creative genius,"Tue, 15 Oct 2019 02:35:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/l9EJEiwCF_k/index.html,"When the disgraced health entrepreneur Elizabeth Holmes was indicted on fraud charges for her lab-testing company Theranos last year, much of the media discussion rested not on her alleged corporate recklessness and staggering abuses of trust, but on her sartorial choices: black jackets, black slacks, and -- most importantly -- black turtlenecks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/l9EJEiwCF_k, +Wildlife Photographer of the Year captured this frightened marmot,"Tue, 15 Oct 2019 22:35:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"Tue, 15 Oct 2019 23:21:06 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, +How the black turtleneck came to represent creative genius,"Tue, 15 Oct 2019 02:35:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/l9EJEiwCF_k/index.html,"When the disgraced health entrepreneur Elizabeth Holmes was indicted on fraud charges for her lab-testing company Theranos last year, much of the media discussion rested not on her alleged corporate recklessness and staggering abuses of trust, but on her sartorial choices: black jackets, black slacks, and -- most importantly -- black turtlenecks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/l9EJEiwCF_k, +Wildlife Photographer of the Year captured this frightened marmot,"Tue, 15 Oct 2019 22:35:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"Tue, 15 Oct 2019 23:21:06 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, +How the black turtleneck came to represent creative genius,"Tue, 15 Oct 2019 02:35:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/l9EJEiwCF_k/index.html,"When the disgraced health entrepreneur Elizabeth Holmes was indicted on fraud charges for her lab-testing company Theranos last year, much of the media discussion rested not on her alleged corporate recklessness and staggering abuses of trust, but on her sartorial choices: black jackets, black slacks, and -- most importantly -- black turtlenecks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/l9EJEiwCF_k, +Wildlife Photographer of the Year captured this frightened marmot,"Tue, 15 Oct 2019 22:35:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"Tue, 15 Oct 2019 23:21:06 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, +How the black turtleneck came to represent creative genius,"Tue, 15 Oct 2019 02:35:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/l9EJEiwCF_k/index.html,"When the disgraced health entrepreneur Elizabeth Holmes was indicted on fraud charges for her lab-testing company Theranos last year, much of the media discussion rested not on her alleged corporate recklessness and staggering abuses of trust, but on her sartorial choices: black jackets, black slacks, and -- most importantly -- black turtlenecks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/l9EJEiwCF_k, +Wildlife Photographer of the Year captured this frightened marmot,"Tue, 15 Oct 2019 22:35:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"Tue, 15 Oct 2019 23:21:06 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, +How the black turtleneck came to represent creative genius,"Tue, 15 Oct 2019 02:35:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/l9EJEiwCF_k/index.html,"When the disgraced health entrepreneur Elizabeth Holmes was indicted on fraud charges for her lab-testing company Theranos last year, much of the media discussion rested not on her alleged corporate recklessness and staggering abuses of trust, but on her sartorial choices: black jackets, black slacks, and -- most importantly -- black turtlenecks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/l9EJEiwCF_k, +Wildlife Photographer of the Year captured this frightened marmot,"Tue, 15 Oct 2019 22:35:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"Tue, 15 Oct 2019 23:21:06 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, +How the black turtleneck came to represent creative genius,"Tue, 15 Oct 2019 02:35:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/l9EJEiwCF_k/index.html,"When the disgraced health entrepreneur Elizabeth Holmes was indicted on fraud charges for her lab-testing company Theranos last year, much of the media discussion rested not on her alleged corporate recklessness and staggering abuses of trust, but on her sartorial choices: black jackets, black slacks, and -- most importantly -- black turtlenecks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/l9EJEiwCF_k, +Wildlife Photographer of the Year captured this frightened marmot,"Tue, 15 Oct 2019 22:35:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"Tue, 15 Oct 2019 23:21:06 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, +How the black turtleneck came to represent creative genius,"Tue, 15 Oct 2019 02:35:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/l9EJEiwCF_k/index.html,"When the disgraced health entrepreneur Elizabeth Holmes was indicted on fraud charges for her lab-testing company Theranos last year, much of the media discussion rested not on her alleged corporate recklessness and staggering abuses of trust, but on her sartorial choices: black jackets, black slacks, and -- most importantly -- black turtlenecks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/l9EJEiwCF_k, +Wildlife Photographer of the Year captured this frightened marmot,"Tue, 15 Oct 2019 22:35:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"Tue, 15 Oct 2019 23:21:06 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, +How the black turtleneck came to represent creative genius,"Tue, 15 Oct 2019 02:35:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/l9EJEiwCF_k/index.html,"When the disgraced health entrepreneur Elizabeth Holmes was indicted on fraud charges for her lab-testing company Theranos last year, much of the media discussion rested not on her alleged corporate recklessness and staggering abuses of trust, but on her sartorial choices: black jackets, black slacks, and -- most importantly -- black turtlenecks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/l9EJEiwCF_k, +Wildlife Photographer of the Year captured this frightened marmot,"Tue, 15 Oct 2019 22:35:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"Tue, 15 Oct 2019 23:21:06 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, +How the black turtleneck came to represent creative genius,"Tue, 15 Oct 2019 02:35:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/l9EJEiwCF_k/index.html,"When the disgraced health entrepreneur Elizabeth Holmes was indicted on fraud charges for her lab-testing company Theranos last year, much of the media discussion rested not on her alleged corporate recklessness and staggering abuses of trust, but on her sartorial choices: black jackets, black slacks, and -- most importantly -- black turtlenecks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/l9EJEiwCF_k, +Wildlife Photographer of the Year captured this frightened marmot,"Tue, 15 Oct 2019 22:35:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"Tue, 15 Oct 2019 23:21:06 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, +How the black turtleneck came to represent creative genius,"Tue, 15 Oct 2019 02:35:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/l9EJEiwCF_k/index.html,"When the disgraced health entrepreneur Elizabeth Holmes was indicted on fraud charges for her lab-testing company Theranos last year, much of the media discussion rested not on her alleged corporate recklessness and staggering abuses of trust, but on her sartorial choices: black jackets, black slacks, and -- most importantly -- black turtlenecks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/l9EJEiwCF_k, +Wildlife Photographer of the Year captured this frightened marmot,"Tue, 15 Oct 2019 22:35:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"Tue, 15 Oct 2019 23:21:06 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, +How the black turtleneck came to represent creative genius,"Tue, 15 Oct 2019 02:35:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/l9EJEiwCF_k/index.html,"When the disgraced health entrepreneur Elizabeth Holmes was indicted on fraud charges for her lab-testing company Theranos last year, much of the media discussion rested not on her alleged corporate recklessness and staggering abuses of trust, but on her sartorial choices: black jackets, black slacks, and -- most importantly -- black turtlenecks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/l9EJEiwCF_k, +Wildlife Photographer of the Year captured this frightened marmot,"Tue, 15 Oct 2019 22:35:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"Tue, 15 Oct 2019 23:21:06 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, +How the black turtleneck came to represent creative genius,"Tue, 15 Oct 2019 02:35:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/l9EJEiwCF_k/index.html,"When the disgraced health entrepreneur Elizabeth Holmes was indicted on fraud charges for her lab-testing company Theranos last year, much of the media discussion rested not on her alleged corporate recklessness and staggering abuses of trust, but on her sartorial choices: black jackets, black slacks, and -- most importantly -- black turtlenecks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/l9EJEiwCF_k, +Wildlife Photographer of the Year captured this frightened marmot,"Tue, 15 Oct 2019 22:35:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"Tue, 15 Oct 2019 23:21:06 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, +How the black turtleneck came to represent creative genius,"Tue, 15 Oct 2019 02:35:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/l9EJEiwCF_k/index.html,"When the disgraced health entrepreneur Elizabeth Holmes was indicted on fraud charges for her lab-testing company Theranos last year, much of the media discussion rested not on her alleged corporate recklessness and staggering abuses of trust, but on her sartorial choices: black jackets, black slacks, and -- most importantly -- black turtlenecks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/l9EJEiwCF_k, +Wildlife Photographer of the Year captured this frightened marmot,"Tue, 15 Oct 2019 22:35:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/xhX7WMVeI2Q/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/xhX7WMVeI2Q, +50 of the world's best breads,"Tue, 15 Oct 2019 23:21:06 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/GDW1Xm3mYn8/index.html,"What is bread? You likely don't have to think for long, and whether you're hungry for a slice of sourdough or craving some tortillas, what you imagine says a lot about where you're from.",http://feeds.feedburner.com/~r/rss/edition_world/~4/GDW1Xm3mYn8, diff --git a/news_feed/news_cash/20191021.csv b/news_feed/news_cash/20191021.csv index 6681509..baf6fa1 100644 --- a/news_feed/news_cash/20191021.csv +++ b/news_feed/news_cash/20191021.csv @@ -1,2 +1,39 @@ -title,description,link,pubDate,imageLink,imageDescription -This Caribbean island is bouncing back,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Mon, 21 Oct 2019 17:15:35 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, +title,pubDate,link,description,imageLink,imageDescription +Martin Parr's quirky photos of British life,"Mon, 21 Oct 2019 09:45:48 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/E-0zdgvKypU/index.html,"British documentary photographer Martin Parr has, by his estimate, some three quarters of a million 10-by-8-inch prints of his work meticulously filed away in his office.",http://feeds.feedburner.com/~r/rss/edition_world/~4/E-0zdgvKypU, +This Caribbean island is bouncing back,"Mon, 21 Oct 2019 17:15:35 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, +Martin Parr's quirky photos of British life,"Mon, 21 Oct 2019 09:45:48 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/E-0zdgvKypU/index.html,"British documentary photographer Martin Parr has, by his estimate, some three quarters of a million 10-by-8-inch prints of his work meticulously filed away in his office.",http://feeds.feedburner.com/~r/rss/edition_world/~4/E-0zdgvKypU, +This Caribbean island is bouncing back,"Mon, 21 Oct 2019 17:15:35 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, +Martin Parr's quirky photos of British life,"Mon, 21 Oct 2019 09:45:48 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/E-0zdgvKypU/index.html,"British documentary photographer Martin Parr has, by his estimate, some three quarters of a million 10-by-8-inch prints of his work meticulously filed away in his office.",http://feeds.feedburner.com/~r/rss/edition_world/~4/E-0zdgvKypU, +This Caribbean island is bouncing back,"Mon, 21 Oct 2019 17:15:35 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, +Martin Parr's quirky photos of British life,"Mon, 21 Oct 2019 09:45:48 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/E-0zdgvKypU/index.html,"British documentary photographer Martin Parr has, by his estimate, some three quarters of a million 10-by-8-inch prints of his work meticulously filed away in his office.",http://feeds.feedburner.com/~r/rss/edition_world/~4/E-0zdgvKypU, +This Caribbean island is bouncing back,"Mon, 21 Oct 2019 17:15:35 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, +Martin Parr's quirky photos of British life,"Mon, 21 Oct 2019 09:45:48 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/E-0zdgvKypU/index.html,"British documentary photographer Martin Parr has, by his estimate, some three quarters of a million 10-by-8-inch prints of his work meticulously filed away in his office.",http://feeds.feedburner.com/~r/rss/edition_world/~4/E-0zdgvKypU, +This Caribbean island is bouncing back,"Mon, 21 Oct 2019 17:15:35 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, +Martin Parr's quirky photos of British life,"Mon, 21 Oct 2019 09:45:48 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/E-0zdgvKypU/index.html,"British documentary photographer Martin Parr has, by his estimate, some three quarters of a million 10-by-8-inch prints of his work meticulously filed away in his office.",http://feeds.feedburner.com/~r/rss/edition_world/~4/E-0zdgvKypU, +This Caribbean island is bouncing back,"Mon, 21 Oct 2019 17:15:35 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, +Martin Parr's quirky photos of British life,"Mon, 21 Oct 2019 09:45:48 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/E-0zdgvKypU/index.html,"British documentary photographer Martin Parr has, by his estimate, some three quarters of a million 10-by-8-inch prints of his work meticulously filed away in his office.",http://feeds.feedburner.com/~r/rss/edition_world/~4/E-0zdgvKypU, +This Caribbean island is bouncing back,"Mon, 21 Oct 2019 17:15:35 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, +Martin Parr's quirky photos of British life,"Mon, 21 Oct 2019 09:45:48 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/E-0zdgvKypU/index.html,"British documentary photographer Martin Parr has, by his estimate, some three quarters of a million 10-by-8-inch prints of his work meticulously filed away in his office.",http://feeds.feedburner.com/~r/rss/edition_world/~4/E-0zdgvKypU, +This Caribbean island is bouncing back,"Mon, 21 Oct 2019 17:15:35 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, +Martin Parr's quirky photos of British life,"Mon, 21 Oct 2019 09:45:48 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/E-0zdgvKypU/index.html,"British documentary photographer Martin Parr has, by his estimate, some three quarters of a million 10-by-8-inch prints of his work meticulously filed away in his office.",http://feeds.feedburner.com/~r/rss/edition_world/~4/E-0zdgvKypU, +This Caribbean island is bouncing back,"Mon, 21 Oct 2019 17:15:35 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, +Martin Parr's quirky photos of British life,"Mon, 21 Oct 2019 09:45:48 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/E-0zdgvKypU/index.html,"British documentary photographer Martin Parr has, by his estimate, some three quarters of a million 10-by-8-inch prints of his work meticulously filed away in his office.",http://feeds.feedburner.com/~r/rss/edition_world/~4/E-0zdgvKypU, +This Caribbean island is bouncing back,"Mon, 21 Oct 2019 17:15:35 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, +Martin Parr's quirky photos of British life,"Mon, 21 Oct 2019 09:45:48 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/E-0zdgvKypU/index.html,"British documentary photographer Martin Parr has, by his estimate, some three quarters of a million 10-by-8-inch prints of his work meticulously filed away in his office.",http://feeds.feedburner.com/~r/rss/edition_world/~4/E-0zdgvKypU, +This Caribbean island is bouncing back,"Mon, 21 Oct 2019 17:15:35 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, +Martin Parr's quirky photos of British life,"Mon, 21 Oct 2019 09:45:48 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/E-0zdgvKypU/index.html,"British documentary photographer Martin Parr has, by his estimate, some three quarters of a million 10-by-8-inch prints of his work meticulously filed away in his office.",http://feeds.feedburner.com/~r/rss/edition_world/~4/E-0zdgvKypU, +This Caribbean island is bouncing back,"Mon, 21 Oct 2019 17:15:35 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, +Martin Parr's quirky photos of British life,"Mon, 21 Oct 2019 09:45:48 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/E-0zdgvKypU/index.html,"British documentary photographer Martin Parr has, by his estimate, some three quarters of a million 10-by-8-inch prints of his work meticulously filed away in his office.",http://feeds.feedburner.com/~r/rss/edition_world/~4/E-0zdgvKypU, +This Caribbean island is bouncing back,"Mon, 21 Oct 2019 17:15:35 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, +Martin Parr's quirky photos of British life,"Mon, 21 Oct 2019 09:45:48 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/E-0zdgvKypU/index.html,"British documentary photographer Martin Parr has, by his estimate, some three quarters of a million 10-by-8-inch prints of his work meticulously filed away in his office.",http://feeds.feedburner.com/~r/rss/edition_world/~4/E-0zdgvKypU, +This Caribbean island is bouncing back,"Mon, 21 Oct 2019 17:15:35 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, +Martin Parr's quirky photos of British life,"Mon, 21 Oct 2019 09:45:48 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/E-0zdgvKypU/index.html,"British documentary photographer Martin Parr has, by his estimate, some three quarters of a million 10-by-8-inch prints of his work meticulously filed away in his office.",http://feeds.feedburner.com/~r/rss/edition_world/~4/E-0zdgvKypU, +This Caribbean island is bouncing back,"Mon, 21 Oct 2019 17:15:35 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, +Martin Parr's quirky photos of British life,"Mon, 21 Oct 2019 09:45:48 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/E-0zdgvKypU/index.html,"British documentary photographer Martin Parr has, by his estimate, some three quarters of a million 10-by-8-inch prints of his work meticulously filed away in his office.",http://feeds.feedburner.com/~r/rss/edition_world/~4/E-0zdgvKypU, +This Caribbean island is bouncing back,"Mon, 21 Oct 2019 17:15:35 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, +Martin Parr's quirky photos of British life,"Mon, 21 Oct 2019 09:45:48 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/E-0zdgvKypU/index.html,"British documentary photographer Martin Parr has, by his estimate, some three quarters of a million 10-by-8-inch prints of his work meticulously filed away in his office.",http://feeds.feedburner.com/~r/rss/edition_world/~4/E-0zdgvKypU, +This Caribbean island is bouncing back,"Mon, 21 Oct 2019 17:15:35 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, +Martin Parr's quirky photos of British life,"Mon, 21 Oct 2019 09:45:48 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/E-0zdgvKypU/index.html,"British documentary photographer Martin Parr has, by his estimate, some three quarters of a million 10-by-8-inch prints of his work meticulously filed away in his office.",http://feeds.feedburner.com/~r/rss/edition_world/~4/E-0zdgvKypU, +This Caribbean island is bouncing back,"Mon, 21 Oct 2019 17:15:35 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, +Martin Parr's quirky photos of British life,"Mon, 21 Oct 2019 09:45:48 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/E-0zdgvKypU/index.html,"British documentary photographer Martin Parr has, by his estimate, some three quarters of a million 10-by-8-inch prints of his work meticulously filed away in his office.",http://feeds.feedburner.com/~r/rss/edition_world/~4/E-0zdgvKypU, +This Caribbean island is bouncing back,"Mon, 21 Oct 2019 17:15:35 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Z7-hVQ4aJQw/index.html,"Longing for the Caribbean but want to go where the hotel crowds aren't? Aim for wild, rambling St. John.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Z7-hVQ4aJQw, diff --git a/news_feed/news_cash/20191022.csv b/news_feed/news_cash/20191022.csv index 9d87ce5..f5d96d5 100644 --- a/news_feed/news_cash/20191022.csv +++ b/news_feed/news_cash/20191022.csv @@ -1,2 +1,20 @@ -title,description,link,pubDate,imageLink,imageDescription -This Norwegian bridge is also an art museum,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"Tue, 22 Oct 2019 14:51:54 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, +title,pubDate,link,description,imageLink,imageDescription +This Norwegian bridge is also an art museum,"Tue, 22 Oct 2019 14:51:54 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, +This Norwegian bridge is also an art museum,"Tue, 22 Oct 2019 14:51:54 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, +This Norwegian bridge is also an art museum,"Tue, 22 Oct 2019 14:51:54 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, +This Norwegian bridge is also an art museum,"Tue, 22 Oct 2019 14:51:54 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, +This Norwegian bridge is also an art museum,"Tue, 22 Oct 2019 14:51:54 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, +This Norwegian bridge is also an art museum,"Tue, 22 Oct 2019 14:51:54 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, +This Norwegian bridge is also an art museum,"Tue, 22 Oct 2019 14:51:54 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, +This Norwegian bridge is also an art museum,"Tue, 22 Oct 2019 14:51:54 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, +This Norwegian bridge is also an art museum,"Tue, 22 Oct 2019 14:51:54 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, +This Norwegian bridge is also an art museum,"Tue, 22 Oct 2019 14:51:54 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, +This Norwegian bridge is also an art museum,"Tue, 22 Oct 2019 14:51:54 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, +This Norwegian bridge is also an art museum,"Tue, 22 Oct 2019 14:51:54 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, +This Norwegian bridge is also an art museum,"Tue, 22 Oct 2019 14:51:54 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, +This Norwegian bridge is also an art museum,"Tue, 22 Oct 2019 14:51:54 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, +This Norwegian bridge is also an art museum,"Tue, 22 Oct 2019 14:51:54 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, +This Norwegian bridge is also an art museum,"Tue, 22 Oct 2019 14:51:54 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, +This Norwegian bridge is also an art museum,"Tue, 22 Oct 2019 14:51:54 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, +This Norwegian bridge is also an art museum,"Tue, 22 Oct 2019 14:51:54 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, +This Norwegian bridge is also an art museum,"Tue, 22 Oct 2019 14:51:54 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Ss8MyxbfEPs/index.html,"A striking bridge meets an intriguing modern art museum meets the splendor of the Norwegian natural landscape in the Twist -- the latest project from BIG-Bjarke Ingels Group, located about an hour's drive from Oslo.",http://feeds.feedburner.com/~r/rss/edition_world/~4/Ss8MyxbfEPs, diff --git a/news_feed/news_cash/20191026.csv b/news_feed/news_cash/20191026.csv index 14e3f6a..f07e585 100644 --- a/news_feed/news_cash/20191026.csv +++ b/news_feed/news_cash/20191026.csv @@ -1,2 +1,20 @@ -title,description,link,pubDate,imageLink,imageDescription -The Model Y could be a game changer for Tesla ,Tesla's stock enjoyed its biggest spike in six years this week after the automaker reported an unexpected third quarter profit. But that might not have been the biggest achievement for the company.,http://rss.cnn.com/~r/rss/edition_world/~3/eTXTqPOUTPM/index.html,"Sat, 26 Oct 2019 17:16:07 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/eTXTqPOUTPM, +title,pubDate,link,description,imageLink,imageDescription +"Under Xi's rule, what is China's image of the 'ideal' man?","Sat, 26 Oct 2019 03:32:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/OZyRzfuKUC0/index.html,"Musk Ming paints Chinese men in suggestive poses. Delicate ink-formed faces stare longingly from the paper, their lean bodies dressed in green caps with red stars. Some wear white and navy sailor hats with ribbons. Others are cloaked in olive coats with brown faux fur collars. The men may not be wearing much, but the accoutrements of the Chinese People's Liberation Army (PLA) are unmistakable.",http://feeds.feedburner.com/~r/rss/edition_world/~4/OZyRzfuKUC0, +"Under Xi's rule, what is China's image of the 'ideal' man?","Sat, 26 Oct 2019 03:32:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/OZyRzfuKUC0/index.html,"Musk Ming paints Chinese men in suggestive poses. Delicate ink-formed faces stare longingly from the paper, their lean bodies dressed in green caps with red stars. Some wear white and navy sailor hats with ribbons. Others are cloaked in olive coats with brown faux fur collars. The men may not be wearing much, but the accoutrements of the Chinese People's Liberation Army (PLA) are unmistakable.",http://feeds.feedburner.com/~r/rss/edition_world/~4/OZyRzfuKUC0, +"Under Xi's rule, what is China's image of the 'ideal' man?","Sat, 26 Oct 2019 03:32:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/OZyRzfuKUC0/index.html,"Musk Ming paints Chinese men in suggestive poses. Delicate ink-formed faces stare longingly from the paper, their lean bodies dressed in green caps with red stars. Some wear white and navy sailor hats with ribbons. Others are cloaked in olive coats with brown faux fur collars. The men may not be wearing much, but the accoutrements of the Chinese People's Liberation Army (PLA) are unmistakable.",http://feeds.feedburner.com/~r/rss/edition_world/~4/OZyRzfuKUC0, +"Under Xi's rule, what is China's image of the 'ideal' man?","Sat, 26 Oct 2019 03:32:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/OZyRzfuKUC0/index.html,"Musk Ming paints Chinese men in suggestive poses. Delicate ink-formed faces stare longingly from the paper, their lean bodies dressed in green caps with red stars. Some wear white and navy sailor hats with ribbons. Others are cloaked in olive coats with brown faux fur collars. The men may not be wearing much, but the accoutrements of the Chinese People's Liberation Army (PLA) are unmistakable.",http://feeds.feedburner.com/~r/rss/edition_world/~4/OZyRzfuKUC0, +"Under Xi's rule, what is China's image of the 'ideal' man?","Sat, 26 Oct 2019 03:32:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/OZyRzfuKUC0/index.html,"Musk Ming paints Chinese men in suggestive poses. Delicate ink-formed faces stare longingly from the paper, their lean bodies dressed in green caps with red stars. Some wear white and navy sailor hats with ribbons. Others are cloaked in olive coats with brown faux fur collars. The men may not be wearing much, but the accoutrements of the Chinese People's Liberation Army (PLA) are unmistakable.",http://feeds.feedburner.com/~r/rss/edition_world/~4/OZyRzfuKUC0, +"Under Xi's rule, what is China's image of the 'ideal' man?","Sat, 26 Oct 2019 03:32:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/OZyRzfuKUC0/index.html,"Musk Ming paints Chinese men in suggestive poses. Delicate ink-formed faces stare longingly from the paper, their lean bodies dressed in green caps with red stars. Some wear white and navy sailor hats with ribbons. Others are cloaked in olive coats with brown faux fur collars. The men may not be wearing much, but the accoutrements of the Chinese People's Liberation Army (PLA) are unmistakable.",http://feeds.feedburner.com/~r/rss/edition_world/~4/OZyRzfuKUC0, +"Under Xi's rule, what is China's image of the 'ideal' man?","Sat, 26 Oct 2019 03:32:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/OZyRzfuKUC0/index.html,"Musk Ming paints Chinese men in suggestive poses. Delicate ink-formed faces stare longingly from the paper, their lean bodies dressed in green caps with red stars. Some wear white and navy sailor hats with ribbons. Others are cloaked in olive coats with brown faux fur collars. The men may not be wearing much, but the accoutrements of the Chinese People's Liberation Army (PLA) are unmistakable.",http://feeds.feedburner.com/~r/rss/edition_world/~4/OZyRzfuKUC0, +"Under Xi's rule, what is China's image of the 'ideal' man?","Sat, 26 Oct 2019 03:32:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/OZyRzfuKUC0/index.html,"Musk Ming paints Chinese men in suggestive poses. Delicate ink-formed faces stare longingly from the paper, their lean bodies dressed in green caps with red stars. Some wear white and navy sailor hats with ribbons. Others are cloaked in olive coats with brown faux fur collars. The men may not be wearing much, but the accoutrements of the Chinese People's Liberation Army (PLA) are unmistakable.",http://feeds.feedburner.com/~r/rss/edition_world/~4/OZyRzfuKUC0, +"Under Xi's rule, what is China's image of the 'ideal' man?","Sat, 26 Oct 2019 03:32:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/OZyRzfuKUC0/index.html,"Musk Ming paints Chinese men in suggestive poses. Delicate ink-formed faces stare longingly from the paper, their lean bodies dressed in green caps with red stars. Some wear white and navy sailor hats with ribbons. Others are cloaked in olive coats with brown faux fur collars. The men may not be wearing much, but the accoutrements of the Chinese People's Liberation Army (PLA) are unmistakable.",http://feeds.feedburner.com/~r/rss/edition_world/~4/OZyRzfuKUC0, +"Under Xi's rule, what is China's image of the 'ideal' man?","Sat, 26 Oct 2019 03:32:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/OZyRzfuKUC0/index.html,"Musk Ming paints Chinese men in suggestive poses. Delicate ink-formed faces stare longingly from the paper, their lean bodies dressed in green caps with red stars. Some wear white and navy sailor hats with ribbons. Others are cloaked in olive coats with brown faux fur collars. The men may not be wearing much, but the accoutrements of the Chinese People's Liberation Army (PLA) are unmistakable.",http://feeds.feedburner.com/~r/rss/edition_world/~4/OZyRzfuKUC0, +"Under Xi's rule, what is China's image of the 'ideal' man?","Sat, 26 Oct 2019 03:32:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/OZyRzfuKUC0/index.html,"Musk Ming paints Chinese men in suggestive poses. Delicate ink-formed faces stare longingly from the paper, their lean bodies dressed in green caps with red stars. Some wear white and navy sailor hats with ribbons. Others are cloaked in olive coats with brown faux fur collars. The men may not be wearing much, but the accoutrements of the Chinese People's Liberation Army (PLA) are unmistakable.",http://feeds.feedburner.com/~r/rss/edition_world/~4/OZyRzfuKUC0, +"Under Xi's rule, what is China's image of the 'ideal' man?","Sat, 26 Oct 2019 03:32:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/OZyRzfuKUC0/index.html,"Musk Ming paints Chinese men in suggestive poses. Delicate ink-formed faces stare longingly from the paper, their lean bodies dressed in green caps with red stars. Some wear white and navy sailor hats with ribbons. Others are cloaked in olive coats with brown faux fur collars. The men may not be wearing much, but the accoutrements of the Chinese People's Liberation Army (PLA) are unmistakable.",http://feeds.feedburner.com/~r/rss/edition_world/~4/OZyRzfuKUC0, +"Under Xi's rule, what is China's image of the 'ideal' man?","Sat, 26 Oct 2019 03:32:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/OZyRzfuKUC0/index.html,"Musk Ming paints Chinese men in suggestive poses. Delicate ink-formed faces stare longingly from the paper, their lean bodies dressed in green caps with red stars. Some wear white and navy sailor hats with ribbons. Others are cloaked in olive coats with brown faux fur collars. The men may not be wearing much, but the accoutrements of the Chinese People's Liberation Army (PLA) are unmistakable.",http://feeds.feedburner.com/~r/rss/edition_world/~4/OZyRzfuKUC0, +"Under Xi's rule, what is China's image of the 'ideal' man?","Sat, 26 Oct 2019 03:32:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/OZyRzfuKUC0/index.html,"Musk Ming paints Chinese men in suggestive poses. Delicate ink-formed faces stare longingly from the paper, their lean bodies dressed in green caps with red stars. Some wear white and navy sailor hats with ribbons. Others are cloaked in olive coats with brown faux fur collars. The men may not be wearing much, but the accoutrements of the Chinese People's Liberation Army (PLA) are unmistakable.",http://feeds.feedburner.com/~r/rss/edition_world/~4/OZyRzfuKUC0, +"Under Xi's rule, what is China's image of the 'ideal' man?","Sat, 26 Oct 2019 03:32:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/OZyRzfuKUC0/index.html,"Musk Ming paints Chinese men in suggestive poses. Delicate ink-formed faces stare longingly from the paper, their lean bodies dressed in green caps with red stars. Some wear white and navy sailor hats with ribbons. Others are cloaked in olive coats with brown faux fur collars. The men may not be wearing much, but the accoutrements of the Chinese People's Liberation Army (PLA) are unmistakable.",http://feeds.feedburner.com/~r/rss/edition_world/~4/OZyRzfuKUC0, +"Under Xi's rule, what is China's image of the 'ideal' man?","Sat, 26 Oct 2019 03:32:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/OZyRzfuKUC0/index.html,"Musk Ming paints Chinese men in suggestive poses. Delicate ink-formed faces stare longingly from the paper, their lean bodies dressed in green caps with red stars. Some wear white and navy sailor hats with ribbons. Others are cloaked in olive coats with brown faux fur collars. The men may not be wearing much, but the accoutrements of the Chinese People's Liberation Army (PLA) are unmistakable.",http://feeds.feedburner.com/~r/rss/edition_world/~4/OZyRzfuKUC0, +"Under Xi's rule, what is China's image of the 'ideal' man?","Sat, 26 Oct 2019 03:32:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/OZyRzfuKUC0/index.html,"Musk Ming paints Chinese men in suggestive poses. Delicate ink-formed faces stare longingly from the paper, their lean bodies dressed in green caps with red stars. Some wear white and navy sailor hats with ribbons. Others are cloaked in olive coats with brown faux fur collars. The men may not be wearing much, but the accoutrements of the Chinese People's Liberation Army (PLA) are unmistakable.",http://feeds.feedburner.com/~r/rss/edition_world/~4/OZyRzfuKUC0, +"Under Xi's rule, what is China's image of the 'ideal' man?","Sat, 26 Oct 2019 03:32:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/OZyRzfuKUC0/index.html,"Musk Ming paints Chinese men in suggestive poses. Delicate ink-formed faces stare longingly from the paper, their lean bodies dressed in green caps with red stars. Some wear white and navy sailor hats with ribbons. Others are cloaked in olive coats with brown faux fur collars. The men may not be wearing much, but the accoutrements of the Chinese People's Liberation Army (PLA) are unmistakable.",http://feeds.feedburner.com/~r/rss/edition_world/~4/OZyRzfuKUC0, +"Under Xi's rule, what is China's image of the 'ideal' man?","Sat, 26 Oct 2019 03:32:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/OZyRzfuKUC0/index.html,"Musk Ming paints Chinese men in suggestive poses. Delicate ink-formed faces stare longingly from the paper, their lean bodies dressed in green caps with red stars. Some wear white and navy sailor hats with ribbons. Others are cloaked in olive coats with brown faux fur collars. The men may not be wearing much, but the accoutrements of the Chinese People's Liberation Army (PLA) are unmistakable.",http://feeds.feedburner.com/~r/rss/edition_world/~4/OZyRzfuKUC0, diff --git a/news_feed/news_cash/20191028.csv b/news_feed/news_cash/20191028.csv deleted file mode 100644 index bb85b4e..0000000 --- a/news_feed/news_cash/20191028.csv +++ /dev/null @@ -1,4 +0,0 @@ -title,description,link,pubDate,imageLink,imageDescription -The world's biggest banks have major problems. Just look at HSBC ,Happy Monday. A version of this story first appeared in CNN Business' Before the Bell newsletter. Not a subscriber? You can sign up right here.,http://rss.cnn.com/~r/rss/edition_world/~3/OfRYNK8ELnY/index.html,"Mon, 28 Oct 2019 11:37:51 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/OfRYNK8ELnY, -Impossible Whoppers are a huge hit at Burger King,"Popeyes' spicy chicken sandwich is the only thing in the fast food business that's hotter than Burger King's Impossible Whopper. That's great news for Restaurant Brands, which owns both chains.",http://rss.cnn.com/~r/rss/edition_world/~3/yNjcrbXsi1s/index.html,"Mon, 28 Oct 2019 17:27:44 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/yNjcrbXsi1s, -Is this the most surreal exhibition ever?,"When Susanna Brown joined London's prestigious V&A museum over a decade ago as a curator in photographs, one of the first things she acquired was a group of images by Tim Walker.",http://rss.cnn.com/~r/rss/edition_world/~3/ns6RnnZgyiA/index.html,"Mon, 28 Oct 2019 15:22:42 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/ns6RnnZgyiA, diff --git a/news_feed/news_cash/20191029.csv b/news_feed/news_cash/20191029.csv index 46ec032..c6c4efa 100644 --- a/news_feed/news_cash/20191029.csv +++ b/news_feed/news_cash/20191029.csv @@ -1,7 +1,477 @@ -title,link,pubDate,description,imageLink,imageDescription -Lebanon's PM quits after nationwide protests,http://rss.cnn.com/~r/rss/edition_world/~3/wo6r3XV0GnY/index.html,"Tue, 29 Oct 2019 18:34:46 GMT",,http://feeds.feedburner.com/~r/rss/edition_world/~4/wo6r3XV0GnY, -Tick-borne brain disease found in UK,"A potentially fatal infection spread by ticks has been detected for the first time in the UK, according to health authorities.",http://rss.cnn.com/~r/rss/edition_world/~3/UrzOiLkK0WA/index.html,"Tue, 29 Oct 2019 09:53:44 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/UrzOiLkK0WA, -Age just a number to rugby playing pensioners,"The Rugby World Cup has seen rugby fever sweep across Japan as a whole new generation of Japanese rugby fans have been inspired by the incredible exploits of the country's national team, the Brave Blossoms.",http://rss.cnn.com/~r/rss/edition_world/~3/OKEaouowThQ/rugby-world-cup-japanese-pensioners-brave-blossoms-spt-intl.cnn,"Tue, 29 Oct 2019 13:54:32 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/OKEaouowThQ, -Bulgaria gets one-time stadium ban and fine,"Bulgaria's national soccer team has been ordered by UEFA to play its next home game behind closed doors as punishment for the ""racist behavior"" of its fans during a Euro 2020 against England.",http://rss.cnn.com/~r/rss/edition_world/~3/39Gaxl2worM/index.html,"Tue, 29 Oct 2019 16:05:29 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/39Gaxl2worM, -Ex-soldier climbs 14 highest peaks,"A former soldier from Nepal has climbed the world's 14 highest peaks in just over six months, smashing the previous record by over 7 years.",http://rss.cnn.com/~r/rss/edition_world/~3/J3nHBHZo0K8/index.html,"Tue, 29 Oct 2019 14:00:23 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/J3nHBHZo0K8, -Huawei and ZTE could lose what little business they have in the US,The US Federal Communications Commission wants to place more restrictions on Huawei and ZTE by barring companies that receive government money from purchasing equipment or services from the Chinese tech firms.,http://rss.cnn.com/~r/rss/edition_world/~3/DhpgwjNf_sM/index.html,"Tue, 29 Oct 2019 06:09:21 GMT",http://feeds.feedburner.com/~r/rss/edition_world/~4/DhpgwjNf_sM, +title,pubDate,link,description,imageLink,imageDescription +From pagan spirits to Wonder Woman: A history of the Halloween costume,"Tue, 29 Oct 2019 21:20:47 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/F4cACX1KUdM/index.html,"A black-and-white photo from the early 1900s shows a woman in rural America, her face covered with a sinister white mask. In another, from 1930, a tall figure stands in a field tightly wrapped in what looks like a white sheet and black tape, while a 1938 image shows three people driving to a party in hair-raising skull masks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/F4cACX1KUdM, +Tate Modern to display Andy Warhol's portraits of trans women ,"Tue, 29 Oct 2019 15:03:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/k4i5xxkpcgs/index.html,"A collection of Andy Warhol's New York portraits of transgender women and drag queens will go on display at London's Tate Modern, as part of a new exhibition dedicated to the artist's life and identity.",http://feeds.feedburner.com/~r/rss/edition_world/~4/k4i5xxkpcgs, +This woman faked a pregnancy to try to avoid excess baggage fees,"Tue, 29 Oct 2019 12:01:53 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/SXT8at_euP0/index.html,"Many travelers get creative with packing, whether it's sitting on your suitcase to try and get it to shut, or arriving at the airport wearing three coats.",http://feeds.feedburner.com/~r/rss/edition_world/~4/SXT8at_euP0, +From pagan spirits to Wonder Woman: A history of the Halloween costume,"Tue, 29 Oct 2019 21:20:47 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/F4cACX1KUdM/index.html,"A black-and-white photo from the early 1900s shows a woman in rural America, her face covered with a sinister white mask. In another, from 1930, a tall figure stands in a field tightly wrapped in what looks like a white sheet and black tape, while a 1938 image shows three people driving to a party in hair-raising skull masks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/F4cACX1KUdM, +Tate Modern to display Andy Warhol's portraits of trans women ,"Tue, 29 Oct 2019 15:03:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/k4i5xxkpcgs/index.html,"A collection of Andy Warhol's New York portraits of transgender women and drag queens will go on display at London's Tate Modern, as part of a new exhibition dedicated to the artist's life and identity.",http://feeds.feedburner.com/~r/rss/edition_world/~4/k4i5xxkpcgs, +This woman faked a pregnancy to try to avoid excess baggage fees,"Tue, 29 Oct 2019 12:01:53 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/SXT8at_euP0/index.html,"Many travelers get creative with packing, whether it's sitting on your suitcase to try and get it to shut, or arriving at the airport wearing three coats.",http://feeds.feedburner.com/~r/rss/edition_world/~4/SXT8at_euP0, +From pagan spirits to Wonder Woman: A history of the Halloween costume,"Tue, 29 Oct 2019 21:20:47 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/F4cACX1KUdM/index.html,"A black-and-white photo from the early 1900s shows a woman in rural America, her face covered with a sinister white mask. In another, from 1930, a tall figure stands in a field tightly wrapped in what looks like a white sheet and black tape, while a 1938 image shows three people driving to a party in hair-raising skull masks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/F4cACX1KUdM, +Tate Modern to display Andy Warhol's portraits of trans women ,"Tue, 29 Oct 2019 15:03:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/k4i5xxkpcgs/index.html,"A collection of Andy Warhol's New York portraits of transgender women and drag queens will go on display at London's Tate Modern, as part of a new exhibition dedicated to the artist's life and identity.",http://feeds.feedburner.com/~r/rss/edition_world/~4/k4i5xxkpcgs, +This woman faked a pregnancy to try to avoid excess baggage fees,"Tue, 29 Oct 2019 12:01:53 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/SXT8at_euP0/index.html,"Many travelers get creative with packing, whether it's sitting on your suitcase to try and get it to shut, or arriving at the airport wearing three coats.",http://feeds.feedburner.com/~r/rss/edition_world/~4/SXT8at_euP0, +From pagan spirits to Wonder Woman: A history of the Halloween costume,"Tue, 29 Oct 2019 21:20:47 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/F4cACX1KUdM/index.html,"A black-and-white photo from the early 1900s shows a woman in rural America, her face covered with a sinister white mask. In another, from 1930, a tall figure stands in a field tightly wrapped in what looks like a white sheet and black tape, while a 1938 image shows three people driving to a party in hair-raising skull masks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/F4cACX1KUdM, +Tate Modern to display Andy Warhol's portraits of trans women ,"Tue, 29 Oct 2019 15:03:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/k4i5xxkpcgs/index.html,"A collection of Andy Warhol's New York portraits of transgender women and drag queens will go on display at London's Tate Modern, as part of a new exhibition dedicated to the artist's life and identity.",http://feeds.feedburner.com/~r/rss/edition_world/~4/k4i5xxkpcgs, +This woman faked a pregnancy to try to avoid excess baggage fees,"Tue, 29 Oct 2019 12:01:53 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/SXT8at_euP0/index.html,"Many travelers get creative with packing, whether it's sitting on your suitcase to try and get it to shut, or arriving at the airport wearing three coats.",http://feeds.feedburner.com/~r/rss/edition_world/~4/SXT8at_euP0, +From pagan spirits to Wonder Woman: A history of the Halloween costume,"Tue, 29 Oct 2019 21:20:47 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/F4cACX1KUdM/index.html,"A black-and-white photo from the early 1900s shows a woman in rural America, her face covered with a sinister white mask. In another, from 1930, a tall figure stands in a field tightly wrapped in what looks like a white sheet and black tape, while a 1938 image shows three people driving to a party in hair-raising skull masks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/F4cACX1KUdM, +Tate Modern to display Andy Warhol's portraits of trans women ,"Tue, 29 Oct 2019 15:03:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/k4i5xxkpcgs/index.html,"A collection of Andy Warhol's New York portraits of transgender women and drag queens will go on display at London's Tate Modern, as part of a new exhibition dedicated to the artist's life and identity.",http://feeds.feedburner.com/~r/rss/edition_world/~4/k4i5xxkpcgs, +This woman faked a pregnancy to try to avoid excess baggage fees,"Tue, 29 Oct 2019 12:01:53 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/SXT8at_euP0/index.html,"Many travelers get creative with packing, whether it's sitting on your suitcase to try and get it to shut, or arriving at the airport wearing three coats.",http://feeds.feedburner.com/~r/rss/edition_world/~4/SXT8at_euP0, +From pagan spirits to Wonder Woman: A history of the Halloween costume,"Tue, 29 Oct 2019 21:20:47 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/F4cACX1KUdM/index.html,"A black-and-white photo from the early 1900s shows a woman in rural America, her face covered with a sinister white mask. In another, from 1930, a tall figure stands in a field tightly wrapped in what looks like a white sheet and black tape, while a 1938 image shows three people driving to a party in hair-raising skull masks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/F4cACX1KUdM, +Tate Modern to display Andy Warhol's portraits of trans women ,"Tue, 29 Oct 2019 15:03:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/k4i5xxkpcgs/index.html,"A collection of Andy Warhol's New York portraits of transgender women and drag queens will go on display at London's Tate Modern, as part of a new exhibition dedicated to the artist's life and identity.",http://feeds.feedburner.com/~r/rss/edition_world/~4/k4i5xxkpcgs, +This woman faked a pregnancy to try to avoid excess baggage fees,"Tue, 29 Oct 2019 12:01:53 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/SXT8at_euP0/index.html,"Many travelers get creative with packing, whether it's sitting on your suitcase to try and get it to shut, or arriving at the airport wearing three coats.",http://feeds.feedburner.com/~r/rss/edition_world/~4/SXT8at_euP0, +From pagan spirits to Wonder Woman: A history of the Halloween costume,"Tue, 29 Oct 2019 21:20:47 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/F4cACX1KUdM/index.html,"A black-and-white photo from the early 1900s shows a woman in rural America, her face covered with a sinister white mask. In another, from 1930, a tall figure stands in a field tightly wrapped in what looks like a white sheet and black tape, while a 1938 image shows three people driving to a party in hair-raising skull masks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/F4cACX1KUdM, +Tate Modern to display Andy Warhol's portraits of trans women ,"Tue, 29 Oct 2019 15:03:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/k4i5xxkpcgs/index.html,"A collection of Andy Warhol's New York portraits of transgender women and drag queens will go on display at London's Tate Modern, as part of a new exhibition dedicated to the artist's life and identity.",http://feeds.feedburner.com/~r/rss/edition_world/~4/k4i5xxkpcgs, +This woman faked a pregnancy to try to avoid excess baggage fees,"Tue, 29 Oct 2019 12:01:53 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/SXT8at_euP0/index.html,"Many travelers get creative with packing, whether it's sitting on your suitcase to try and get it to shut, or arriving at the airport wearing three coats.",http://feeds.feedburner.com/~r/rss/edition_world/~4/SXT8at_euP0, +From pagan spirits to Wonder Woman: A history of the Halloween costume,"Tue, 29 Oct 2019 21:20:47 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/F4cACX1KUdM/index.html,"A black-and-white photo from the early 1900s shows a woman in rural America, her face covered with a sinister white mask. In another, from 1930, a tall figure stands in a field tightly wrapped in what looks like a white sheet and black tape, while a 1938 image shows three people driving to a party in hair-raising skull masks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/F4cACX1KUdM, +Tate Modern to display Andy Warhol's portraits of trans women ,"Tue, 29 Oct 2019 15:03:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/k4i5xxkpcgs/index.html,"A collection of Andy Warhol's New York portraits of transgender women and drag queens will go on display at London's Tate Modern, as part of a new exhibition dedicated to the artist's life and identity.",http://feeds.feedburner.com/~r/rss/edition_world/~4/k4i5xxkpcgs, +This woman faked a pregnancy to try to avoid excess baggage fees,"Tue, 29 Oct 2019 12:01:53 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/SXT8at_euP0/index.html,"Many travelers get creative with packing, whether it's sitting on your suitcase to try and get it to shut, or arriving at the airport wearing three coats.",http://feeds.feedburner.com/~r/rss/edition_world/~4/SXT8at_euP0, +From pagan spirits to Wonder Woman: A history of the Halloween costume,"Tue, 29 Oct 2019 21:20:47 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/F4cACX1KUdM/index.html,"A black-and-white photo from the early 1900s shows a woman in rural America, her face covered with a sinister white mask. In another, from 1930, a tall figure stands in a field tightly wrapped in what looks like a white sheet and black tape, while a 1938 image shows three people driving to a party in hair-raising skull masks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/F4cACX1KUdM, +Tate Modern to display Andy Warhol's portraits of trans women ,"Tue, 29 Oct 2019 15:03:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/k4i5xxkpcgs/index.html,"A collection of Andy Warhol's New York portraits of transgender women and drag queens will go on display at London's Tate Modern, as part of a new exhibition dedicated to the artist's life and identity.",http://feeds.feedburner.com/~r/rss/edition_world/~4/k4i5xxkpcgs, +This woman faked a pregnancy to try to avoid excess baggage fees,"Tue, 29 Oct 2019 12:01:53 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/SXT8at_euP0/index.html,"Many travelers get creative with packing, whether it's sitting on your suitcase to try and get it to shut, or arriving at the airport wearing three coats.",http://feeds.feedburner.com/~r/rss/edition_world/~4/SXT8at_euP0, +From pagan spirits to Wonder Woman: A history of the Halloween costume,"Tue, 29 Oct 2019 21:20:47 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/F4cACX1KUdM/index.html,"A black-and-white photo from the early 1900s shows a woman in rural America, her face covered with a sinister white mask. In another, from 1930, a tall figure stands in a field tightly wrapped in what looks like a white sheet and black tape, while a 1938 image shows three people driving to a party in hair-raising skull masks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/F4cACX1KUdM, +Tate Modern to display Andy Warhol's portraits of trans women ,"Tue, 29 Oct 2019 15:03:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/k4i5xxkpcgs/index.html,"A collection of Andy Warhol's New York portraits of transgender women and drag queens will go on display at London's Tate Modern, as part of a new exhibition dedicated to the artist's life and identity.",http://feeds.feedburner.com/~r/rss/edition_world/~4/k4i5xxkpcgs, +This woman faked a pregnancy to try to avoid excess baggage fees,"Tue, 29 Oct 2019 12:01:53 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/SXT8at_euP0/index.html,"Many travelers get creative with packing, whether it's sitting on your suitcase to try and get it to shut, or arriving at the airport wearing three coats.",http://feeds.feedburner.com/~r/rss/edition_world/~4/SXT8at_euP0, +From pagan spirits to Wonder Woman: A history of the Halloween costume,"Tue, 29 Oct 2019 21:20:47 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/F4cACX1KUdM/index.html,"A black-and-white photo from the early 1900s shows a woman in rural America, her face covered with a sinister white mask. In another, from 1930, a tall figure stands in a field tightly wrapped in what looks like a white sheet and black tape, while a 1938 image shows three people driving to a party in hair-raising skull masks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/F4cACX1KUdM, +Tate Modern to display Andy Warhol's portraits of trans women ,"Tue, 29 Oct 2019 15:03:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/k4i5xxkpcgs/index.html,"A collection of Andy Warhol's New York portraits of transgender women and drag queens will go on display at London's Tate Modern, as part of a new exhibition dedicated to the artist's life and identity.",http://feeds.feedburner.com/~r/rss/edition_world/~4/k4i5xxkpcgs, +This woman faked a pregnancy to try to avoid excess baggage fees,"Tue, 29 Oct 2019 12:01:53 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/SXT8at_euP0/index.html,"Many travelers get creative with packing, whether it's sitting on your suitcase to try and get it to shut, or arriving at the airport wearing three coats.",http://feeds.feedburner.com/~r/rss/edition_world/~4/SXT8at_euP0, +From pagan spirits to Wonder Woman: A history of the Halloween costume,"Tue, 29 Oct 2019 21:20:47 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/F4cACX1KUdM/index.html,"A black-and-white photo from the early 1900s shows a woman in rural America, her face covered with a sinister white mask. In another, from 1930, a tall figure stands in a field tightly wrapped in what looks like a white sheet and black tape, while a 1938 image shows three people driving to a party in hair-raising skull masks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/F4cACX1KUdM, +Tate Modern to display Andy Warhol's portraits of trans women ,"Tue, 29 Oct 2019 15:03:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/k4i5xxkpcgs/index.html,"A collection of Andy Warhol's New York portraits of transgender women and drag queens will go on display at London's Tate Modern, as part of a new exhibition dedicated to the artist's life and identity.",http://feeds.feedburner.com/~r/rss/edition_world/~4/k4i5xxkpcgs, +This woman faked a pregnancy to try to avoid excess baggage fees,"Tue, 29 Oct 2019 12:01:53 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/SXT8at_euP0/index.html,"Many travelers get creative with packing, whether it's sitting on your suitcase to try and get it to shut, or arriving at the airport wearing three coats.",http://feeds.feedburner.com/~r/rss/edition_world/~4/SXT8at_euP0, +From pagan spirits to Wonder Woman: A history of the Halloween costume,"Tue, 29 Oct 2019 21:20:47 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/F4cACX1KUdM/index.html,"A black-and-white photo from the early 1900s shows a woman in rural America, her face covered with a sinister white mask. In another, from 1930, a tall figure stands in a field tightly wrapped in what looks like a white sheet and black tape, while a 1938 image shows three people driving to a party in hair-raising skull masks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/F4cACX1KUdM, +Tate Modern to display Andy Warhol's portraits of trans women ,"Tue, 29 Oct 2019 15:03:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/k4i5xxkpcgs/index.html,"A collection of Andy Warhol's New York portraits of transgender women and drag queens will go on display at London's Tate Modern, as part of a new exhibition dedicated to the artist's life and identity.",http://feeds.feedburner.com/~r/rss/edition_world/~4/k4i5xxkpcgs, +This woman faked a pregnancy to try to avoid excess baggage fees,"Tue, 29 Oct 2019 12:01:53 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/SXT8at_euP0/index.html,"Many travelers get creative with packing, whether it's sitting on your suitcase to try and get it to shut, or arriving at the airport wearing three coats.",http://feeds.feedburner.com/~r/rss/edition_world/~4/SXT8at_euP0, +From pagan spirits to Wonder Woman: A history of the Halloween costume,"Tue, 29 Oct 2019 21:20:47 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/F4cACX1KUdM/index.html,"A black-and-white photo from the early 1900s shows a woman in rural America, her face covered with a sinister white mask. In another, from 1930, a tall figure stands in a field tightly wrapped in what looks like a white sheet and black tape, while a 1938 image shows three people driving to a party in hair-raising skull masks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/F4cACX1KUdM, +Tate Modern to display Andy Warhol's portraits of trans women ,"Tue, 29 Oct 2019 15:03:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/k4i5xxkpcgs/index.html,"A collection of Andy Warhol's New York portraits of transgender women and drag queens will go on display at London's Tate Modern, as part of a new exhibition dedicated to the artist's life and identity.",http://feeds.feedburner.com/~r/rss/edition_world/~4/k4i5xxkpcgs, +This woman faked a pregnancy to try to avoid excess baggage fees,"Tue, 29 Oct 2019 12:01:53 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/SXT8at_euP0/index.html,"Many travelers get creative with packing, whether it's sitting on your suitcase to try and get it to shut, or arriving at the airport wearing three coats.",http://feeds.feedburner.com/~r/rss/edition_world/~4/SXT8at_euP0, +From pagan spirits to Wonder Woman: A history of the Halloween costume,"Tue, 29 Oct 2019 21:20:47 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/F4cACX1KUdM/index.html,"A black-and-white photo from the early 1900s shows a woman in rural America, her face covered with a sinister white mask. In another, from 1930, a tall figure stands in a field tightly wrapped in what looks like a white sheet and black tape, while a 1938 image shows three people driving to a party in hair-raising skull masks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/F4cACX1KUdM, +Tate Modern to display Andy Warhol's portraits of trans women ,"Tue, 29 Oct 2019 15:03:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/k4i5xxkpcgs/index.html,"A collection of Andy Warhol's New York portraits of transgender women and drag queens will go on display at London's Tate Modern, as part of a new exhibition dedicated to the artist's life and identity.",http://feeds.feedburner.com/~r/rss/edition_world/~4/k4i5xxkpcgs, +This woman faked a pregnancy to try to avoid excess baggage fees,"Tue, 29 Oct 2019 12:01:53 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/SXT8at_euP0/index.html,"Many travelers get creative with packing, whether it's sitting on your suitcase to try and get it to shut, or arriving at the airport wearing three coats.",http://feeds.feedburner.com/~r/rss/edition_world/~4/SXT8at_euP0, +From pagan spirits to Wonder Woman: A history of the Halloween costume,"Tue, 29 Oct 2019 21:20:47 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/F4cACX1KUdM/index.html,"A black-and-white photo from the early 1900s shows a woman in rural America, her face covered with a sinister white mask. In another, from 1930, a tall figure stands in a field tightly wrapped in what looks like a white sheet and black tape, while a 1938 image shows three people driving to a party in hair-raising skull masks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/F4cACX1KUdM, +Tate Modern to display Andy Warhol's portraits of trans women ,"Tue, 29 Oct 2019 15:03:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/k4i5xxkpcgs/index.html,"A collection of Andy Warhol's New York portraits of transgender women and drag queens will go on display at London's Tate Modern, as part of a new exhibition dedicated to the artist's life and identity.",http://feeds.feedburner.com/~r/rss/edition_world/~4/k4i5xxkpcgs, +This woman faked a pregnancy to try to avoid excess baggage fees,"Tue, 29 Oct 2019 12:01:53 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/SXT8at_euP0/index.html,"Many travelers get creative with packing, whether it's sitting on your suitcase to try and get it to shut, or arriving at the airport wearing three coats.",http://feeds.feedburner.com/~r/rss/edition_world/~4/SXT8at_euP0, +From pagan spirits to Wonder Woman: A history of the Halloween costume,"Tue, 29 Oct 2019 21:20:47 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/F4cACX1KUdM/index.html,"A black-and-white photo from the early 1900s shows a woman in rural America, her face covered with a sinister white mask. In another, from 1930, a tall figure stands in a field tightly wrapped in what looks like a white sheet and black tape, while a 1938 image shows three people driving to a party in hair-raising skull masks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/F4cACX1KUdM, +Tate Modern to display Andy Warhol's portraits of trans women ,"Tue, 29 Oct 2019 15:03:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/k4i5xxkpcgs/index.html,"A collection of Andy Warhol's New York portraits of transgender women and drag queens will go on display at London's Tate Modern, as part of a new exhibition dedicated to the artist's life and identity.",http://feeds.feedburner.com/~r/rss/edition_world/~4/k4i5xxkpcgs, +This woman faked a pregnancy to try to avoid excess baggage fees,"Tue, 29 Oct 2019 12:01:53 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/SXT8at_euP0/index.html,"Many travelers get creative with packing, whether it's sitting on your suitcase to try and get it to shut, or arriving at the airport wearing three coats.",http://feeds.feedburner.com/~r/rss/edition_world/~4/SXT8at_euP0, +From pagan spirits to Wonder Woman: A history of the Halloween costume,"Tue, 29 Oct 2019 21:20:47 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/F4cACX1KUdM/index.html,"A black-and-white photo from the early 1900s shows a woman in rural America, her face covered with a sinister white mask. In another, from 1930, a tall figure stands in a field tightly wrapped in what looks like a white sheet and black tape, while a 1938 image shows three people driving to a party in hair-raising skull masks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/F4cACX1KUdM, +Tate Modern to display Andy Warhol's portraits of trans women ,"Tue, 29 Oct 2019 15:03:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/k4i5xxkpcgs/index.html,"A collection of Andy Warhol's New York portraits of transgender women and drag queens will go on display at London's Tate Modern, as part of a new exhibition dedicated to the artist's life and identity.",http://feeds.feedburner.com/~r/rss/edition_world/~4/k4i5xxkpcgs, +This woman faked a pregnancy to try to avoid excess baggage fees,"Tue, 29 Oct 2019 12:01:53 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/SXT8at_euP0/index.html,"Many travelers get creative with packing, whether it's sitting on your suitcase to try and get it to shut, or arriving at the airport wearing three coats.",http://feeds.feedburner.com/~r/rss/edition_world/~4/SXT8at_euP0, +From pagan spirits to Wonder Woman: A history of the Halloween costume,"Tue, 29 Oct 2019 21:20:47 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/F4cACX1KUdM/index.html,"A black-and-white photo from the early 1900s shows a woman in rural America, her face covered with a sinister white mask. In another, from 1930, a tall figure stands in a field tightly wrapped in what looks like a white sheet and black tape, while a 1938 image shows three people driving to a party in hair-raising skull masks.",http://feeds.feedburner.com/~r/rss/edition_world/~4/F4cACX1KUdM, +Tate Modern to display Andy Warhol's portraits of trans women ,"Tue, 29 Oct 2019 15:03:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/k4i5xxkpcgs/index.html,"A collection of Andy Warhol's New York portraits of transgender women and drag queens will go on display at London's Tate Modern, as part of a new exhibition dedicated to the artist's life and identity.",http://feeds.feedburner.com/~r/rss/edition_world/~4/k4i5xxkpcgs, +This woman faked a pregnancy to try to avoid excess baggage fees,"Tue, 29 Oct 2019 12:01:53 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/SXT8at_euP0/index.html,"Many travelers get creative with packing, whether it's sitting on your suitcase to try and get it to shut, or arriving at the airport wearing three coats.",http://feeds.feedburner.com/~r/rss/edition_world/~4/SXT8at_euP0, +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +Prosecutors Attack Michael Flynn’s ‘Extraordinary Reversal’ on His Guilt,"Tue, 29 Oct 2019 15:47:47 -0400",https://news.yahoo.com/prosecutors-attack-michael-flynn-extraordinary-194747328.html,"(Bloomberg) -- U.S. prosecutors criticized Michael Flynn’s “extraordinary reversal” in proclaiming his innocence despite his admission of guilt before two federal judges.In a court filing on Tuesday, prosecutors denied they had engaged in misconduct, as Flynn’s lawyers assert, and attacked their efforts to paint Flynn as innocent of lying to investigators despite his guilty plea.“The defendant now claims that he is innocent of the criminal charges in this case,” U.S. prosecutors Brandon Van Grack and Jocelyn Ballantine wrote. They said he claimed he was honest during a January 2017 interview “despite having admitted his guilt, under oath.”A lawyer for Flynn, President Donald Trump’s first national security adviser, wants a judge to throw out the case because of prosecutorial misconduct, saying that prosecutors failed to disclose exculpatory evidence before Flynn pleaded guilty in December 2017 to lying to federal agents.The lawyer, Sidney Powell, argued in an Oct. 24 filing that FBI agents created a false summary of their interview with Flynn about his conversations with the Russian ambassador to the U.S. at the time, Sergey Kislyak. Powell claims that Flynn didn’t remember making four or five calls to Kislyak from the Dominican Republic after Trump’s election, yet the summary falsely said Flynn remembered the calls.Powell also says that Van Grack made incomplete and misleading disclosures of the government’s evidence, and that the FBI “knew its entire investigation of Flynn was a pretext.” She asked a judge to order prosecutors to turn over evidence sought by the defense, hold prosecutors in contempt and “dismiss the entire prosecution for outrageous government misconduct.”FBI agents claimed that Flynn made false statements during an interview on Jan. 24, 2017, about multiple topics, yet Powell wrote that her client was “honest with the agents to the best of his recollection at the time, and the agents knew it.”Flynn was Trump’s national security adviser for less than a month before resigning over the criminal investigation against him. Trump later urged the FBI director, James Comey, to shut down the investigation. Comey declined and was fired, prompting the Justice Department to appoint Robert Mueller to investigate the firing as part of a broad inquiry into Russian election interference.Prosecutors said Flynn, a former Army general and head of the Pentagon’s Defense Intelligence Agency, improperly raised several new arguments and claims recently for the first time. They asked U.S. District Judge Emmet Sullivan in Washington how they should respond in light of his decision on Monday to cancel a hearing set for Nov. 7. He’ll now decide the matter based on the filings submitted to him.Powell denied in an email that she intends to withdraw Flynn’s guilty plea. Instead, she cited the federal criminal case against the late Senator Ted Stevens of Alaska, which Sullivan threw out in 2009 after prosecutors withheld exculpatory evidence.In the email, Powell said: “I have long maintained General Flynn’s innocence, and the government knows that, but there is no requirement that I withdraw the plea. It is an issue of procedure. The entire prosecution should be dismissed for egregious government misconduct. For example, Ted Stevens did not have to seek or have a motion for new trial granted to have his entire prosecution dismissed.”Sullivan has set a target sentencing date of Dec. 18 for Flynn.The case is U.S. v. Flynn, 17-cr-232, U.S. District Court, District of Columbia (Washington).READ MORE:Michael Flynn Lawyer Assails U.S. Case Against Ex-Trump AideFlynn Lawyers, Prosecutors Spar Over Readiness for SentenceFlynn’s Risk of Prison Resurfaces as Judge Flags ‘Serious’ CrimeTo contact the reporters on this story: David Voreacos in New York at dvoreacos@bloomberg.net;Andrew Harris in federal court in Washington at aharris16@bloomberg.netTo contact the editors responsible for this story: Jeffrey D Grocott at jgrocott2@bloomberg.net, David S. Joachim, Peter JeffreyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",,Prosecutors Attack Michael Flynn’s ‘Extraordinary Reversal’ on His Guilt +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +Trump Sides With Indicted Oligarch Over His Own Diplomat,"Tue, 29 Oct 2019 19:10:45 -0400",https://news.yahoo.com/trump-sides-indicted-oligarch-over-231045762.html,"Nicholas Kamm/AFP/Getty ImagesPresident Donald Trump boosted a tweet Monday promoting a controversial allegation from an indicted Ukrainian oligarch: that a top U.S. diplomat put fabricated information about the mogul in a diplomatic cable. That diplomat happens to be one of Democrats’ key impeachment witnesses. And that oligarch happens to have a long-standing beef with Joe Biden.Scott Adams, a Washington, D.C., talk radio host, sent out a tweet Monday night about U.S. Ambassador to Ukraine Bill Taylor, who delivered some of the impeachment inquiry’s most damaging testimony yet. The tweet alleged that Taylor lied about Ukrainian natural gas baron Dmytro Firtash in a cable to State Department headquarters in 2008. At issue was a conversation Taylor had with Firtash in Kyiv that December. Taylor wrote in a diplomatic cable (later published by WikiLeaks) that Firtash told him he had “acknowledged ties to Russian organized crime figure [Semion] Seymon Mogilevich,” one of the most notorious accused mobsters on the planet. According to Taylor, Firtash said “he needed Mogilevich's approval to get into business in the first place,” but had not committed any crimes in the course of his business.When WikiLeaks published the cable in 2010, Firtash issued a statement on his website disputing its contents. Firtash, the statement claimed,“has never stated, to anyone, at any time, that he needed or received permission from Mr. Mogilevich to establish any of his businesses.”Earlier this year, Firtash reiterated that defense. Without mentioning any American official by name, he said someone must have fabricated the detail about Mogilevich. Taylor, meanwhile, has defended the State Department’s notes. The Justice Department appears to side with Taylor; its lawyers have argued in court that Firtash has ties to Russian organized crime. The criminal charges he faces, however, don’t involve any such alleged relationships. Instead, the Justice Department charged him in 2014 with helming a conspiracy to bribe Indian government officials. Trump’s retweet, however, offers a presidential thumbs-up to Firtash’s side of the story, and raises a new line of attack on Taylor’s credibility for the president’s allies.  Asked about his sourcing for the allegations against Taylor, Adams told The Daily Beast, “My sources are solid Foggy Bottom people.” He also noted the explanation for the cable that Firtash provided to The Daily Beast earlier this year.This specific defense of Firtash took hold in The Hill over the summer, when columnist John Solomon, whose articles informed Rudy Giuliani’s Biden-Ukraine investigation, published a piece in July claiming that Special Counsel Robert Mueller’s deputy said Firtash’s criminal charges in the U.S. might “go away” if he shared damaging information about Trump with Mueller’s team. Solomon cited “multiple sources with direct knowledge” and contemporaneous memos. Firtash and Solomon share the same lawyers: Victoria Toensing and Joe diGenova. The husband-wife team are veterans of the conservative movement’s most contentious legal battles, with longstanding ties in the Justice Department and Trump administration. Ukrainian Oligarch Seethed About ‘Overlord’ Biden for YearsRead more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/img4cdxZ1ieXCNFd4Mc9LQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/587ec0455ae1dd540b5137a1aa5a82f6,Trump Sides With Indicted Oligarch Over His Own Diplomat +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +Prosecutors Attack Michael Flynn’s ‘Extraordinary Reversal’ on His Guilt,"Tue, 29 Oct 2019 15:47:47 -0400",https://news.yahoo.com/prosecutors-attack-michael-flynn-extraordinary-194747328.html,"(Bloomberg) -- U.S. prosecutors criticized Michael Flynn’s “extraordinary reversal” in proclaiming his innocence despite his admission of guilt before two federal judges.In a court filing on Tuesday, prosecutors denied they had engaged in misconduct, as Flynn’s lawyers assert, and attacked their efforts to paint Flynn as innocent of lying to investigators despite his guilty plea.“The defendant now claims that he is innocent of the criminal charges in this case,” U.S. prosecutors Brandon Van Grack and Jocelyn Ballantine wrote. They said he claimed he was honest during a January 2017 interview “despite having admitted his guilt, under oath.”A lawyer for Flynn, President Donald Trump’s first national security adviser, wants a judge to throw out the case because of prosecutorial misconduct, saying that prosecutors failed to disclose exculpatory evidence before Flynn pleaded guilty in December 2017 to lying to federal agents.The lawyer, Sidney Powell, argued in an Oct. 24 filing that FBI agents created a false summary of their interview with Flynn about his conversations with the Russian ambassador to the U.S. at the time, Sergey Kislyak. Powell claims that Flynn didn’t remember making four or five calls to Kislyak from the Dominican Republic after Trump’s election, yet the summary falsely said Flynn remembered the calls.Powell also says that Van Grack made incomplete and misleading disclosures of the government’s evidence, and that the FBI “knew its entire investigation of Flynn was a pretext.” She asked a judge to order prosecutors to turn over evidence sought by the defense, hold prosecutors in contempt and “dismiss the entire prosecution for outrageous government misconduct.”FBI agents claimed that Flynn made false statements during an interview on Jan. 24, 2017, about multiple topics, yet Powell wrote that her client was “honest with the agents to the best of his recollection at the time, and the agents knew it.”Flynn was Trump’s national security adviser for less than a month before resigning over the criminal investigation against him. Trump later urged the FBI director, James Comey, to shut down the investigation. Comey declined and was fired, prompting the Justice Department to appoint Robert Mueller to investigate the firing as part of a broad inquiry into Russian election interference.Prosecutors said Flynn, a former Army general and head of the Pentagon’s Defense Intelligence Agency, improperly raised several new arguments and claims recently for the first time. They asked U.S. District Judge Emmet Sullivan in Washington how they should respond in light of his decision on Monday to cancel a hearing set for Nov. 7. He’ll now decide the matter based on the filings submitted to him.Powell denied in an email that she intends to withdraw Flynn’s guilty plea. Instead, she cited the federal criminal case against the late Senator Ted Stevens of Alaska, which Sullivan threw out in 2009 after prosecutors withheld exculpatory evidence.In the email, Powell said: “I have long maintained General Flynn’s innocence, and the government knows that, but there is no requirement that I withdraw the plea. It is an issue of procedure. The entire prosecution should be dismissed for egregious government misconduct. For example, Ted Stevens did not have to seek or have a motion for new trial granted to have his entire prosecution dismissed.”Sullivan has set a target sentencing date of Dec. 18 for Flynn.The case is U.S. v. Flynn, 17-cr-232, U.S. District Court, District of Columbia (Washington).READ MORE:Michael Flynn Lawyer Assails U.S. Case Against Ex-Trump AideFlynn Lawyers, Prosecutors Spar Over Readiness for SentenceFlynn’s Risk of Prison Resurfaces as Judge Flags ‘Serious’ CrimeTo contact the reporters on this story: David Voreacos in New York at dvoreacos@bloomberg.net;Andrew Harris in federal court in Washington at aharris16@bloomberg.netTo contact the editors responsible for this story: Jeffrey D Grocott at jgrocott2@bloomberg.net, David S. Joachim, Peter JeffreyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",,Prosecutors Attack Michael Flynn’s ‘Extraordinary Reversal’ on His Guilt +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +Trump Sides With Indicted Oligarch Over His Own Diplomat,"Tue, 29 Oct 2019 19:10:45 -0400",https://news.yahoo.com/trump-sides-indicted-oligarch-over-231045762.html,"Nicholas Kamm/AFP/Getty ImagesPresident Donald Trump boosted a tweet Monday promoting a controversial allegation from an indicted Ukrainian oligarch: that a top U.S. diplomat put fabricated information about the mogul in a diplomatic cable. That diplomat happens to be one of Democrats’ key impeachment witnesses. And that oligarch happens to have a long-standing beef with Joe Biden.Scott Adams, a Washington, D.C., talk radio host, sent out a tweet Monday night about U.S. Ambassador to Ukraine Bill Taylor, who delivered some of the impeachment inquiry’s most damaging testimony yet. The tweet alleged that Taylor lied about Ukrainian natural gas baron Dmytro Firtash in a cable to State Department headquarters in 2008. At issue was a conversation Taylor had with Firtash in Kyiv that December. Taylor wrote in a diplomatic cable (later published by WikiLeaks) that Firtash told him he had “acknowledged ties to Russian organized crime figure [Semion] Seymon Mogilevich,” one of the most notorious accused mobsters on the planet. According to Taylor, Firtash said “he needed Mogilevich's approval to get into business in the first place,” but had not committed any crimes in the course of his business.When WikiLeaks published the cable in 2010, Firtash issued a statement on his website disputing its contents. Firtash, the statement claimed,“has never stated, to anyone, at any time, that he needed or received permission from Mr. Mogilevich to establish any of his businesses.”Earlier this year, Firtash reiterated that defense. Without mentioning any American official by name, he said someone must have fabricated the detail about Mogilevich. Taylor, meanwhile, has defended the State Department’s notes. The Justice Department appears to side with Taylor; its lawyers have argued in court that Firtash has ties to Russian organized crime. The criminal charges he faces, however, don’t involve any such alleged relationships. Instead, the Justice Department charged him in 2014 with helming a conspiracy to bribe Indian government officials. Trump’s retweet, however, offers a presidential thumbs-up to Firtash’s side of the story, and raises a new line of attack on Taylor’s credibility for the president’s allies.  Asked about his sourcing for the allegations against Taylor, Adams told The Daily Beast, “My sources are solid Foggy Bottom people.” He also noted the explanation for the cable that Firtash provided to The Daily Beast earlier this year.This specific defense of Firtash took hold in The Hill over the summer, when columnist John Solomon, whose articles informed Rudy Giuliani’s Biden-Ukraine investigation, published a piece in July claiming that Special Counsel Robert Mueller’s deputy said Firtash’s criminal charges in the U.S. might “go away” if he shared damaging information about Trump with Mueller’s team. Solomon cited “multiple sources with direct knowledge” and contemporaneous memos. Firtash and Solomon share the same lawyers: Victoria Toensing and Joe diGenova. The husband-wife team are veterans of the conservative movement’s most contentious legal battles, with longstanding ties in the Justice Department and Trump administration. Ukrainian Oligarch Seethed About ‘Overlord’ Biden for YearsRead more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/img4cdxZ1ieXCNFd4Mc9LQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/587ec0455ae1dd540b5137a1aa5a82f6,Trump Sides With Indicted Oligarch Over His Own Diplomat +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +Prosecutors Attack Michael Flynn’s ‘Extraordinary Reversal’ on His Guilt,"Tue, 29 Oct 2019 15:47:47 -0400",https://news.yahoo.com/prosecutors-attack-michael-flynn-extraordinary-194747328.html,"(Bloomberg) -- U.S. prosecutors criticized Michael Flynn’s “extraordinary reversal” in proclaiming his innocence despite his admission of guilt before two federal judges.In a court filing on Tuesday, prosecutors denied they had engaged in misconduct, as Flynn’s lawyers assert, and attacked their efforts to paint Flynn as innocent of lying to investigators despite his guilty plea.“The defendant now claims that he is innocent of the criminal charges in this case,” U.S. prosecutors Brandon Van Grack and Jocelyn Ballantine wrote. They said he claimed he was honest during a January 2017 interview “despite having admitted his guilt, under oath.”A lawyer for Flynn, President Donald Trump’s first national security adviser, wants a judge to throw out the case because of prosecutorial misconduct, saying that prosecutors failed to disclose exculpatory evidence before Flynn pleaded guilty in December 2017 to lying to federal agents.The lawyer, Sidney Powell, argued in an Oct. 24 filing that FBI agents created a false summary of their interview with Flynn about his conversations with the Russian ambassador to the U.S. at the time, Sergey Kislyak. Powell claims that Flynn didn’t remember making four or five calls to Kislyak from the Dominican Republic after Trump’s election, yet the summary falsely said Flynn remembered the calls.Powell also says that Van Grack made incomplete and misleading disclosures of the government’s evidence, and that the FBI “knew its entire investigation of Flynn was a pretext.” She asked a judge to order prosecutors to turn over evidence sought by the defense, hold prosecutors in contempt and “dismiss the entire prosecution for outrageous government misconduct.”FBI agents claimed that Flynn made false statements during an interview on Jan. 24, 2017, about multiple topics, yet Powell wrote that her client was “honest with the agents to the best of his recollection at the time, and the agents knew it.”Flynn was Trump’s national security adviser for less than a month before resigning over the criminal investigation against him. Trump later urged the FBI director, James Comey, to shut down the investigation. Comey declined and was fired, prompting the Justice Department to appoint Robert Mueller to investigate the firing as part of a broad inquiry into Russian election interference.Prosecutors said Flynn, a former Army general and head of the Pentagon’s Defense Intelligence Agency, improperly raised several new arguments and claims recently for the first time. They asked U.S. District Judge Emmet Sullivan in Washington how they should respond in light of his decision on Monday to cancel a hearing set for Nov. 7. He’ll now decide the matter based on the filings submitted to him.Powell denied in an email that she intends to withdraw Flynn’s guilty plea. Instead, she cited the federal criminal case against the late Senator Ted Stevens of Alaska, which Sullivan threw out in 2009 after prosecutors withheld exculpatory evidence.In the email, Powell said: “I have long maintained General Flynn’s innocence, and the government knows that, but there is no requirement that I withdraw the plea. It is an issue of procedure. The entire prosecution should be dismissed for egregious government misconduct. For example, Ted Stevens did not have to seek or have a motion for new trial granted to have his entire prosecution dismissed.”Sullivan has set a target sentencing date of Dec. 18 for Flynn.The case is U.S. v. Flynn, 17-cr-232, U.S. District Court, District of Columbia (Washington).READ MORE:Michael Flynn Lawyer Assails U.S. Case Against Ex-Trump AideFlynn Lawyers, Prosecutors Spar Over Readiness for SentenceFlynn’s Risk of Prison Resurfaces as Judge Flags ‘Serious’ CrimeTo contact the reporters on this story: David Voreacos in New York at dvoreacos@bloomberg.net;Andrew Harris in federal court in Washington at aharris16@bloomberg.netTo contact the editors responsible for this story: Jeffrey D Grocott at jgrocott2@bloomberg.net, David S. Joachim, Peter JeffreyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",,Prosecutors Attack Michael Flynn’s ‘Extraordinary Reversal’ on His Guilt +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +Trump Sides With Indicted Oligarch Over His Own Diplomat,"Tue, 29 Oct 2019 19:10:45 -0400",https://news.yahoo.com/trump-sides-indicted-oligarch-over-231045762.html,"Nicholas Kamm/AFP/Getty ImagesPresident Donald Trump boosted a tweet Monday promoting a controversial allegation from an indicted Ukrainian oligarch: that a top U.S. diplomat put fabricated information about the mogul in a diplomatic cable. That diplomat happens to be one of Democrats’ key impeachment witnesses. And that oligarch happens to have a long-standing beef with Joe Biden.Scott Adams, a Washington, D.C., talk radio host, sent out a tweet Monday night about U.S. Ambassador to Ukraine Bill Taylor, who delivered some of the impeachment inquiry’s most damaging testimony yet. The tweet alleged that Taylor lied about Ukrainian natural gas baron Dmytro Firtash in a cable to State Department headquarters in 2008. At issue was a conversation Taylor had with Firtash in Kyiv that December. Taylor wrote in a diplomatic cable (later published by WikiLeaks) that Firtash told him he had “acknowledged ties to Russian organized crime figure [Semion] Seymon Mogilevich,” one of the most notorious accused mobsters on the planet. According to Taylor, Firtash said “he needed Mogilevich's approval to get into business in the first place,” but had not committed any crimes in the course of his business.When WikiLeaks published the cable in 2010, Firtash issued a statement on his website disputing its contents. Firtash, the statement claimed,“has never stated, to anyone, at any time, that he needed or received permission from Mr. Mogilevich to establish any of his businesses.”Earlier this year, Firtash reiterated that defense. Without mentioning any American official by name, he said someone must have fabricated the detail about Mogilevich. Taylor, meanwhile, has defended the State Department’s notes. The Justice Department appears to side with Taylor; its lawyers have argued in court that Firtash has ties to Russian organized crime. The criminal charges he faces, however, don’t involve any such alleged relationships. Instead, the Justice Department charged him in 2014 with helming a conspiracy to bribe Indian government officials. Trump’s retweet, however, offers a presidential thumbs-up to Firtash’s side of the story, and raises a new line of attack on Taylor’s credibility for the president’s allies.  Asked about his sourcing for the allegations against Taylor, Adams told The Daily Beast, “My sources are solid Foggy Bottom people.” He also noted the explanation for the cable that Firtash provided to The Daily Beast earlier this year.This specific defense of Firtash took hold in The Hill over the summer, when columnist John Solomon, whose articles informed Rudy Giuliani’s Biden-Ukraine investigation, published a piece in July claiming that Special Counsel Robert Mueller’s deputy said Firtash’s criminal charges in the U.S. might “go away” if he shared damaging information about Trump with Mueller’s team. Solomon cited “multiple sources with direct knowledge” and contemporaneous memos. Firtash and Solomon share the same lawyers: Victoria Toensing and Joe diGenova. The husband-wife team are veterans of the conservative movement’s most contentious legal battles, with longstanding ties in the Justice Department and Trump administration. Ukrainian Oligarch Seethed About ‘Overlord’ Biden for YearsRead more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/img4cdxZ1ieXCNFd4Mc9LQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/587ec0455ae1dd540b5137a1aa5a82f6,Trump Sides With Indicted Oligarch Over His Own Diplomat +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +What Baghdadi’s Death Means for al Qaeda—and Why It Matters,"Tue, 29 Oct 2019 13:14:08 -0400",https://news.yahoo.com/baghdadi-death-means-al-qaeda-171408420.html,"SITE Intelligence GroupWith ISIS leader Abu Bakr al-Baghdadi killed one day and the group’s official spokesman Abu Hassan al-Muhajir the next, there’s a giant hole in the pseudo-Caliphate structure of the so-called Islamic State. The group must now, by its strict religious tenets, find a new (supposed) descendant of the Prophet Muhammed to fill the role of Caliph. But the deaths of those two are equally consequential for al-Qaeda, the bitter rival of ISIS for leadership of global jihad. Al-Qaeda has spent the last six years branding the Caliphate as illegitimate, too extreme, and ultimately harmful. When ISIS declared the establishment of its so-called Caliphate spanning territory in Syria and Iraq in 2014, al-Qaeda and its affiliates unanimously rejected it. To this day, al-Qaeda leader Ayman al-Zawahiri’s speeches rarely come without some critique of the “epidemic” put forth by ISIS.Trump Officials Had No Clue Where He Got ‘Whimpering’ Detail in His Baghdadi Raid AccountOddly, Baghdadi was killed in Idlib, a haven of al-Qaeda-linked fighters and Hayat Tahrir al-Sham, a Syrian Islamist faction led by Abu Muhammad al-Julani, a former al-Qaeda comrade who had become one of Baghdadi's most bitter foes. There has been some speculation Baghdadi was not just hiding out but trying to recruit from the ranks of his enemies.Neither al-Qaeda Central nor its affiliates have commented on Baghdadi’s death as yet, but within hours after the news broke, al-Qaeda ideologues and supporters already were celebrating the event and discussing what it will mean for the future of jihad. In chat groups online, al-Qaeda supporters voiced resentment after years of bitter strife with the group, and the scale of these responses illustrates just how much of a big deal and opportunity they see with Baghdadi’s death.“Based on his orders, thousands of the mujahideen were killed,” one post read.“How thrilled were they every time leaders from al-Qaeda were martyred?” read another.Some wished Baghdadi the ultimate condemnation:  “May Allah send him to Hell.”Messages by others, however, particularly al-Qaeda-linked ideologues, balanced expressions of justice for the jihadi movement with restraint, making sure not to celebrate excessively the result of an operation by the United States.The tactful enthusiasm is calculated. Many ISIS fighters, much of its military infrastructure, many media officials, and supporters were pulled from al-Qaeda. Now, with ISIS’ “Caliph” dead and that Caliphate itself destroyed, al-Qaeda has been given its biggest opportunity yet to bring many of them back under its tent. SITE Intelligence GroupPerhaps the most profound instance of this outreach was a lengthy essay by “Adel Amin,” the pen name of a prominent ideologue linked to the Shabaab al-Mujahideen Movement, al-Qaeda’s branch in Somalia and most powerful affiliate. The message, disseminated widely across al-Qaeda-supporting channels and chat groups (many of which are also frequented by pro-ISIS users), demanded that ISIS supporters “return to the road of righteousness” after the Islamic State, in all of its excessive aggression and delusions of destiny, has proven itself a failure. Amin wrote:The situation here is not one in which to gloat. It is a situation for reminding and calling on those who remained in the ranks of al-Baghdadi, to reconsider
 Indeed, we witnessed its back being broken, its leaders getting killed, and its banner falling, and we hope that we can witness whoever remains from its soldiers returning to righteousness.Statements by other ideologues and supporters voiced the same points. A statement by Sirajuddin Zurayqat, a former religious official in the now-defunct al-Qaeda-linked Brigades of Abdullah Azzam in Lebanon, urged: “Now [Baghdadi] is dead and there is not one from the Ummah grieving over him or giving condolences... Therefore, those who were deceived by him should reconsider before it is too late!”These messages echo the same calls heard from Zawahiri and al-Qaeda affiliates over the years calling on ISIS fighters to “repent” and leave the group. Yet despite these new circumstances, ISIS supporters will not easily be moved. Since the summer of 2016, the group’s followers have seen the loss of the major cities Mosul in Iraq and Raqqah in Syria as well as the death of revered ISIS figures like Omar Shishani, Abu Muhammad al-‘Adnani, and others. With the latest setbacks to its leadership, ISIS-linked accounts online already have poured out calls to stay steadfast and have even used Baghdadi’s death as a rallying point to carry out new attacks. Reinforcing this undeterred support is an ISIS military and media machine that has shown no sign of stopping in the last two days. While ISIS has not yet officially acknowledged the death of Baghdadi, it has continued reporting on day-to-day military activity across Iraq, Syria, and the Afghanistan-Pakistan region.ISIS' Yemen Province - AQAP Prisoners as Featured in the video “He Who Starts is More Unjust”SITE Intelligence GroupFurthermore, while al-Qaeda affiliates like the Shabaab serve as powerful representatives of the organization, al-Qaeda Central is weaker than it has ever been. These days, al-Qaeda Central’s role is largely symbolic, limited to leadership messages and other content while steering the big-picture ethos of the organization. Its attempts to bolster its image, already heavily weighed down by a less-than-charismatic leader in Zawahiri, were upended upon the death of Hamza bin Laden, the son of Osama, whom al-Qaeda likely was grooming for an eventual leadership position. These variables considered, al-Qaeda may not be the appealing alternative for jihadists that its supporters want it to seem. So, while some fighters might very well join the ranks of al-Qaeda affiliates in their region, we shouldn't expect to see any drastic migration from ISIS’ ranks into its rival’s.Despite any notions of good-riddance that al-Qaeda and its supporters attach to Baghdadi’s death, and for whatever number of defectors it may win over as a result of Baghdadi’s demise, ISIS is not going anywhere. The barriers between these terrorist organizations have only hardened over the years, fueling deadly clashes and jihadi PR wars. Baghdadi was not the sole barrier keeping ISIS members from joining al-Qaeda, and his death is unlikely to diminish existing disputes.How U.S. Commandos IDed a ‘Mutilated’ Baghdadi So QuicklyRead more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/QcYdXaN_8T4S1wGgb4g_rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/61b52f4bd864d7492e1a1855d59b3e16,What Baghdadi’s Death Means for al Qaeda—and Why It Matters +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +What Baghdadi’s Death Means for al Qaeda—and Why It Matters,"Tue, 29 Oct 2019 13:14:08 -0400",https://news.yahoo.com/baghdadi-death-means-al-qaeda-171408420.html,"SITE Intelligence GroupWith ISIS leader Abu Bakr al-Baghdadi killed one day and the group’s official spokesman Abu Hassan al-Muhajir the next, there’s a giant hole in the pseudo-Caliphate structure of the so-called Islamic State. The group must now, by its strict religious tenets, find a new (supposed) descendant of the Prophet Muhammed to fill the role of Caliph. But the deaths of those two are equally consequential for al-Qaeda, the bitter rival of ISIS for leadership of global jihad. Al-Qaeda has spent the last six years branding the Caliphate as illegitimate, too extreme, and ultimately harmful. When ISIS declared the establishment of its so-called Caliphate spanning territory in Syria and Iraq in 2014, al-Qaeda and its affiliates unanimously rejected it. To this day, al-Qaeda leader Ayman al-Zawahiri’s speeches rarely come without some critique of the “epidemic” put forth by ISIS.Trump Officials Had No Clue Where He Got ‘Whimpering’ Detail in His Baghdadi Raid AccountOddly, Baghdadi was killed in Idlib, a haven of al-Qaeda-linked fighters and Hayat Tahrir al-Sham, a Syrian Islamist faction led by Abu Muhammad al-Julani, a former al-Qaeda comrade who had become one of Baghdadi's most bitter foes. There has been some speculation Baghdadi was not just hiding out but trying to recruit from the ranks of his enemies.Neither al-Qaeda Central nor its affiliates have commented on Baghdadi’s death as yet, but within hours after the news broke, al-Qaeda ideologues and supporters already were celebrating the event and discussing what it will mean for the future of jihad. In chat groups online, al-Qaeda supporters voiced resentment after years of bitter strife with the group, and the scale of these responses illustrates just how much of a big deal and opportunity they see with Baghdadi’s death.“Based on his orders, thousands of the mujahideen were killed,” one post read.“How thrilled were they every time leaders from al-Qaeda were martyred?” read another.Some wished Baghdadi the ultimate condemnation:  “May Allah send him to Hell.”Messages by others, however, particularly al-Qaeda-linked ideologues, balanced expressions of justice for the jihadi movement with restraint, making sure not to celebrate excessively the result of an operation by the United States.The tactful enthusiasm is calculated. Many ISIS fighters, much of its military infrastructure, many media officials, and supporters were pulled from al-Qaeda. Now, with ISIS’ “Caliph” dead and that Caliphate itself destroyed, al-Qaeda has been given its biggest opportunity yet to bring many of them back under its tent. SITE Intelligence GroupPerhaps the most profound instance of this outreach was a lengthy essay by “Adel Amin,” the pen name of a prominent ideologue linked to the Shabaab al-Mujahideen Movement, al-Qaeda’s branch in Somalia and most powerful affiliate. The message, disseminated widely across al-Qaeda-supporting channels and chat groups (many of which are also frequented by pro-ISIS users), demanded that ISIS supporters “return to the road of righteousness” after the Islamic State, in all of its excessive aggression and delusions of destiny, has proven itself a failure. Amin wrote:The situation here is not one in which to gloat. It is a situation for reminding and calling on those who remained in the ranks of al-Baghdadi, to reconsider
 Indeed, we witnessed its back being broken, its leaders getting killed, and its banner falling, and we hope that we can witness whoever remains from its soldiers returning to righteousness.Statements by other ideologues and supporters voiced the same points. A statement by Sirajuddin Zurayqat, a former religious official in the now-defunct al-Qaeda-linked Brigades of Abdullah Azzam in Lebanon, urged: “Now [Baghdadi] is dead and there is not one from the Ummah grieving over him or giving condolences... Therefore, those who were deceived by him should reconsider before it is too late!”These messages echo the same calls heard from Zawahiri and al-Qaeda affiliates over the years calling on ISIS fighters to “repent” and leave the group. Yet despite these new circumstances, ISIS supporters will not easily be moved. Since the summer of 2016, the group’s followers have seen the loss of the major cities Mosul in Iraq and Raqqah in Syria as well as the death of revered ISIS figures like Omar Shishani, Abu Muhammad al-‘Adnani, and others. With the latest setbacks to its leadership, ISIS-linked accounts online already have poured out calls to stay steadfast and have even used Baghdadi’s death as a rallying point to carry out new attacks. Reinforcing this undeterred support is an ISIS military and media machine that has shown no sign of stopping in the last two days. While ISIS has not yet officially acknowledged the death of Baghdadi, it has continued reporting on day-to-day military activity across Iraq, Syria, and the Afghanistan-Pakistan region.ISIS' Yemen Province - AQAP Prisoners as Featured in the video “He Who Starts is More Unjust”SITE Intelligence GroupFurthermore, while al-Qaeda affiliates like the Shabaab serve as powerful representatives of the organization, al-Qaeda Central is weaker than it has ever been. These days, al-Qaeda Central’s role is largely symbolic, limited to leadership messages and other content while steering the big-picture ethos of the organization. Its attempts to bolster its image, already heavily weighed down by a less-than-charismatic leader in Zawahiri, were upended upon the death of Hamza bin Laden, the son of Osama, whom al-Qaeda likely was grooming for an eventual leadership position. These variables considered, al-Qaeda may not be the appealing alternative for jihadists that its supporters want it to seem. So, while some fighters might very well join the ranks of al-Qaeda affiliates in their region, we shouldn't expect to see any drastic migration from ISIS’ ranks into its rival’s.Despite any notions of good-riddance that al-Qaeda and its supporters attach to Baghdadi’s death, and for whatever number of defectors it may win over as a result of Baghdadi’s demise, ISIS is not going anywhere. The barriers between these terrorist organizations have only hardened over the years, fueling deadly clashes and jihadi PR wars. Baghdadi was not the sole barrier keeping ISIS members from joining al-Qaeda, and his death is unlikely to diminish existing disputes.How U.S. Commandos IDed a ‘Mutilated’ Baghdadi So QuicklyRead more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/QcYdXaN_8T4S1wGgb4g_rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/61b52f4bd864d7492e1a1855d59b3e16,What Baghdadi’s Death Means for al Qaeda—and Why It Matters +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +Donald and Melania Trump Putting Candy Bar on Head of White House Trick-or-Treater Dressed As Minion Has Become a Flash Point,"Tue, 29 Oct 2019 14:30:42 -0400",https://news.yahoo.com/trump-melania-putting-candy-bar-183042719.html,The encounter took place during this year's White House Halloween celebration,http://l1.yimg.com/uu/api/res/1.2/71IXC9yvsI.5Cv8L2hKMJw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/f07bc8a1f2af65860f0f821d68018c02,Donald and Melania Trump Putting Candy Bar on Head of White House Trick-or-Treater Dressed As Minion Has Become a Flash Point +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +Donald and Melania Trump Putting Candy Bar on Head of White House Trick-or-Treater Dressed As Minion Has Become a Flash Point,"Tue, 29 Oct 2019 14:30:42 -0400",https://news.yahoo.com/trump-melania-putting-candy-bar-183042719.html,The encounter took place during this year's White House Halloween celebration,http://l1.yimg.com/uu/api/res/1.2/71IXC9yvsI.5Cv8L2hKMJw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/f07bc8a1f2af65860f0f821d68018c02,Donald and Melania Trump Putting Candy Bar on Head of White House Trick-or-Treater Dressed As Minion Has Become a Flash Point +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +Bernie Sanders says he doesn't intend to release a funding plan for Medicare for All any time soon,"Tue, 29 Oct 2019 15:51:13 -0400",https://news.yahoo.com/bernie-sanders-says-doesnt-intend-195113050.html,"Sanders said in a CNBC interview that ""I don't think I have to"" release details specifying how universal healthcare coverage would be paid for.",http://l1.yimg.com/uu/api/res/1.2/.2orRAETSkwQQaeN6_h7LQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/e21d07626ec59c81d309d983d53a0df4,Bernie Sanders says he doesn't intend to release a funding plan for Medicare for All any time soon +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +Donald and Melania Trump Putting Candy Bar on Head of White House Trick-or-Treater Dressed As Minion Has Become a Flash Point,"Tue, 29 Oct 2019 14:30:42 -0400",https://news.yahoo.com/trump-melania-putting-candy-bar-183042719.html,The encounter took place during this year's White House Halloween celebration,http://l1.yimg.com/uu/api/res/1.2/71IXC9yvsI.5Cv8L2hKMJw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/f07bc8a1f2af65860f0f821d68018c02,Donald and Melania Trump Putting Candy Bar on Head of White House Trick-or-Treater Dressed As Minion Has Become a Flash Point +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +Donald and Melania Trump Putting Candy Bar on Head of White House Trick-or-Treater Dressed As Minion Has Become a Flash Point,"Tue, 29 Oct 2019 14:30:42 -0400",https://news.yahoo.com/trump-melania-putting-candy-bar-183042719.html,The encounter took place during this year's White House Halloween celebration,http://l1.yimg.com/uu/api/res/1.2/71IXC9yvsI.5Cv8L2hKMJw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/f07bc8a1f2af65860f0f821d68018c02,Donald and Melania Trump Putting Candy Bar on Head of White House Trick-or-Treater Dressed As Minion Has Become a Flash Point +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +What Baghdadi’s Death Means for al Qaeda—and Why It Matters,"Tue, 29 Oct 2019 13:14:08 -0400",https://news.yahoo.com/baghdadi-death-means-al-qaeda-171408420.html,"SITE Intelligence GroupWith ISIS leader Abu Bakr al-Baghdadi killed one day and the group’s official spokesman Abu Hassan al-Muhajir the next, there’s a giant hole in the pseudo-Caliphate structure of the so-called Islamic State. The group must now, by its strict religious tenets, find a new (supposed) descendant of the Prophet Muhammed to fill the role of Caliph. But the deaths of those two are equally consequential for al-Qaeda, the bitter rival of ISIS for leadership of global jihad. Al-Qaeda has spent the last six years branding the Caliphate as illegitimate, too extreme, and ultimately harmful. When ISIS declared the establishment of its so-called Caliphate spanning territory in Syria and Iraq in 2014, al-Qaeda and its affiliates unanimously rejected it. To this day, al-Qaeda leader Ayman al-Zawahiri’s speeches rarely come without some critique of the “epidemic” put forth by ISIS.Trump Officials Had No Clue Where He Got ‘Whimpering’ Detail in His Baghdadi Raid AccountOddly, Baghdadi was killed in Idlib, a haven of al-Qaeda-linked fighters and Hayat Tahrir al-Sham, a Syrian Islamist faction led by Abu Muhammad al-Julani, a former al-Qaeda comrade who had become one of Baghdadi's most bitter foes. There has been some speculation Baghdadi was not just hiding out but trying to recruit from the ranks of his enemies.Neither al-Qaeda Central nor its affiliates have commented on Baghdadi’s death as yet, but within hours after the news broke, al-Qaeda ideologues and supporters already were celebrating the event and discussing what it will mean for the future of jihad. In chat groups online, al-Qaeda supporters voiced resentment after years of bitter strife with the group, and the scale of these responses illustrates just how much of a big deal and opportunity they see with Baghdadi’s death.“Based on his orders, thousands of the mujahideen were killed,” one post read.“How thrilled were they every time leaders from al-Qaeda were martyred?” read another.Some wished Baghdadi the ultimate condemnation:  “May Allah send him to Hell.”Messages by others, however, particularly al-Qaeda-linked ideologues, balanced expressions of justice for the jihadi movement with restraint, making sure not to celebrate excessively the result of an operation by the United States.The tactful enthusiasm is calculated. Many ISIS fighters, much of its military infrastructure, many media officials, and supporters were pulled from al-Qaeda. Now, with ISIS’ “Caliph” dead and that Caliphate itself destroyed, al-Qaeda has been given its biggest opportunity yet to bring many of them back under its tent. SITE Intelligence GroupPerhaps the most profound instance of this outreach was a lengthy essay by “Adel Amin,” the pen name of a prominent ideologue linked to the Shabaab al-Mujahideen Movement, al-Qaeda’s branch in Somalia and most powerful affiliate. The message, disseminated widely across al-Qaeda-supporting channels and chat groups (many of which are also frequented by pro-ISIS users), demanded that ISIS supporters “return to the road of righteousness” after the Islamic State, in all of its excessive aggression and delusions of destiny, has proven itself a failure. Amin wrote:The situation here is not one in which to gloat. It is a situation for reminding and calling on those who remained in the ranks of al-Baghdadi, to reconsider
 Indeed, we witnessed its back being broken, its leaders getting killed, and its banner falling, and we hope that we can witness whoever remains from its soldiers returning to righteousness.Statements by other ideologues and supporters voiced the same points. A statement by Sirajuddin Zurayqat, a former religious official in the now-defunct al-Qaeda-linked Brigades of Abdullah Azzam in Lebanon, urged: “Now [Baghdadi] is dead and there is not one from the Ummah grieving over him or giving condolences... Therefore, those who were deceived by him should reconsider before it is too late!”These messages echo the same calls heard from Zawahiri and al-Qaeda affiliates over the years calling on ISIS fighters to “repent” and leave the group. Yet despite these new circumstances, ISIS supporters will not easily be moved. Since the summer of 2016, the group’s followers have seen the loss of the major cities Mosul in Iraq and Raqqah in Syria as well as the death of revered ISIS figures like Omar Shishani, Abu Muhammad al-‘Adnani, and others. With the latest setbacks to its leadership, ISIS-linked accounts online already have poured out calls to stay steadfast and have even used Baghdadi’s death as a rallying point to carry out new attacks. Reinforcing this undeterred support is an ISIS military and media machine that has shown no sign of stopping in the last two days. While ISIS has not yet officially acknowledged the death of Baghdadi, it has continued reporting on day-to-day military activity across Iraq, Syria, and the Afghanistan-Pakistan region.ISIS' Yemen Province - AQAP Prisoners as Featured in the video “He Who Starts is More Unjust”SITE Intelligence GroupFurthermore, while al-Qaeda affiliates like the Shabaab serve as powerful representatives of the organization, al-Qaeda Central is weaker than it has ever been. These days, al-Qaeda Central’s role is largely symbolic, limited to leadership messages and other content while steering the big-picture ethos of the organization. Its attempts to bolster its image, already heavily weighed down by a less-than-charismatic leader in Zawahiri, were upended upon the death of Hamza bin Laden, the son of Osama, whom al-Qaeda likely was grooming for an eventual leadership position. These variables considered, al-Qaeda may not be the appealing alternative for jihadists that its supporters want it to seem. So, while some fighters might very well join the ranks of al-Qaeda affiliates in their region, we shouldn't expect to see any drastic migration from ISIS’ ranks into its rival’s.Despite any notions of good-riddance that al-Qaeda and its supporters attach to Baghdadi’s death, and for whatever number of defectors it may win over as a result of Baghdadi’s demise, ISIS is not going anywhere. The barriers between these terrorist organizations have only hardened over the years, fueling deadly clashes and jihadi PR wars. Baghdadi was not the sole barrier keeping ISIS members from joining al-Qaeda, and his death is unlikely to diminish existing disputes.How U.S. Commandos IDed a ‘Mutilated’ Baghdadi So QuicklyRead more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/QcYdXaN_8T4S1wGgb4g_rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/61b52f4bd864d7492e1a1855d59b3e16,What Baghdadi’s Death Means for al Qaeda—and Why It Matters +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +Scalise Claims Schiff Has Directed Witnesses Not to Answer Republicans’ Questions During ‘Soviet Style’ Impeachment Hearings,"Tue, 29 Oct 2019 17:24:21 -0400",https://news.yahoo.com/scalise-claims-schiff-directed-witnesses-211926210.html,"House Minority Whip Steve Scalise (R., La.) lambasted House Intelligence Chairman Adam Schiff for allegedly shutting down questions from House Republicans in an impeachment inquiry hearing, calling it “a Soviet-style process.”“That might be what they do in the Soviet Union, not the United States of America. We can’t stand for this, the American people are being denied equal justice,” Scalise stated.> House Minority Whip @SteveScalise rips into Democratic ""soviet style"" impeachment process:> > He says that @RepAdamSchiff ""started telling witnesses not to answer questions by certain Republicans."" pic.twitter.com/5mcEU8NZuq> > -- Daily Caller (@DailyCaller) October 29, 2019 Scalise’s comments come after the House released a draft resolution instituting a formal process for the inquiry, which includes allowing Republicans to present subpoenas and call witnesses, but only ones that are “authorized” by Schiff.“Adam Schiff, among many things, has been trying to claim that this is a fair process by saying that Republicans are allowed to ask questions,” Scalise told reporters alongside Ohio Republican Jim Jordan. “Now he gets to choose all the witnesses, and him and himself only, which means it’s not a fair process on the face. But even his claim now, that Republicans can ask questions, has been undermined, because now he’s directing witnesses not to answer questions that he doesn’t want the witness to answer, if they’re asked by Republicans.“He’s not cut off one Democrat, he’s not interrupted one Democrat and told a witness not to answer Democrat members’ questions, but today he started telling the witness not to answer questions by certain Republicans. That reeks.”House Republicans have been hostile to Schiff’s handling of the impeachment probe, and last week attempted to pass a resolution to censure the California Democrat and demanded his resignation. Following the failed party-line vote, House Leader Kevin McCarthy (R., Calif.) accused Democrats of electing “to put politics over truth.”",http://l2.yimg.com/uu/api/res/1.2/uXJvDWBba6YdJ.fQv44IaA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://i0.wp.com/www.nationalreview.com/wp-content/uploads/2019/10/steve-scalise-capitol-hill.jpg?fit=1024%2C597&ssl=1,Scalise Claims Schiff Has Directed Witnesses Not to Answer Republicans’ Questions During ‘Soviet Style’ Impeachment Hearings +U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +What Baghdadi’s Death Means for al Qaeda—and Why It Matters,"Tue, 29 Oct 2019 13:14:08 -0400",https://news.yahoo.com/baghdadi-death-means-al-qaeda-171408420.html,"SITE Intelligence GroupWith ISIS leader Abu Bakr al-Baghdadi killed one day and the group’s official spokesman Abu Hassan al-Muhajir the next, there’s a giant hole in the pseudo-Caliphate structure of the so-called Islamic State. The group must now, by its strict religious tenets, find a new (supposed) descendant of the Prophet Muhammed to fill the role of Caliph. But the deaths of those two are equally consequential for al-Qaeda, the bitter rival of ISIS for leadership of global jihad. Al-Qaeda has spent the last six years branding the Caliphate as illegitimate, too extreme, and ultimately harmful. When ISIS declared the establishment of its so-called Caliphate spanning territory in Syria and Iraq in 2014, al-Qaeda and its affiliates unanimously rejected it. To this day, al-Qaeda leader Ayman al-Zawahiri’s speeches rarely come without some critique of the “epidemic” put forth by ISIS.Trump Officials Had No Clue Where He Got ‘Whimpering’ Detail in His Baghdadi Raid AccountOddly, Baghdadi was killed in Idlib, a haven of al-Qaeda-linked fighters and Hayat Tahrir al-Sham, a Syrian Islamist faction led by Abu Muhammad al-Julani, a former al-Qaeda comrade who had become one of Baghdadi's most bitter foes. There has been some speculation Baghdadi was not just hiding out but trying to recruit from the ranks of his enemies.Neither al-Qaeda Central nor its affiliates have commented on Baghdadi’s death as yet, but within hours after the news broke, al-Qaeda ideologues and supporters already were celebrating the event and discussing what it will mean for the future of jihad. In chat groups online, al-Qaeda supporters voiced resentment after years of bitter strife with the group, and the scale of these responses illustrates just how much of a big deal and opportunity they see with Baghdadi’s death.“Based on his orders, thousands of the mujahideen were killed,” one post read.“How thrilled were they every time leaders from al-Qaeda were martyred?” read another.Some wished Baghdadi the ultimate condemnation:  “May Allah send him to Hell.”Messages by others, however, particularly al-Qaeda-linked ideologues, balanced expressions of justice for the jihadi movement with restraint, making sure not to celebrate excessively the result of an operation by the United States.The tactful enthusiasm is calculated. Many ISIS fighters, much of its military infrastructure, many media officials, and supporters were pulled from al-Qaeda. Now, with ISIS’ “Caliph” dead and that Caliphate itself destroyed, al-Qaeda has been given its biggest opportunity yet to bring many of them back under its tent. SITE Intelligence GroupPerhaps the most profound instance of this outreach was a lengthy essay by “Adel Amin,” the pen name of a prominent ideologue linked to the Shabaab al-Mujahideen Movement, al-Qaeda’s branch in Somalia and most powerful affiliate. The message, disseminated widely across al-Qaeda-supporting channels and chat groups (many of which are also frequented by pro-ISIS users), demanded that ISIS supporters “return to the road of righteousness” after the Islamic State, in all of its excessive aggression and delusions of destiny, has proven itself a failure. Amin wrote:The situation here is not one in which to gloat. It is a situation for reminding and calling on those who remained in the ranks of al-Baghdadi, to reconsider
 Indeed, we witnessed its back being broken, its leaders getting killed, and its banner falling, and we hope that we can witness whoever remains from its soldiers returning to righteousness.Statements by other ideologues and supporters voiced the same points. A statement by Sirajuddin Zurayqat, a former religious official in the now-defunct al-Qaeda-linked Brigades of Abdullah Azzam in Lebanon, urged: “Now [Baghdadi] is dead and there is not one from the Ummah grieving over him or giving condolences... Therefore, those who were deceived by him should reconsider before it is too late!”These messages echo the same calls heard from Zawahiri and al-Qaeda affiliates over the years calling on ISIS fighters to “repent” and leave the group. Yet despite these new circumstances, ISIS supporters will not easily be moved. Since the summer of 2016, the group’s followers have seen the loss of the major cities Mosul in Iraq and Raqqah in Syria as well as the death of revered ISIS figures like Omar Shishani, Abu Muhammad al-‘Adnani, and others. With the latest setbacks to its leadership, ISIS-linked accounts online already have poured out calls to stay steadfast and have even used Baghdadi’s death as a rallying point to carry out new attacks. Reinforcing this undeterred support is an ISIS military and media machine that has shown no sign of stopping in the last two days. While ISIS has not yet officially acknowledged the death of Baghdadi, it has continued reporting on day-to-day military activity across Iraq, Syria, and the Afghanistan-Pakistan region.ISIS' Yemen Province - AQAP Prisoners as Featured in the video “He Who Starts is More Unjust”SITE Intelligence GroupFurthermore, while al-Qaeda affiliates like the Shabaab serve as powerful representatives of the organization, al-Qaeda Central is weaker than it has ever been. These days, al-Qaeda Central’s role is largely symbolic, limited to leadership messages and other content while steering the big-picture ethos of the organization. Its attempts to bolster its image, already heavily weighed down by a less-than-charismatic leader in Zawahiri, were upended upon the death of Hamza bin Laden, the son of Osama, whom al-Qaeda likely was grooming for an eventual leadership position. These variables considered, al-Qaeda may not be the appealing alternative for jihadists that its supporters want it to seem. So, while some fighters might very well join the ranks of al-Qaeda affiliates in their region, we shouldn't expect to see any drastic migration from ISIS’ ranks into its rival’s.Despite any notions of good-riddance that al-Qaeda and its supporters attach to Baghdadi’s death, and for whatever number of defectors it may win over as a result of Baghdadi’s demise, ISIS is not going anywhere. The barriers between these terrorist organizations have only hardened over the years, fueling deadly clashes and jihadi PR wars. Baghdadi was not the sole barrier keeping ISIS members from joining al-Qaeda, and his death is unlikely to diminish existing disputes.How U.S. Commandos IDed a ‘Mutilated’ Baghdadi So QuicklyRead more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/QcYdXaN_8T4S1wGgb4g_rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/61b52f4bd864d7492e1a1855d59b3e16,What Baghdadi’s Death Means for al Qaeda—and Why It Matters +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +Scalise Claims Schiff Has Directed Witnesses Not to Answer Republicans’ Questions During ‘Soviet Style’ Impeachment Hearings,"Tue, 29 Oct 2019 17:24:21 -0400",https://news.yahoo.com/scalise-claims-schiff-directed-witnesses-211926210.html,"House Minority Whip Steve Scalise (R., La.) lambasted House Intelligence Chairman Adam Schiff for allegedly shutting down questions from House Republicans in an impeachment inquiry hearing, calling it “a Soviet-style process.”“That might be what they do in the Soviet Union, not the United States of America. We can’t stand for this, the American people are being denied equal justice,” Scalise stated.> House Minority Whip @SteveScalise rips into Democratic ""soviet style"" impeachment process:> > He says that @RepAdamSchiff ""started telling witnesses not to answer questions by certain Republicans."" pic.twitter.com/5mcEU8NZuq> > -- Daily Caller (@DailyCaller) October 29, 2019 Scalise’s comments come after the House released a draft resolution instituting a formal process for the inquiry, which includes allowing Republicans to present subpoenas and call witnesses, but only ones that are “authorized” by Schiff.“Adam Schiff, among many things, has been trying to claim that this is a fair process by saying that Republicans are allowed to ask questions,” Scalise told reporters alongside Ohio Republican Jim Jordan. “Now he gets to choose all the witnesses, and him and himself only, which means it’s not a fair process on the face. But even his claim now, that Republicans can ask questions, has been undermined, because now he’s directing witnesses not to answer questions that he doesn’t want the witness to answer, if they’re asked by Republicans.“He’s not cut off one Democrat, he’s not interrupted one Democrat and told a witness not to answer Democrat members’ questions, but today he started telling the witness not to answer questions by certain Republicans. That reeks.”House Republicans have been hostile to Schiff’s handling of the impeachment probe, and last week attempted to pass a resolution to censure the California Democrat and demanded his resignation. Following the failed party-line vote, House Leader Kevin McCarthy (R., Calif.) accused Democrats of electing “to put politics over truth.”",http://l2.yimg.com/uu/api/res/1.2/uXJvDWBba6YdJ.fQv44IaA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://i0.wp.com/www.nationalreview.com/wp-content/uploads/2019/10/steve-scalise-capitol-hill.jpg?fit=1024%2C597&ssl=1,Scalise Claims Schiff Has Directed Witnesses Not to Answer Republicans’ Questions During ‘Soviet Style’ Impeachment Hearings +U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +What Baghdadi’s Death Means for al Qaeda—and Why It Matters,"Tue, 29 Oct 2019 13:14:08 -0400",https://news.yahoo.com/baghdadi-death-means-al-qaeda-171408420.html,"SITE Intelligence GroupWith ISIS leader Abu Bakr al-Baghdadi killed one day and the group’s official spokesman Abu Hassan al-Muhajir the next, there’s a giant hole in the pseudo-Caliphate structure of the so-called Islamic State. The group must now, by its strict religious tenets, find a new (supposed) descendant of the Prophet Muhammed to fill the role of Caliph. But the deaths of those two are equally consequential for al-Qaeda, the bitter rival of ISIS for leadership of global jihad. Al-Qaeda has spent the last six years branding the Caliphate as illegitimate, too extreme, and ultimately harmful. When ISIS declared the establishment of its so-called Caliphate spanning territory in Syria and Iraq in 2014, al-Qaeda and its affiliates unanimously rejected it. To this day, al-Qaeda leader Ayman al-Zawahiri’s speeches rarely come without some critique of the “epidemic” put forth by ISIS.Trump Officials Had No Clue Where He Got ‘Whimpering’ Detail in His Baghdadi Raid AccountOddly, Baghdadi was killed in Idlib, a haven of al-Qaeda-linked fighters and Hayat Tahrir al-Sham, a Syrian Islamist faction led by Abu Muhammad al-Julani, a former al-Qaeda comrade who had become one of Baghdadi's most bitter foes. There has been some speculation Baghdadi was not just hiding out but trying to recruit from the ranks of his enemies.Neither al-Qaeda Central nor its affiliates have commented on Baghdadi’s death as yet, but within hours after the news broke, al-Qaeda ideologues and supporters already were celebrating the event and discussing what it will mean for the future of jihad. In chat groups online, al-Qaeda supporters voiced resentment after years of bitter strife with the group, and the scale of these responses illustrates just how much of a big deal and opportunity they see with Baghdadi’s death.“Based on his orders, thousands of the mujahideen were killed,” one post read.“How thrilled were they every time leaders from al-Qaeda were martyred?” read another.Some wished Baghdadi the ultimate condemnation:  “May Allah send him to Hell.”Messages by others, however, particularly al-Qaeda-linked ideologues, balanced expressions of justice for the jihadi movement with restraint, making sure not to celebrate excessively the result of an operation by the United States.The tactful enthusiasm is calculated. Many ISIS fighters, much of its military infrastructure, many media officials, and supporters were pulled from al-Qaeda. Now, with ISIS’ “Caliph” dead and that Caliphate itself destroyed, al-Qaeda has been given its biggest opportunity yet to bring many of them back under its tent. SITE Intelligence GroupPerhaps the most profound instance of this outreach was a lengthy essay by “Adel Amin,” the pen name of a prominent ideologue linked to the Shabaab al-Mujahideen Movement, al-Qaeda’s branch in Somalia and most powerful affiliate. The message, disseminated widely across al-Qaeda-supporting channels and chat groups (many of which are also frequented by pro-ISIS users), demanded that ISIS supporters “return to the road of righteousness” after the Islamic State, in all of its excessive aggression and delusions of destiny, has proven itself a failure. Amin wrote:The situation here is not one in which to gloat. It is a situation for reminding and calling on those who remained in the ranks of al-Baghdadi, to reconsider
 Indeed, we witnessed its back being broken, its leaders getting killed, and its banner falling, and we hope that we can witness whoever remains from its soldiers returning to righteousness.Statements by other ideologues and supporters voiced the same points. A statement by Sirajuddin Zurayqat, a former religious official in the now-defunct al-Qaeda-linked Brigades of Abdullah Azzam in Lebanon, urged: “Now [Baghdadi] is dead and there is not one from the Ummah grieving over him or giving condolences... Therefore, those who were deceived by him should reconsider before it is too late!”These messages echo the same calls heard from Zawahiri and al-Qaeda affiliates over the years calling on ISIS fighters to “repent” and leave the group. Yet despite these new circumstances, ISIS supporters will not easily be moved. Since the summer of 2016, the group’s followers have seen the loss of the major cities Mosul in Iraq and Raqqah in Syria as well as the death of revered ISIS figures like Omar Shishani, Abu Muhammad al-‘Adnani, and others. With the latest setbacks to its leadership, ISIS-linked accounts online already have poured out calls to stay steadfast and have even used Baghdadi’s death as a rallying point to carry out new attacks. Reinforcing this undeterred support is an ISIS military and media machine that has shown no sign of stopping in the last two days. While ISIS has not yet officially acknowledged the death of Baghdadi, it has continued reporting on day-to-day military activity across Iraq, Syria, and the Afghanistan-Pakistan region.ISIS' Yemen Province - AQAP Prisoners as Featured in the video “He Who Starts is More Unjust”SITE Intelligence GroupFurthermore, while al-Qaeda affiliates like the Shabaab serve as powerful representatives of the organization, al-Qaeda Central is weaker than it has ever been. These days, al-Qaeda Central’s role is largely symbolic, limited to leadership messages and other content while steering the big-picture ethos of the organization. Its attempts to bolster its image, already heavily weighed down by a less-than-charismatic leader in Zawahiri, were upended upon the death of Hamza bin Laden, the son of Osama, whom al-Qaeda likely was grooming for an eventual leadership position. These variables considered, al-Qaeda may not be the appealing alternative for jihadists that its supporters want it to seem. So, while some fighters might very well join the ranks of al-Qaeda affiliates in their region, we shouldn't expect to see any drastic migration from ISIS’ ranks into its rival’s.Despite any notions of good-riddance that al-Qaeda and its supporters attach to Baghdadi’s death, and for whatever number of defectors it may win over as a result of Baghdadi’s demise, ISIS is not going anywhere. The barriers between these terrorist organizations have only hardened over the years, fueling deadly clashes and jihadi PR wars. Baghdadi was not the sole barrier keeping ISIS members from joining al-Qaeda, and his death is unlikely to diminish existing disputes.How U.S. Commandos IDed a ‘Mutilated’ Baghdadi So QuicklyRead more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/QcYdXaN_8T4S1wGgb4g_rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/61b52f4bd864d7492e1a1855d59b3e16,What Baghdadi’s Death Means for al Qaeda—and Why It Matters +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +Scalise Claims Schiff Has Directed Witnesses Not to Answer Republicans’ Questions During ‘Soviet Style’ Impeachment Hearings,"Tue, 29 Oct 2019 17:24:21 -0400",https://news.yahoo.com/scalise-claims-schiff-directed-witnesses-211926210.html,"House Minority Whip Steve Scalise (R., La.) lambasted House Intelligence Chairman Adam Schiff for allegedly shutting down questions from House Republicans in an impeachment inquiry hearing, calling it “a Soviet-style process.”“That might be what they do in the Soviet Union, not the United States of America. We can’t stand for this, the American people are being denied equal justice,” Scalise stated.> House Minority Whip @SteveScalise rips into Democratic ""soviet style"" impeachment process:> > He says that @RepAdamSchiff ""started telling witnesses not to answer questions by certain Republicans."" pic.twitter.com/5mcEU8NZuq> > -- Daily Caller (@DailyCaller) October 29, 2019 Scalise’s comments come after the House released a draft resolution instituting a formal process for the inquiry, which includes allowing Republicans to present subpoenas and call witnesses, but only ones that are “authorized” by Schiff.“Adam Schiff, among many things, has been trying to claim that this is a fair process by saying that Republicans are allowed to ask questions,” Scalise told reporters alongside Ohio Republican Jim Jordan. “Now he gets to choose all the witnesses, and him and himself only, which means it’s not a fair process on the face. But even his claim now, that Republicans can ask questions, has been undermined, because now he’s directing witnesses not to answer questions that he doesn’t want the witness to answer, if they’re asked by Republicans.“He’s not cut off one Democrat, he’s not interrupted one Democrat and told a witness not to answer Democrat members’ questions, but today he started telling the witness not to answer questions by certain Republicans. That reeks.”House Republicans have been hostile to Schiff’s handling of the impeachment probe, and last week attempted to pass a resolution to censure the California Democrat and demanded his resignation. Following the failed party-line vote, House Leader Kevin McCarthy (R., Calif.) accused Democrats of electing “to put politics over truth.”",http://l2.yimg.com/uu/api/res/1.2/uXJvDWBba6YdJ.fQv44IaA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://i0.wp.com/www.nationalreview.com/wp-content/uploads/2019/10/steve-scalise-capitol-hill.jpg?fit=1024%2C597&ssl=1,Scalise Claims Schiff Has Directed Witnesses Not to Answer Republicans’ Questions During ‘Soviet Style’ Impeachment Hearings +U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +Bernie Sanders says he doesn't intend to release a funding plan for Medicare for All any time soon,"Tue, 29 Oct 2019 15:51:13 -0400",https://news.yahoo.com/bernie-sanders-says-doesnt-intend-195113050.html,"Sanders said in a CNBC interview that ""I don't think I have to"" release details specifying how universal healthcare coverage would be paid for.",http://l1.yimg.com/uu/api/res/1.2/.2orRAETSkwQQaeN6_h7LQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/e21d07626ec59c81d309d983d53a0df4,Bernie Sanders says he doesn't intend to release a funding plan for Medicare for All any time soon +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +What Baghdadi’s Death Means for al Qaeda—and Why It Matters,"Tue, 29 Oct 2019 13:14:08 -0400",https://news.yahoo.com/baghdadi-death-means-al-qaeda-171408420.html,"SITE Intelligence GroupWith ISIS leader Abu Bakr al-Baghdadi killed one day and the group’s official spokesman Abu Hassan al-Muhajir the next, there’s a giant hole in the pseudo-Caliphate structure of the so-called Islamic State. The group must now, by its strict religious tenets, find a new (supposed) descendant of the Prophet Muhammed to fill the role of Caliph. But the deaths of those two are equally consequential for al-Qaeda, the bitter rival of ISIS for leadership of global jihad. Al-Qaeda has spent the last six years branding the Caliphate as illegitimate, too extreme, and ultimately harmful. When ISIS declared the establishment of its so-called Caliphate spanning territory in Syria and Iraq in 2014, al-Qaeda and its affiliates unanimously rejected it. To this day, al-Qaeda leader Ayman al-Zawahiri’s speeches rarely come without some critique of the “epidemic” put forth by ISIS.Trump Officials Had No Clue Where He Got ‘Whimpering’ Detail in His Baghdadi Raid AccountOddly, Baghdadi was killed in Idlib, a haven of al-Qaeda-linked fighters and Hayat Tahrir al-Sham, a Syrian Islamist faction led by Abu Muhammad al-Julani, a former al-Qaeda comrade who had become one of Baghdadi's most bitter foes. There has been some speculation Baghdadi was not just hiding out but trying to recruit from the ranks of his enemies.Neither al-Qaeda Central nor its affiliates have commented on Baghdadi’s death as yet, but within hours after the news broke, al-Qaeda ideologues and supporters already were celebrating the event and discussing what it will mean for the future of jihad. In chat groups online, al-Qaeda supporters voiced resentment after years of bitter strife with the group, and the scale of these responses illustrates just how much of a big deal and opportunity they see with Baghdadi’s death.“Based on his orders, thousands of the mujahideen were killed,” one post read.“How thrilled were they every time leaders from al-Qaeda were martyred?” read another.Some wished Baghdadi the ultimate condemnation:  “May Allah send him to Hell.”Messages by others, however, particularly al-Qaeda-linked ideologues, balanced expressions of justice for the jihadi movement with restraint, making sure not to celebrate excessively the result of an operation by the United States.The tactful enthusiasm is calculated. Many ISIS fighters, much of its military infrastructure, many media officials, and supporters were pulled from al-Qaeda. Now, with ISIS’ “Caliph” dead and that Caliphate itself destroyed, al-Qaeda has been given its biggest opportunity yet to bring many of them back under its tent. SITE Intelligence GroupPerhaps the most profound instance of this outreach was a lengthy essay by “Adel Amin,” the pen name of a prominent ideologue linked to the Shabaab al-Mujahideen Movement, al-Qaeda’s branch in Somalia and most powerful affiliate. The message, disseminated widely across al-Qaeda-supporting channels and chat groups (many of which are also frequented by pro-ISIS users), demanded that ISIS supporters “return to the road of righteousness” after the Islamic State, in all of its excessive aggression and delusions of destiny, has proven itself a failure. Amin wrote:The situation here is not one in which to gloat. It is a situation for reminding and calling on those who remained in the ranks of al-Baghdadi, to reconsider
 Indeed, we witnessed its back being broken, its leaders getting killed, and its banner falling, and we hope that we can witness whoever remains from its soldiers returning to righteousness.Statements by other ideologues and supporters voiced the same points. A statement by Sirajuddin Zurayqat, a former religious official in the now-defunct al-Qaeda-linked Brigades of Abdullah Azzam in Lebanon, urged: “Now [Baghdadi] is dead and there is not one from the Ummah grieving over him or giving condolences... Therefore, those who were deceived by him should reconsider before it is too late!”These messages echo the same calls heard from Zawahiri and al-Qaeda affiliates over the years calling on ISIS fighters to “repent” and leave the group. Yet despite these new circumstances, ISIS supporters will not easily be moved. Since the summer of 2016, the group’s followers have seen the loss of the major cities Mosul in Iraq and Raqqah in Syria as well as the death of revered ISIS figures like Omar Shishani, Abu Muhammad al-‘Adnani, and others. With the latest setbacks to its leadership, ISIS-linked accounts online already have poured out calls to stay steadfast and have even used Baghdadi’s death as a rallying point to carry out new attacks. Reinforcing this undeterred support is an ISIS military and media machine that has shown no sign of stopping in the last two days. While ISIS has not yet officially acknowledged the death of Baghdadi, it has continued reporting on day-to-day military activity across Iraq, Syria, and the Afghanistan-Pakistan region.ISIS' Yemen Province - AQAP Prisoners as Featured in the video “He Who Starts is More Unjust”SITE Intelligence GroupFurthermore, while al-Qaeda affiliates like the Shabaab serve as powerful representatives of the organization, al-Qaeda Central is weaker than it has ever been. These days, al-Qaeda Central’s role is largely symbolic, limited to leadership messages and other content while steering the big-picture ethos of the organization. Its attempts to bolster its image, already heavily weighed down by a less-than-charismatic leader in Zawahiri, were upended upon the death of Hamza bin Laden, the son of Osama, whom al-Qaeda likely was grooming for an eventual leadership position. These variables considered, al-Qaeda may not be the appealing alternative for jihadists that its supporters want it to seem. So, while some fighters might very well join the ranks of al-Qaeda affiliates in their region, we shouldn't expect to see any drastic migration from ISIS’ ranks into its rival’s.Despite any notions of good-riddance that al-Qaeda and its supporters attach to Baghdadi’s death, and for whatever number of defectors it may win over as a result of Baghdadi’s demise, ISIS is not going anywhere. The barriers between these terrorist organizations have only hardened over the years, fueling deadly clashes and jihadi PR wars. Baghdadi was not the sole barrier keeping ISIS members from joining al-Qaeda, and his death is unlikely to diminish existing disputes.How U.S. Commandos IDed a ‘Mutilated’ Baghdadi So QuicklyRead more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/QcYdXaN_8T4S1wGgb4g_rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/61b52f4bd864d7492e1a1855d59b3e16,What Baghdadi’s Death Means for al Qaeda—and Why It Matters +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +Scalise Claims Schiff Has Directed Witnesses Not to Answer Republicans’ Questions During ‘Soviet Style’ Impeachment Hearings,"Tue, 29 Oct 2019 17:24:21 -0400",https://news.yahoo.com/scalise-claims-schiff-directed-witnesses-211926210.html,"House Minority Whip Steve Scalise (R., La.) lambasted House Intelligence Chairman Adam Schiff for allegedly shutting down questions from House Republicans in an impeachment inquiry hearing, calling it “a Soviet-style process.”“That might be what they do in the Soviet Union, not the United States of America. We can’t stand for this, the American people are being denied equal justice,” Scalise stated.> House Minority Whip @SteveScalise rips into Democratic ""soviet style"" impeachment process:> > He says that @RepAdamSchiff ""started telling witnesses not to answer questions by certain Republicans."" pic.twitter.com/5mcEU8NZuq> > -- Daily Caller (@DailyCaller) October 29, 2019 Scalise’s comments come after the House released a draft resolution instituting a formal process for the inquiry, which includes allowing Republicans to present subpoenas and call witnesses, but only ones that are “authorized” by Schiff.“Adam Schiff, among many things, has been trying to claim that this is a fair process by saying that Republicans are allowed to ask questions,” Scalise told reporters alongside Ohio Republican Jim Jordan. “Now he gets to choose all the witnesses, and him and himself only, which means it’s not a fair process on the face. But even his claim now, that Republicans can ask questions, has been undermined, because now he’s directing witnesses not to answer questions that he doesn’t want the witness to answer, if they’re asked by Republicans.“He’s not cut off one Democrat, he’s not interrupted one Democrat and told a witness not to answer Democrat members’ questions, but today he started telling the witness not to answer questions by certain Republicans. That reeks.”House Republicans have been hostile to Schiff’s handling of the impeachment probe, and last week attempted to pass a resolution to censure the California Democrat and demanded his resignation. Following the failed party-line vote, House Leader Kevin McCarthy (R., Calif.) accused Democrats of electing “to put politics over truth.”",http://l2.yimg.com/uu/api/res/1.2/uXJvDWBba6YdJ.fQv44IaA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://i0.wp.com/www.nationalreview.com/wp-content/uploads/2019/10/steve-scalise-capitol-hill.jpg?fit=1024%2C597&ssl=1,Scalise Claims Schiff Has Directed Witnesses Not to Answer Republicans’ Questions During ‘Soviet Style’ Impeachment Hearings +U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +Bernie Sanders says he doesn't intend to release a funding plan for Medicare for All any time soon,"Tue, 29 Oct 2019 15:51:13 -0400",https://news.yahoo.com/bernie-sanders-says-doesnt-intend-195113050.html,"Sanders said in a CNBC interview that ""I don't think I have to"" release details specifying how universal healthcare coverage would be paid for.",http://l1.yimg.com/uu/api/res/1.2/.2orRAETSkwQQaeN6_h7LQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/e21d07626ec59c81d309d983d53a0df4,Bernie Sanders says he doesn't intend to release a funding plan for Medicare for All any time soon +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +Bernie Sanders says he doesn't intend to release a funding plan for Medicare for All any time soon,"Tue, 29 Oct 2019 15:51:13 -0400",https://news.yahoo.com/bernie-sanders-says-doesnt-intend-195113050.html,"Sanders said in a CNBC interview that ""I don't think I have to"" release details specifying how universal healthcare coverage would be paid for.",http://l1.yimg.com/uu/api/res/1.2/.2orRAETSkwQQaeN6_h7LQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/e21d07626ec59c81d309d983d53a0df4,Bernie Sanders says he doesn't intend to release a funding plan for Medicare for All any time soon +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +'Everybody has read your words on the call': Pelosi responds to Trump tweets on impeachment,"Tue, 29 Oct 2019 14:46:16 -0400",https://news.yahoo.com/everybody-read-words-call-pelosi-145151698.html,"Nancy Pelosi responded to Trump's tweets about Alexander Vindman's testimony, writing on Twitter, ""Everybody has read your words on the call.""",http://l.yimg.com/uu/api/res/1.2/eTwHjSKEkaxGGzlnz8WQQA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/81f943677d57859fd9379365729009f9,'Everybody has read your words on the call': Pelosi responds to Trump tweets on impeachment +Anger mounts as utility imposes more blackouts in California,"Tue, 29 Oct 2019 22:19:03 -0400",https://news.yahoo.com/frustration-rises-amid-another-round-213206029.html,"With no electricity for the fourth straight day Tuesday, chef and caterer Jane Sykes realized she would have to throw out $1,000 worth of food, including trays of brownies, cupcakes and puff pastry. ""I don't think PG&E really thought this through,"" she lamented. Frustration and anger mounted across Northern California on Tuesday as the state's biggest utility, Pacific Gas & Electric, began another round of widespread blackouts aimed at preventing its electrical equipment from sparking wildfires in high winds.",http://l1.yimg.com/uu/api/res/1.2/gHk4DdbHRLs_QfWj0r20KA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/166263d36c4f8e3529708e8424c36bec,Anger mounts as utility imposes more blackouts in California +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" +Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden +"Russia is finding new islands in the Arctic, while the US is still trying to figure out how to get up there","Tue, 29 Oct 2019 13:18:24 -0400",https://news.yahoo.com/russia-finding-islands-arctic-while-171824970.html,"Russia already has the world's longest Arctic coastline, and five newly discovered islands give it even more territory to work with.",http://l2.yimg.com/uu/api/res/1.2/qrloLwli.Jx_bcUMPTdvBw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/1801c54af7a2425d59827698505e68a3,"Russia is finding new islands in the Arctic, while the US is still trying to figure out how to get up there" +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +'Everybody has read your words on the call': Pelosi responds to Trump tweets on impeachment,"Tue, 29 Oct 2019 14:46:16 -0400",https://news.yahoo.com/everybody-read-words-call-pelosi-145151698.html,"Nancy Pelosi responded to Trump's tweets about Alexander Vindman's testimony, writing on Twitter, ""Everybody has read your words on the call.""",http://l.yimg.com/uu/api/res/1.2/eTwHjSKEkaxGGzlnz8WQQA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/81f943677d57859fd9379365729009f9,'Everybody has read your words on the call': Pelosi responds to Trump tweets on impeachment +Anger mounts as utility imposes more blackouts in California,"Tue, 29 Oct 2019 22:19:03 -0400",https://news.yahoo.com/frustration-rises-amid-another-round-213206029.html,"With no electricity for the fourth straight day Tuesday, chef and caterer Jane Sykes realized she would have to throw out $1,000 worth of food, including trays of brownies, cupcakes and puff pastry. ""I don't think PG&E really thought this through,"" she lamented. Frustration and anger mounted across Northern California on Tuesday as the state's biggest utility, Pacific Gas & Electric, began another round of widespread blackouts aimed at preventing its electrical equipment from sparking wildfires in high winds.",http://l1.yimg.com/uu/api/res/1.2/gHk4DdbHRLs_QfWj0r20KA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/166263d36c4f8e3529708e8424c36bec,Anger mounts as utility imposes more blackouts in California +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" +Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden +"Russia is finding new islands in the Arctic, while the US is still trying to figure out how to get up there","Tue, 29 Oct 2019 13:18:24 -0400",https://news.yahoo.com/russia-finding-islands-arctic-while-171824970.html,"Russia already has the world's longest Arctic coastline, and five newly discovered islands give it even more territory to work with.",http://l2.yimg.com/uu/api/res/1.2/qrloLwli.Jx_bcUMPTdvBw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/1801c54af7a2425d59827698505e68a3,"Russia is finding new islands in the Arctic, while the US is still trying to figure out how to get up there" +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +Anger mounts as utility imposes more blackouts in California,"Tue, 29 Oct 2019 22:19:03 -0400",https://news.yahoo.com/frustration-rises-amid-another-round-213206029.html,"With no electricity for the fourth straight day Tuesday, chef and caterer Jane Sykes realized she would have to throw out $1,000 worth of food, including trays of brownies, cupcakes and puff pastry. ""I don't think PG&E really thought this through,"" she lamented. Frustration and anger mounted across Northern California on Tuesday as the state's biggest utility, Pacific Gas & Electric, began another round of widespread blackouts aimed at preventing its electrical equipment from sparking wildfires in high winds.",http://l1.yimg.com/uu/api/res/1.2/gHk4DdbHRLs_QfWj0r20KA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/166263d36c4f8e3529708e8424c36bec,Anger mounts as utility imposes more blackouts in California +Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +'Everybody has read your words on the call': Pelosi responds to Trump tweets on impeachment,"Tue, 29 Oct 2019 14:46:16 -0400",https://news.yahoo.com/everybody-read-words-call-pelosi-145151698.html,"Nancy Pelosi responded to Trump's tweets about Alexander Vindman's testimony, writing on Twitter, ""Everybody has read your words on the call.""",http://l.yimg.com/uu/api/res/1.2/eTwHjSKEkaxGGzlnz8WQQA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/81f943677d57859fd9379365729009f9,'Everybody has read your words on the call': Pelosi responds to Trump tweets on impeachment +Anger mounts as utility imposes more blackouts in California,"Tue, 29 Oct 2019 22:19:03 -0400",https://news.yahoo.com/frustration-rises-amid-another-round-213206029.html,"With no electricity for the fourth straight day Tuesday, chef and caterer Jane Sykes realized she would have to throw out $1,000 worth of food, including trays of brownies, cupcakes and puff pastry. ""I don't think PG&E really thought this through,"" she lamented. Frustration and anger mounted across Northern California on Tuesday as the state's biggest utility, Pacific Gas & Electric, began another round of widespread blackouts aimed at preventing its electrical equipment from sparking wildfires in high winds.",http://l1.yimg.com/uu/api/res/1.2/gHk4DdbHRLs_QfWj0r20KA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/166263d36c4f8e3529708e8424c36bec,Anger mounts as utility imposes more blackouts in California +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" +Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden +"Russia is finding new islands in the Arctic, while the US is still trying to figure out how to get up there","Tue, 29 Oct 2019 13:18:24 -0400",https://news.yahoo.com/russia-finding-islands-arctic-while-171824970.html,"Russia already has the world's longest Arctic coastline, and five newly discovered islands give it even more territory to work with.",http://l2.yimg.com/uu/api/res/1.2/qrloLwli.Jx_bcUMPTdvBw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/1801c54af7a2425d59827698505e68a3,"Russia is finding new islands in the Arctic, while the US is still trying to figure out how to get up there" +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +Anger mounts as utility imposes more blackouts in California,"Tue, 29 Oct 2019 22:19:03 -0400",https://news.yahoo.com/frustration-rises-amid-another-round-213206029.html,"With no electricity for the fourth straight day Tuesday, chef and caterer Jane Sykes realized she would have to throw out $1,000 worth of food, including trays of brownies, cupcakes and puff pastry. ""I don't think PG&E really thought this through,"" she lamented. Frustration and anger mounted across Northern California on Tuesday as the state's biggest utility, Pacific Gas & Electric, began another round of widespread blackouts aimed at preventing its electrical equipment from sparking wildfires in high winds.",http://l1.yimg.com/uu/api/res/1.2/gHk4DdbHRLs_QfWj0r20KA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/166263d36c4f8e3529708e8424c36bec,Anger mounts as utility imposes more blackouts in California +Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden +"Pelosi, Schiff Prep for GOP Impeachment ‘Stunts’ and Attempts to Out the Whistleblower","Tue, 29 Oct 2019 15:31:34 -0400",https://news.yahoo.com/pelosi-schiff-prep-gop-impeachment-193134453.html,"Congressional Democrats are struggling to protect the identity of the U.S. government official who filed a whistleblower complaint about President Donald Trump’s Ukraine policy. And those efforts have fueled friction behind closed doors. House Intelligence Committee Chairman Adam Schiff (D-CA) ruled in a closed-door deposition Tuesday morning that any questions that might lead to the revelation of the whistleblower’s identity were out of order, according to two sources familiar with the meeting. His move frustrated Republicans. One source relayed that Rep. Eric Swalwell (D-CA) and Rep. Mark Meadows (R-N.C.) ended up “yelling at each other” during a closed door deposition of Alexander Vindman, the National Security Council Director for European Affairs who testified that he raised internal concerns about Trump’s call with Ukrainian President Volodymyr Zelensky that is now at the center of the impeachment inquiry.Meadows declined to discuss the deposition, but acknowledged the tension. “There is a great frustration among some of my Democratic colleagues because I know the rules extremely well,” he told The Daily Beast.Schiff’s office declined to comment. House Democrats Plan an Impeachment BlitzTuesday’s tensions underscored a growing fear among Democrats that Republicans may use parliamentary maneuvers to cast doubt on the whistleblower’s complaint and disrupt future private and public impeachment hearings. Top congressional Democrats, including members of the Intelligence and Judiciary Committees, have been meeting privately for weeks to discuss messaging around the impeachment inquiry. And in a meeting on Tuesday morning, House Speaker Nancy Pelosi (D-CA) and other attendees discussed how to handle potential Republican efforts to reveal the whistleblower’s identity, according to two sources familiar with the talks. A third source who was in the meeting said they were not aware of discussion about protecting the whistleblower’s identity. But the source did say that a good chunk of the discussion focused on how to handle Republican-led attempts to disrupt future public hearings, which impeachment investigators officially teed up on Tuesday. Some Democratic members have raised concerns that hearings could become chaotic political circuses with GOP lawmakers using the parliamentary rules to bog down the sessions. Republican members have used such tactics successfully during Judiciary Committee hearings led by Chairman Jerry Nadler (D-N.Y.)—most notably when Trump’s former campaign manager Corey Lewandowski spent much of his time refusing to answer questions and berating his questioners. That hearing embarrassed many Democrats and was widely viewed as a mess, underscoring the need for new direction and leadership in oversight of the Trump White House. Going forward, the third source said, Democrats wanted to better prepare for such “stunts” by setting firm rules for hearings. “It is going to happen at every turn, so we have to be prepared to address it,” the source said. “So we may do it through the rule. And we need to come up with a message to deal with this.”The House Rules Committee is slated to vote on formal rules of the impeachment hearings on Wednesday, and the full House could vote on the new rules as soon as Thursday.Meadows said that any accusation that Republicans were trying to out the whistleblower were untrue because they did not know who to actually out. “We don’t know who the whistleblower is, so there’s no way that we can out someone that we don’t know who it is,” he said. “I do believe that we need to hear from the whistleblower, but in terms of any ability to out the whistleblower, you have to know the name of him or her first and I can assure you that there’s not a single Republican that knows the name of the whistleblower.”Nunes Aide Is Leaking the Ukraine Whistleblower’s Name, Sources SaySources have told The Daily Beast a different story. According to two knowledgeable people, a top staffer to Rep. Devin Nunes (R-CA) has been circulating the identity of a person believed to be the whistleblower among House Republicans.On Tuesday, Rep. Debbie Wasserman Schultz (D-FL) exited the deposition and railed against Republican lawmakers for seemingly spending “most of their hours” of questioning using a variety of tactics to try to get Vindman to reveal the whistleblower’s name. She said that Republicans had been “repeatedly halted” from asking about the whistleblower during the session. “It certainly appeared they were trying to make sure they could put a universe of individuals who had been communicated with on the table,” Wasserman Schultz told The Daily Beast during a break in the deposition. Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/VwR53joFHajc34X73g_9JA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/cea860978efe46cc1b3ace53c4fa9790,"Pelosi, Schiff Prep for GOP Impeachment ‘Stunts’ and Attempts to Out the Whistleblower" +Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" +Trump Sides With Indicted Oligarch Over His Own Diplomat,"Tue, 29 Oct 2019 19:10:45 -0400",https://news.yahoo.com/trump-sides-indicted-oligarch-over-231045762.html,"Nicholas Kamm/AFP/Getty ImagesPresident Donald Trump boosted a tweet Monday promoting a controversial allegation from an indicted Ukrainian oligarch: that a top U.S. diplomat put fabricated information about the mogul in a diplomatic cable. That diplomat happens to be one of Democrats’ key impeachment witnesses. And that oligarch happens to have a long-standing beef with Joe Biden.Scott Adams, a Washington, D.C., talk radio host, sent out a tweet Monday night about U.S. Ambassador to Ukraine Bill Taylor, who delivered some of the impeachment inquiry’s most damaging testimony yet. The tweet alleged that Taylor lied about Ukrainian natural gas baron Dmytro Firtash in a cable to State Department headquarters in 2008. At issue was a conversation Taylor had with Firtash in Kyiv that December. Taylor wrote in a diplomatic cable (later published by WikiLeaks) that Firtash told him he had “acknowledged ties to Russian organized crime figure [Semion] Seymon Mogilevich,” one of the most notorious accused mobsters on the planet. According to Taylor, Firtash said “he needed Mogilevich's approval to get into business in the first place,” but had not committed any crimes in the course of his business.When WikiLeaks published the cable in 2010, Firtash issued a statement on his website disputing its contents. Firtash, the statement claimed,“has never stated, to anyone, at any time, that he needed or received permission from Mr. Mogilevich to establish any of his businesses.”Earlier this year, Firtash reiterated that defense. Without mentioning any American official by name, he said someone must have fabricated the detail about Mogilevich. Taylor, meanwhile, has defended the State Department’s notes. The Justice Department appears to side with Taylor; its lawyers have argued in court that Firtash has ties to Russian organized crime. The criminal charges he faces, however, don’t involve any such alleged relationships. Instead, the Justice Department charged him in 2014 with helming a conspiracy to bribe Indian government officials. Trump’s retweet, however, offers a presidential thumbs-up to Firtash’s side of the story, and raises a new line of attack on Taylor’s credibility for the president’s allies.  Asked about his sourcing for the allegations against Taylor, Adams told The Daily Beast, “My sources are solid Foggy Bottom people.” He also noted the explanation for the cable that Firtash provided to The Daily Beast earlier this year.This specific defense of Firtash took hold in The Hill over the summer, when columnist John Solomon, whose articles informed Rudy Giuliani’s Biden-Ukraine investigation, published a piece in July claiming that Special Counsel Robert Mueller’s deputy said Firtash’s criminal charges in the U.S. might “go away” if he shared damaging information about Trump with Mueller’s team. Solomon cited “multiple sources with direct knowledge” and contemporaneous memos. Firtash and Solomon share the same lawyers: Victoria Toensing and Joe diGenova. The husband-wife team are veterans of the conservative movement’s most contentious legal battles, with longstanding ties in the Justice Department and Trump administration. Ukrainian Oligarch Seethed About ‘Overlord’ Biden for YearsRead more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/img4cdxZ1ieXCNFd4Mc9LQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/587ec0455ae1dd540b5137a1aa5a82f6,Trump Sides With Indicted Oligarch Over His Own Diplomat +US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken +Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" +What Baghdadi’s Death Means for al Qaeda—and Why It Matters,"Tue, 29 Oct 2019 13:14:08 -0400",https://news.yahoo.com/baghdadi-death-means-al-qaeda-171408420.html,"SITE Intelligence GroupWith ISIS leader Abu Bakr al-Baghdadi killed one day and the group’s official spokesman Abu Hassan al-Muhajir the next, there’s a giant hole in the pseudo-Caliphate structure of the so-called Islamic State. The group must now, by its strict religious tenets, find a new (supposed) descendant of the Prophet Muhammed to fill the role of Caliph. But the deaths of those two are equally consequential for al-Qaeda, the bitter rival of ISIS for leadership of global jihad. Al-Qaeda has spent the last six years branding the Caliphate as illegitimate, too extreme, and ultimately harmful. When ISIS declared the establishment of its so-called Caliphate spanning territory in Syria and Iraq in 2014, al-Qaeda and its affiliates unanimously rejected it. To this day, al-Qaeda leader Ayman al-Zawahiri’s speeches rarely come without some critique of the “epidemic” put forth by ISIS.Trump Officials Had No Clue Where He Got ‘Whimpering’ Detail in His Baghdadi Raid AccountOddly, Baghdadi was killed in Idlib, a haven of al-Qaeda-linked fighters and Hayat Tahrir al-Sham, a Syrian Islamist faction led by Abu Muhammad al-Julani, a former al-Qaeda comrade who had become one of Baghdadi's most bitter foes. There has been some speculation Baghdadi was not just hiding out but trying to recruit from the ranks of his enemies.Neither al-Qaeda Central nor its affiliates have commented on Baghdadi’s death as yet, but within hours after the news broke, al-Qaeda ideologues and supporters already were celebrating the event and discussing what it will mean for the future of jihad. In chat groups online, al-Qaeda supporters voiced resentment after years of bitter strife with the group, and the scale of these responses illustrates just how much of a big deal and opportunity they see with Baghdadi’s death.“Based on his orders, thousands of the mujahideen were killed,” one post read.“How thrilled were they every time leaders from al-Qaeda were martyred?” read another.Some wished Baghdadi the ultimate condemnation:  “May Allah send him to Hell.”Messages by others, however, particularly al-Qaeda-linked ideologues, balanced expressions of justice for the jihadi movement with restraint, making sure not to celebrate excessively the result of an operation by the United States.The tactful enthusiasm is calculated. Many ISIS fighters, much of its military infrastructure, many media officials, and supporters were pulled from al-Qaeda. Now, with ISIS’ “Caliph” dead and that Caliphate itself destroyed, al-Qaeda has been given its biggest opportunity yet to bring many of them back under its tent. SITE Intelligence GroupPerhaps the most profound instance of this outreach was a lengthy essay by “Adel Amin,” the pen name of a prominent ideologue linked to the Shabaab al-Mujahideen Movement, al-Qaeda’s branch in Somalia and most powerful affiliate. The message, disseminated widely across al-Qaeda-supporting channels and chat groups (many of which are also frequented by pro-ISIS users), demanded that ISIS supporters “return to the road of righteousness” after the Islamic State, in all of its excessive aggression and delusions of destiny, has proven itself a failure. Amin wrote:The situation here is not one in which to gloat. It is a situation for reminding and calling on those who remained in the ranks of al-Baghdadi, to reconsider
 Indeed, we witnessed its back being broken, its leaders getting killed, and its banner falling, and we hope that we can witness whoever remains from its soldiers returning to righteousness.Statements by other ideologues and supporters voiced the same points. A statement by Sirajuddin Zurayqat, a former religious official in the now-defunct al-Qaeda-linked Brigades of Abdullah Azzam in Lebanon, urged: “Now [Baghdadi] is dead and there is not one from the Ummah grieving over him or giving condolences... Therefore, those who were deceived by him should reconsider before it is too late!”These messages echo the same calls heard from Zawahiri and al-Qaeda affiliates over the years calling on ISIS fighters to “repent” and leave the group. Yet despite these new circumstances, ISIS supporters will not easily be moved. Since the summer of 2016, the group’s followers have seen the loss of the major cities Mosul in Iraq and Raqqah in Syria as well as the death of revered ISIS figures like Omar Shishani, Abu Muhammad al-‘Adnani, and others. With the latest setbacks to its leadership, ISIS-linked accounts online already have poured out calls to stay steadfast and have even used Baghdadi’s death as a rallying point to carry out new attacks. Reinforcing this undeterred support is an ISIS military and media machine that has shown no sign of stopping in the last two days. While ISIS has not yet officially acknowledged the death of Baghdadi, it has continued reporting on day-to-day military activity across Iraq, Syria, and the Afghanistan-Pakistan region.ISIS' Yemen Province - AQAP Prisoners as Featured in the video “He Who Starts is More Unjust”SITE Intelligence GroupFurthermore, while al-Qaeda affiliates like the Shabaab serve as powerful representatives of the organization, al-Qaeda Central is weaker than it has ever been. These days, al-Qaeda Central’s role is largely symbolic, limited to leadership messages and other content while steering the big-picture ethos of the organization. Its attempts to bolster its image, already heavily weighed down by a less-than-charismatic leader in Zawahiri, were upended upon the death of Hamza bin Laden, the son of Osama, whom al-Qaeda likely was grooming for an eventual leadership position. These variables considered, al-Qaeda may not be the appealing alternative for jihadists that its supporters want it to seem. So, while some fighters might very well join the ranks of al-Qaeda affiliates in their region, we shouldn't expect to see any drastic migration from ISIS’ ranks into its rival’s.Despite any notions of good-riddance that al-Qaeda and its supporters attach to Baghdadi’s death, and for whatever number of defectors it may win over as a result of Baghdadi’s demise, ISIS is not going anywhere. The barriers between these terrorist organizations have only hardened over the years, fueling deadly clashes and jihadi PR wars. Baghdadi was not the sole barrier keeping ISIS members from joining al-Qaeda, and his death is unlikely to diminish existing disputes.How U.S. Commandos IDed a ‘Mutilated’ Baghdadi So QuicklyRead more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/QcYdXaN_8T4S1wGgb4g_rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/61b52f4bd864d7492e1a1855d59b3e16,What Baghdadi’s Death Means for al Qaeda—and Why It Matters +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken +Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken +Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken +Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" +US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken +Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" +US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken +Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" +US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken +Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" +US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken +Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" +US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken +Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" +US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken +Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden +Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict +"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" +2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious +The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women +He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse +8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve +London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial +"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" diff --git a/news_feed/news_cash/20191030.csv b/news_feed/news_cash/20191030.csv new file mode 100644 index 0000000..3852b30 --- /dev/null +++ b/news_feed/news_cash/20191030.csv @@ -0,0 +1,1135 @@ +title,pubDate,link,description,imageLink,imageDescription +UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, +The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, +Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, +The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, +Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, +The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, +Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, +The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, +Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, +The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, +Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, +The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, +Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, +The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, +Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, +The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, +Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, +The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, +Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, +The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, +Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, +The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, +Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, +The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, +Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, +The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, +Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, +The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, +Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, +The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, +Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, +The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, +Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, +The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, +Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, +The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, +Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, +The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, +Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +"Elizabeth Warren fans are beginning to ditch the 2020 competition, which is exactly what she needs right now","Wed, 30 Oct 2019 09:56:12 -0400",https://news.yahoo.com/elizabeth-warren-fans-beginning-ditch-123647436.html,"Since the spring, the fraction of voters who say they like Warren and at most one or two other candidates has gone up by 10 percentage points.",http://l1.yimg.com/uu/api/res/1.2/pWZ.MdamT6NwDSjc54qpoA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/76c21804d602d8ded06df7207a9d27ac,"Elizabeth Warren fans are beginning to ditch the 2020 competition, which is exactly what she needs right now" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'","Wed, 30 Oct 2019 17:14:25 -0400",https://news.yahoo.com/joe-biden-describes-health-care-211425414.html,"Biden on Wednesday referred to his health care plan as ""Medicare for all who want it,"" employing the phrase used by rival Pete Buttigieg.",http://l1.yimg.com/uu/api/res/1.2/Sj5K6np5jul6JsE4mN3xMA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4b698050c974ee811746d4918f10c5a8,"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'" +Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation +Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" +"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" +"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it","Wed, 30 Oct 2019 15:26:00 -0400",https://news.yahoo.com/u-government-spent-16-000-192600418.html,"Sen. Joni Ernst (R-Iowa) wants to rob the federal government of what little fun it has left.Every year, the U.S. government spends more than $1.4 billion on its public relations and advertising efforts -- not that Ernst has a problem with all of that. She's just not a fan of the .002 cents each American taxpayer essentially spent last year on federal ""mascots,"" as well as the several thousand more dollars it put toward various trinkets, and is proposing a bill to end it all.Ernst unveiled her SWAG Act, which stands for Stop Wasteful Advertising by the Government, on Tuesday, which would block federal agencies from creating mascots unless it's done via statute. Smokey Bear and Woodsy Owl, for example, would be safe, but Sammy Soil, a literal chunk of soil with eyes created by the USDA's conservation branch, would be rooted out. So would Franklin the Fair Housing Fox, The Green Reaper, and some other mascots Ernst says have been known to make babies cry.A variety of knickknacks are also targeted under Ernst's proposal to ""Bag the Swag:"" the $605,000 spent on coloring books last year; $33,000 on Snuggies; $17,000 on drink koozies; and $16,000 on fidget spinners. Ernst would also ""prohibit the purchase and distribution of 'swag'"" like these, unless they're also authorized by statute, per Ernst's press release.Overall, the federal government spent a total of $250,000 on the mascots last year. The Tax Cuts & Jobs Act, which Ernst voted to enact, is meanwhile expected to cost at least $1.5 trillion.",,"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it" +A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +Researchers: Chicago must overhaul homicide investigations,"Wed, 30 Oct 2019 16:58:30 -0400",https://news.yahoo.com/researchers-chicago-must-overhaul-homicide-194803945.html,"The Chicago Police Department must make significant changes in the way it investigates homicides in a city where more than half of killings go unsolved, a police research group said in a report released Wednesday. The Police Executive Research Forum found problems in the department that included inadequate training; a lack of a detective unit devoted solely to homicide investigations; and a failure to adequately help witnesses or even have a witness protection unit that is critical in persuading people to come forward to help solve crimes. The report shows the clearance rate for homicides in 2017, the most recent year listed, was at 36% for the nation's third-largest city, compared with 84% for New York and 73% for Los Angeles.",http://l.yimg.com/uu/api/res/1.2/27.enbYrr0qTq2xQ9xiLBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1257f48a666ef06156bf37a7ab479b80,Researchers: Chicago must overhaul homicide investigations +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +"Elizabeth Warren fans are beginning to ditch the 2020 competition, which is exactly what she needs right now","Wed, 30 Oct 2019 09:56:12 -0400",https://news.yahoo.com/elizabeth-warren-fans-beginning-ditch-123647436.html,"Since the spring, the fraction of voters who say they like Warren and at most one or two other candidates has gone up by 10 percentage points.",http://l1.yimg.com/uu/api/res/1.2/pWZ.MdamT6NwDSjc54qpoA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/76c21804d602d8ded06df7207a9d27ac,"Elizabeth Warren fans are beginning to ditch the 2020 competition, which is exactly what she needs right now" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'","Wed, 30 Oct 2019 17:14:25 -0400",https://news.yahoo.com/joe-biden-describes-health-care-211425414.html,"Biden on Wednesday referred to his health care plan as ""Medicare for all who want it,"" employing the phrase used by rival Pete Buttigieg.",http://l1.yimg.com/uu/api/res/1.2/Sj5K6np5jul6JsE4mN3xMA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4b698050c974ee811746d4918f10c5a8,"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'" +Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation +Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" +"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" +"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it","Wed, 30 Oct 2019 15:26:00 -0400",https://news.yahoo.com/u-government-spent-16-000-192600418.html,"Sen. Joni Ernst (R-Iowa) wants to rob the federal government of what little fun it has left.Every year, the U.S. government spends more than $1.4 billion on its public relations and advertising efforts -- not that Ernst has a problem with all of that. She's just not a fan of the .002 cents each American taxpayer essentially spent last year on federal ""mascots,"" as well as the several thousand more dollars it put toward various trinkets, and is proposing a bill to end it all.Ernst unveiled her SWAG Act, which stands for Stop Wasteful Advertising by the Government, on Tuesday, which would block federal agencies from creating mascots unless it's done via statute. Smokey Bear and Woodsy Owl, for example, would be safe, but Sammy Soil, a literal chunk of soil with eyes created by the USDA's conservation branch, would be rooted out. So would Franklin the Fair Housing Fox, The Green Reaper, and some other mascots Ernst says have been known to make babies cry.A variety of knickknacks are also targeted under Ernst's proposal to ""Bag the Swag:"" the $605,000 spent on coloring books last year; $33,000 on Snuggies; $17,000 on drink koozies; and $16,000 on fidget spinners. Ernst would also ""prohibit the purchase and distribution of 'swag'"" like these, unless they're also authorized by statute, per Ernst's press release.Overall, the federal government spent a total of $250,000 on the mascots last year. The Tax Cuts & Jobs Act, which Ernst voted to enact, is meanwhile expected to cost at least $1.5 trillion.",,"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it" +A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +Researchers: Chicago must overhaul homicide investigations,"Wed, 30 Oct 2019 16:58:30 -0400",https://news.yahoo.com/researchers-chicago-must-overhaul-homicide-194803945.html,"The Chicago Police Department must make significant changes in the way it investigates homicides in a city where more than half of killings go unsolved, a police research group said in a report released Wednesday. The Police Executive Research Forum found problems in the department that included inadequate training; a lack of a detective unit devoted solely to homicide investigations; and a failure to adequately help witnesses or even have a witness protection unit that is critical in persuading people to come forward to help solve crimes. The report shows the clearance rate for homicides in 2017, the most recent year listed, was at 36% for the nation's third-largest city, compared with 84% for New York and 73% for Los Angeles.",http://l.yimg.com/uu/api/res/1.2/27.enbYrr0qTq2xQ9xiLBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1257f48a666ef06156bf37a7ab479b80,Researchers: Chicago must overhaul homicide investigations +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +"Elizabeth Warren fans are beginning to ditch the 2020 competition, which is exactly what she needs right now","Wed, 30 Oct 2019 09:56:12 -0400",https://news.yahoo.com/elizabeth-warren-fans-beginning-ditch-123647436.html,"Since the spring, the fraction of voters who say they like Warren and at most one or two other candidates has gone up by 10 percentage points.",http://l1.yimg.com/uu/api/res/1.2/pWZ.MdamT6NwDSjc54qpoA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/76c21804d602d8ded06df7207a9d27ac,"Elizabeth Warren fans are beginning to ditch the 2020 competition, which is exactly what she needs right now" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'","Wed, 30 Oct 2019 17:14:25 -0400",https://news.yahoo.com/joe-biden-describes-health-care-211425414.html,"Biden on Wednesday referred to his health care plan as ""Medicare for all who want it,"" employing the phrase used by rival Pete Buttigieg.",http://l1.yimg.com/uu/api/res/1.2/Sj5K6np5jul6JsE4mN3xMA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4b698050c974ee811746d4918f10c5a8,"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'" +Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation +Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" +"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" +"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it","Wed, 30 Oct 2019 15:26:00 -0400",https://news.yahoo.com/u-government-spent-16-000-192600418.html,"Sen. Joni Ernst (R-Iowa) wants to rob the federal government of what little fun it has left.Every year, the U.S. government spends more than $1.4 billion on its public relations and advertising efforts -- not that Ernst has a problem with all of that. She's just not a fan of the .002 cents each American taxpayer essentially spent last year on federal ""mascots,"" as well as the several thousand more dollars it put toward various trinkets, and is proposing a bill to end it all.Ernst unveiled her SWAG Act, which stands for Stop Wasteful Advertising by the Government, on Tuesday, which would block federal agencies from creating mascots unless it's done via statute. Smokey Bear and Woodsy Owl, for example, would be safe, but Sammy Soil, a literal chunk of soil with eyes created by the USDA's conservation branch, would be rooted out. So would Franklin the Fair Housing Fox, The Green Reaper, and some other mascots Ernst says have been known to make babies cry.A variety of knickknacks are also targeted under Ernst's proposal to ""Bag the Swag:"" the $605,000 spent on coloring books last year; $33,000 on Snuggies; $17,000 on drink koozies; and $16,000 on fidget spinners. Ernst would also ""prohibit the purchase and distribution of 'swag'"" like these, unless they're also authorized by statute, per Ernst's press release.Overall, the federal government spent a total of $250,000 on the mascots last year. The Tax Cuts & Jobs Act, which Ernst voted to enact, is meanwhile expected to cost at least $1.5 trillion.",,"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it" +A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +Researchers: Chicago must overhaul homicide investigations,"Wed, 30 Oct 2019 16:58:30 -0400",https://news.yahoo.com/researchers-chicago-must-overhaul-homicide-194803945.html,"The Chicago Police Department must make significant changes in the way it investigates homicides in a city where more than half of killings go unsolved, a police research group said in a report released Wednesday. The Police Executive Research Forum found problems in the department that included inadequate training; a lack of a detective unit devoted solely to homicide investigations; and a failure to adequately help witnesses or even have a witness protection unit that is critical in persuading people to come forward to help solve crimes. The report shows the clearance rate for homicides in 2017, the most recent year listed, was at 36% for the nation's third-largest city, compared with 84% for New York and 73% for Los Angeles.",http://l.yimg.com/uu/api/res/1.2/27.enbYrr0qTq2xQ9xiLBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1257f48a666ef06156bf37a7ab479b80,Researchers: Chicago must overhaul homicide investigations +Former Juul exec alleges company shipped tainted products,"Wed, 30 Oct 2019 15:42:51 -0400",https://news.yahoo.com/former-juul-exec-alleges-company-161657802.html,"A Juul Labs executive who was fired earlier this year is alleging that the vaping company knowingly shipped 1 million tainted nicotine pods to customers. The allegation comes in a lawsuit filed Tuesday by lawyers representing Siddharth Breja, a one-time finance executive at the e-cigarette maker. The suit claims that Breja was terminated after opposing company practices, including shipping the contaminated flavored pods and not listing expiration dates on Juul products.",http://l2.yimg.com/uu/api/res/1.2/ZJe0yLkkCrtXTL7CI9vB3g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1b773f8bc9f5d70267924b0c415b6653,Former Juul exec alleges company shipped tainted products +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"Special Report: In a working-class Hong Kong neighborhood, the protests hit home","Wed, 30 Oct 2019 08:05:30 -0400",https://news.yahoo.com/special-report-working-class-hong-120530805.html,"From the top of Lion Rock, all of Hong Kong reveals itself: the sprawl of the Kowloon Peninsula directly below, the iconic Star Ferry plying the waters of Victoria Harbor, the moneyed heights of Hong Kong island beyond. In the shadow of the revered mountain rise huge monoliths, drab concrete tower blocks far removed from the glittering glass highrises of Hong Kong island's steroidal skyline. Here, in a neighborhood of public housing estates called Wong Tai Sin, seemingly endless stacks of aging windows heave with drying laundry and hum with air conditioners sweating droplets onto the pavement below.",http://l.yimg.com/uu/api/res/1.2/F9Ge8Jbxe9MBf8mEm7JaUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/6360044a87d60947847b5654efb286ca,"Special Report: In a working-class Hong Kong neighborhood, the protests hit home" +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" +California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation +Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +"White House blocked effort to condemn Russia for seizing Ukraine ships, Congress told","Wed, 30 Oct 2019 16:46:00 -0400",https://news.yahoo.com/white-house-blocked-effort-condemn-204600202.html,"State department aide makes revelation in testimony, while Russia envoy nominee John Sullivan grilled at confirmation hearingDonald Trump with Vladimir Putin at the G20 summit in Osaka in June this year. Trump voiced concern over the 2018 capture but did not blame Moscow. Photograph: Mikhail Klimentyev/TassThe White House blocked the US state department from issuing a statement condemning Russia for seizing Ukrainian military vessels, according to a state department official, in the latest example of the strain the Trump administration is under in pursuing conflicting policies towards the two countries.The revelation on Wednesday came from Christopher Anderson, who was a senior aide to the special envoy on Ukraine, Kurt Volker, in November 2018, when Russia fired on and captured three Ukrainian vessels in the Sea of Azov off the Crimean peninsula.“While my colleagues at the state department quickly prepared a statement condemning Russia for its escalation, senior officials in the White House blocked it from being issued,” Anderson said in his prepared remarks to congressional committees holding impeachment hearings. “Ambassador Volker drafted a tweet condemning Russia’s actions, which I posted to his account.”In the face of silence from the White House, the then US ambassador to the UN, Nikki Haley, condemned Russian behaviour, after which the secretary of state, Mike Pompeo, followed suit. Trump voiced concern but did not blame Moscow.The 24 Ukrainian sailors detained in the operation were returned last month as part of a prisoner exchange.Anderson, and his successor in the Ukraine job, Catherine Croft, both testified to House committees on Wednesday about the role played by Trump’s personal lawyer, Rudy Giuliani, in foiling state department efforts to bolster the president, Volodymyr Zelenskiy, in the face of Russian military intervention in eastern Ukraine.In his testimony, Anderson quoted the former national security adviser, John Bolton, as saying: “Giuliani was a key voice with the president on Ukraine which could be an obstacle to increased White House engagement.” On Wednesday, the House committees asked Bolton to testify on 7 November, but it is unclear whether he will attend.Bolton’s former deputy, Charles Kupperman, is currently seeking a court ruling on whether to comply with his congressional subpoena in the face of a White House order not to testify.At the other side of Congress, the nominee to become ambassador to Russia, John Sullivan, faced pointed questions on Wednesday at confirmation hearings in the Senate about Giuliani and the split US policy towards Russia and Ukraine.Sullivan, currently the deputy secretary of state, said he was aware of Giuliani’s role in a campaign against the former US ambassador to Ukraine, Marie Yovanovitch. Asked if he knew Trump’s lawyer was “seeking to smear” Yovanovitch, he replied: “I believe he was, yes.”Sullivan confirmed he had been shown a dossier of material attacking Yovanovitch, saying it had provided by the White House to the state department legal adviser, but he was not aware it had been put together by Giuliani. He said the dossier “didn’t provide to me a basis for taking action against our ambassador”.He said that Pompeo gave Sullivan no explanation for the decision to recall Yovanovitch before the end of her posting, other than she had “lost the confidence of the president”.“As I understand, [Trump] may decide that he doesn’t like my testimony today and he doesn’t want me to go to Russia. The president can decide when he loses confidence in his ambassador – then that person is not going to continue as ambassador,” Sullivan said.Sullivan sought to avoid taking a position on the testimony by several former and current state department officials that the president, through Giuliani, had made a White House meeting and US military aid dependent on the Ukrainian government investigating Trump’s political rivals.“Soliciting investigations into a domestic political opponent – I don’t think that would be in accord with our values,” Sullivan said. But he would not confirm that was what the president had done.Democratic senators signaled that they were prepared to support Sullivan’s nomination as an experienced and respected diplomat, acknowledging the difficult position he was in. But they expressed concern he had not done more to find out what Trump and Giuliani were trying to achieve in Ukraine.The ranking Democrat on the Senate foreign relations committee, Bob Menendez, told Sullivan he had been playing the role of “see no evil, hear no evil, speak no evil.”“You’re going to go to Russia, and you’re going to be saying one set of things based upon your testimony here,” Menendez said. “And we have the president who, in his public statements, is totally aligned differently than what you’re going to be saying.”“Do you understand the incredibly difficult job that you’re going to have as a result of that?” Menendez asked Sullivan.“I would say, senator, you’ve cited the president’s statements. I’d cite the president’s actions,” the nominee replied, listing sanctions the administration had imposed on Russia.",http://l1.yimg.com/uu/api/res/1.2/3dFxIoizaUY49lyZT_4bZQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/e71dc403755334597d5e870705964abd,"White House blocked effort to condemn Russia for seizing Ukraine ships, Congress told" +D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request +Clinton impeachment figure makes return in Trump sequel,"Wed, 30 Oct 2019 23:52:01 -0400",https://news.yahoo.com/clinton-impeachment-figure-makes-return-214101537.html,"Impeachment is back, and so is Bob Livingston. The former congressman from Louisiana who abruptly resigned on the same day the House impeached President Bill Clinton made an improbable return Wednesday as a figure in the sequel — the drive to impeach President Donald Trump. There, in the leaked opening statement of the day's witness was a Foreign Service official's recollection that a ""Robert Livingston"" had repeatedly phoned the National Security Council to urge the firing of the U.S. ambassador to Ukraine, Marie Yovanovitch, over her links to Democrats.",http://l2.yimg.com/uu/api/res/1.2/DRoY3gppqRXhGwtoDudBTg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/eae2d2d5dbf080f230d5c034ac54bbc3,Clinton impeachment figure makes return in Trump sequel +Former Juul exec alleges company shipped tainted products,"Wed, 30 Oct 2019 15:42:51 -0400",https://news.yahoo.com/former-juul-exec-alleges-company-161657802.html,"A Juul Labs executive who was fired earlier this year is alleging that the vaping company knowingly shipped 1 million tainted nicotine pods to customers. The allegation comes in a lawsuit filed Tuesday by lawyers representing Siddharth Breja, a one-time finance executive at the e-cigarette maker. The suit claims that Breja was terminated after opposing company practices, including shipping the contaminated flavored pods and not listing expiration dates on Juul products.",http://l2.yimg.com/uu/api/res/1.2/ZJe0yLkkCrtXTL7CI9vB3g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1b773f8bc9f5d70267924b0c415b6653,Former Juul exec alleges company shipped tainted products +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"Special Report: In a working-class Hong Kong neighborhood, the protests hit home","Wed, 30 Oct 2019 08:05:30 -0400",https://news.yahoo.com/special-report-working-class-hong-120530805.html,"From the top of Lion Rock, all of Hong Kong reveals itself: the sprawl of the Kowloon Peninsula directly below, the iconic Star Ferry plying the waters of Victoria Harbor, the moneyed heights of Hong Kong island beyond. In the shadow of the revered mountain rise huge monoliths, drab concrete tower blocks far removed from the glittering glass highrises of Hong Kong island's steroidal skyline. Here, in a neighborhood of public housing estates called Wong Tai Sin, seemingly endless stacks of aging windows heave with drying laundry and hum with air conditioners sweating droplets onto the pavement below.",http://l.yimg.com/uu/api/res/1.2/F9Ge8Jbxe9MBf8mEm7JaUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/6360044a87d60947847b5654efb286ca,"Special Report: In a working-class Hong Kong neighborhood, the protests hit home" +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" +California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation +Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +"White House blocked effort to condemn Russia for seizing Ukraine ships, Congress told","Wed, 30 Oct 2019 16:46:00 -0400",https://news.yahoo.com/white-house-blocked-effort-condemn-204600202.html,"State department aide makes revelation in testimony, while Russia envoy nominee John Sullivan grilled at confirmation hearingDonald Trump with Vladimir Putin at the G20 summit in Osaka in June this year. Trump voiced concern over the 2018 capture but did not blame Moscow. Photograph: Mikhail Klimentyev/TassThe White House blocked the US state department from issuing a statement condemning Russia for seizing Ukrainian military vessels, according to a state department official, in the latest example of the strain the Trump administration is under in pursuing conflicting policies towards the two countries.The revelation on Wednesday came from Christopher Anderson, who was a senior aide to the special envoy on Ukraine, Kurt Volker, in November 2018, when Russia fired on and captured three Ukrainian vessels in the Sea of Azov off the Crimean peninsula.“While my colleagues at the state department quickly prepared a statement condemning Russia for its escalation, senior officials in the White House blocked it from being issued,” Anderson said in his prepared remarks to congressional committees holding impeachment hearings. “Ambassador Volker drafted a tweet condemning Russia’s actions, which I posted to his account.”In the face of silence from the White House, the then US ambassador to the UN, Nikki Haley, condemned Russian behaviour, after which the secretary of state, Mike Pompeo, followed suit. Trump voiced concern but did not blame Moscow.The 24 Ukrainian sailors detained in the operation were returned last month as part of a prisoner exchange.Anderson, and his successor in the Ukraine job, Catherine Croft, both testified to House committees on Wednesday about the role played by Trump’s personal lawyer, Rudy Giuliani, in foiling state department efforts to bolster the president, Volodymyr Zelenskiy, in the face of Russian military intervention in eastern Ukraine.In his testimony, Anderson quoted the former national security adviser, John Bolton, as saying: “Giuliani was a key voice with the president on Ukraine which could be an obstacle to increased White House engagement.” On Wednesday, the House committees asked Bolton to testify on 7 November, but it is unclear whether he will attend.Bolton’s former deputy, Charles Kupperman, is currently seeking a court ruling on whether to comply with his congressional subpoena in the face of a White House order not to testify.At the other side of Congress, the nominee to become ambassador to Russia, John Sullivan, faced pointed questions on Wednesday at confirmation hearings in the Senate about Giuliani and the split US policy towards Russia and Ukraine.Sullivan, currently the deputy secretary of state, said he was aware of Giuliani’s role in a campaign against the former US ambassador to Ukraine, Marie Yovanovitch. Asked if he knew Trump’s lawyer was “seeking to smear” Yovanovitch, he replied: “I believe he was, yes.”Sullivan confirmed he had been shown a dossier of material attacking Yovanovitch, saying it had provided by the White House to the state department legal adviser, but he was not aware it had been put together by Giuliani. He said the dossier “didn’t provide to me a basis for taking action against our ambassador”.He said that Pompeo gave Sullivan no explanation for the decision to recall Yovanovitch before the end of her posting, other than she had “lost the confidence of the president”.“As I understand, [Trump] may decide that he doesn’t like my testimony today and he doesn’t want me to go to Russia. The president can decide when he loses confidence in his ambassador – then that person is not going to continue as ambassador,” Sullivan said.Sullivan sought to avoid taking a position on the testimony by several former and current state department officials that the president, through Giuliani, had made a White House meeting and US military aid dependent on the Ukrainian government investigating Trump’s political rivals.“Soliciting investigations into a domestic political opponent – I don’t think that would be in accord with our values,” Sullivan said. But he would not confirm that was what the president had done.Democratic senators signaled that they were prepared to support Sullivan’s nomination as an experienced and respected diplomat, acknowledging the difficult position he was in. But they expressed concern he had not done more to find out what Trump and Giuliani were trying to achieve in Ukraine.The ranking Democrat on the Senate foreign relations committee, Bob Menendez, told Sullivan he had been playing the role of “see no evil, hear no evil, speak no evil.”“You’re going to go to Russia, and you’re going to be saying one set of things based upon your testimony here,” Menendez said. “And we have the president who, in his public statements, is totally aligned differently than what you’re going to be saying.”“Do you understand the incredibly difficult job that you’re going to have as a result of that?” Menendez asked Sullivan.“I would say, senator, you’ve cited the president’s statements. I’d cite the president’s actions,” the nominee replied, listing sanctions the administration had imposed on Russia.",http://l1.yimg.com/uu/api/res/1.2/3dFxIoizaUY49lyZT_4bZQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/e71dc403755334597d5e870705964abd,"White House blocked effort to condemn Russia for seizing Ukraine ships, Congress told" +D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request +Clinton impeachment figure makes return in Trump sequel,"Wed, 30 Oct 2019 23:52:01 -0400",https://news.yahoo.com/clinton-impeachment-figure-makes-return-214101537.html,"Impeachment is back, and so is Bob Livingston. The former congressman from Louisiana who abruptly resigned on the same day the House impeached President Bill Clinton made an improbable return Wednesday as a figure in the sequel — the drive to impeach President Donald Trump. There, in the leaked opening statement of the day's witness was a Foreign Service official's recollection that a ""Robert Livingston"" had repeatedly phoned the National Security Council to urge the firing of the U.S. ambassador to Ukraine, Marie Yovanovitch, over her links to Democrats.",http://l2.yimg.com/uu/api/res/1.2/DRoY3gppqRXhGwtoDudBTg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/eae2d2d5dbf080f230d5c034ac54bbc3,Clinton impeachment figure makes return in Trump sequel +"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'","Wed, 30 Oct 2019 17:14:25 -0400",https://news.yahoo.com/joe-biden-describes-health-care-211425414.html,"Biden on Wednesday referred to his health care plan as ""Medicare for all who want it,"" employing the phrase used by rival Pete Buttigieg.",http://l1.yimg.com/uu/api/res/1.2/Sj5K6np5jul6JsE4mN3xMA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4b698050c974ee811746d4918f10c5a8,"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'" +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +"Special Report: In a working-class Hong Kong neighborhood, the protests hit home","Wed, 30 Oct 2019 08:05:30 -0400",https://news.yahoo.com/special-report-working-class-hong-120530805.html,"From the top of Lion Rock, all of Hong Kong reveals itself: the sprawl of the Kowloon Peninsula directly below, the iconic Star Ferry plying the waters of Victoria Harbor, the moneyed heights of Hong Kong island beyond. In the shadow of the revered mountain rise huge monoliths, drab concrete tower blocks far removed from the glittering glass highrises of Hong Kong island's steroidal skyline. Here, in a neighborhood of public housing estates called Wong Tai Sin, seemingly endless stacks of aging windows heave with drying laundry and hum with air conditioners sweating droplets onto the pavement below.",http://l.yimg.com/uu/api/res/1.2/F9Ge8Jbxe9MBf8mEm7JaUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/6360044a87d60947847b5654efb286ca,"Special Report: In a working-class Hong Kong neighborhood, the protests hit home" +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" +Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? +"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +"Elizabeth Warren fans are beginning to ditch the 2020 competition, which is exactly what she needs right now","Wed, 30 Oct 2019 09:56:12 -0400",https://news.yahoo.com/elizabeth-warren-fans-beginning-ditch-123647436.html,"Since the spring, the fraction of voters who say they like Warren and at most one or two other candidates has gone up by 10 percentage points.",http://l1.yimg.com/uu/api/res/1.2/pWZ.MdamT6NwDSjc54qpoA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/76c21804d602d8ded06df7207a9d27ac,"Elizabeth Warren fans are beginning to ditch the 2020 competition, which is exactly what she needs right now" +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +"3 killed, 9 wounded in shooting at party in California home","Wed, 30 Oct 2019 18:19:39 -0400",https://news.yahoo.com/3-killed-9-injured-shooting-082755536.html,"A gunman who opened fire from an alley into a party killed three people and wounded nine others in California before fleeing in a vehicle, police said Wednesday. Police Chief Robert Luna called the shooter a coward and urged residents to come forward with any information that might lead to an arrest. Three men were killed, and seven women and two men were taken to hospitals with gunshot wounds.",http://l1.yimg.com/uu/api/res/1.2/4loESatU5y24ZYWRLOpuzA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/83a373c832dba305692e2824e24defae,"3 killed, 9 wounded in shooting at party in California home" +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers +D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers +D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers +D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers +D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers +D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers +Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames +"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'","Wed, 30 Oct 2019 17:14:25 -0400",https://news.yahoo.com/joe-biden-describes-health-care-211425414.html,"Biden on Wednesday referred to his health care plan as ""Medicare for all who want it,"" employing the phrase used by rival Pete Buttigieg.",http://l1.yimg.com/uu/api/res/1.2/Sj5K6np5jul6JsE4mN3xMA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4b698050c974ee811746d4918f10c5a8,"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'" +Congress Considers Delaying Spending Talks Until After Impeachment,"Wed, 30 Oct 2019 15:47:15 -0400",https://news.yahoo.com/congress-considers-delaying-spending-talks-194715001.html,"(Bloomberg) -- Democrats and Republicans in Congress are deliberating whether to push the deadline to fund the government into early February to avoid having a budget fight amid an impeachment inquiry into President Donald Trump that’s set to stretch at least into December.That would mean enacting another stopgap spending bill to avert a government shutdown when the current short-term funding runs out Nov. 21, assuming the two sides don’t be able to agree on a budget plan by then.Senate Appropriations Chairman Richard Shelby, a Republican, has floated the idea of a stopgap spending bill until February, though he said Wednesday he hasn’t discussed it with Majority Leader Mitch McConnell.“I think that’s a pretty realistic assessment of where we are today,” said Shelby of Alabama. “Miracles do happen but I haven’t seen a lot of them around here.”House Democrats on the Appropriations Committee are also weighing a February stopgap, lawmakers and aides say.Trump’s insistence on funding a wall on the southern border is again hanging over funding decisions in Congress, as Democrats and Republicans negotiate 12 annual spending bills. An impasse over the border wall led to a 35-day partial government shutdown early this year. After it ended, Trump used emergency powers to raid military construction accounts to fund the wall.Wall MoneyWhen Shelby floated the idea of a stopgap bill until February, he said impeachment would “take the oxygen” out of the Capitol. But Democratic Representative David Price, a member of the Appropriations panel, said Trump’s continued demand for money to build a border wall is the problem.“Shelby can blame impeachment all he wants but it is their allocations that is standing in the way,” Price of North Carolina said. “If not for this wall issue we could get this done tomorrow.”House Majority Leader Steny Hoyer and Senate Majority Leader Mitch McConnell are said to oppose a long stopgap in order to try to force a spending deal sooner. Hoyer wrote to McConnell on Tuesday to urge immediate talks on spending.Republicans want to replenish the $7 billion in military funds that Trump redirected toward construction of the border wall, and Democrats say they won’t refill those accounts without provisions to guard against future shifting of funds. Senate Republicans also are seeking $5 billion in new money for the wall.This already delicate negotiation is further complicated by the impeachment process that has enraged Trump and heightened partisan acrimony on Capitol Hill.Senate Minority Leader Charles Schumer said Tuesday he was worried that Trump could use the Nov. 21 deadline to provoke a shutdown to distract from impeachment.”I’m increasingly worried that President Trump will want to shut down the government again because of impeachment,” Schumer said. “He always likes to create diversions.”Shutdown FearsRepublicans and Democrats in Congress say they don’t want another government shutdown, although they also said that when government funding ran out at the end of 2018. The Senate and the House, both led by the GOP at the time, were on the brink of a deal in December when Trump persuaded House Republicans to hold out for wall funding.The House has already passed its 12 appropriations bills, and the Senate this week is on track to pass a package of four spending bills that would fund Interior and Environment; Commerce, Justice and Science; Transportation, Housing and Urban Development; and Agriculture. This Senate measure would need to be reconciled with the House versions to become law.The most important thing for spending committee leaders is to agree on the topline allocation of spending for all government agencies. Senate Democrats say they’ll block debate on the annual Defense spending bill, the top GOP priority, until they reach a deal on total allocations.“This week will bring a litmus test: are Washington Democrats so concerned by impeachment that they cannot even fund our men and women in uniform?” McConnell said Tuesday. “It’s hard to imagine a more basic legislative responsibility than funding the Department of Defense.”\--With assistance from Jack Fitzpatrick.To contact the reporter on this story: Erik Wasson in Washington at ewasson@bloomberg.netTo contact the editors responsible for this story: Joe Sobczyk at jsobczyk@bloomberg.net, Laurie AssĂ©oFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/M_gBixqUTKtNLood1HKdOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/40fd63c8d0df90d81de4e3a310a07c72,Congress Considers Delaying Spending Talks Until After Impeachment +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers +D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'","Wed, 30 Oct 2019 17:14:25 -0400",https://news.yahoo.com/joe-biden-describes-health-care-211425414.html,"Biden on Wednesday referred to his health care plan as ""Medicare for all who want it,"" employing the phrase used by rival Pete Buttigieg.",http://l1.yimg.com/uu/api/res/1.2/Sj5K6np5jul6JsE4mN3xMA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4b698050c974ee811746d4918f10c5a8,"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'" +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +NATO demands Russia 'withdraw all troops' from Ukraine,"Wed, 30 Oct 2019 16:23:06 -0400",https://news.yahoo.com/nato-demands-russia-withdraw-troops-ukraine-175324192.html,"NATO chief Jens Stoltenberg on Wednesday welcomed a pullback by the Ukrainian army and Moscow-backed separatists in eastern Ukraine, but reiterated calls for Russia to ""withdraw all their troops"". The move was a precondition for the first face-to-face talks between Russian President Vladimir Putin and his Ukrainian counterpart Volodymyr Zelensky. ""We welcome all efforts to reduce tensions, to withdraw forces and to make sure that we have a peaceful solution to the conflict,"" Stoltenberg said in the Ukrainian port city of Odessa, praising Zelensky's ""renewed effort"".",http://l2.yimg.com/uu/api/res/1.2/dPse.sHie6jpKLvU.2Og6w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/ccb9925c6600d68b3a9aec4b4cd5c966654df4ec.jpg,NATO demands Russia 'withdraw all troops' from Ukraine +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +California businessman gets prison for U.S. college admissions scam,"Wed, 30 Oct 2019 18:25:54 -0400",https://news.yahoo.com/california-businessman-gets-prison-u-222554860.html,"A former California business executive was sentenced on Wednesday to two months in prison for taking part in a vast U.S. college admissions fraud scheme by paying $250,000 to secure his son's admission to the University of Southern California. Federal prosecutors in Boston had sought nine months in prison for Jeffrey Bizzack, who they said sought to secure his son's admission through a ""side door"" by agreeing to bribe a USC official to designate him as a fake athletic recruit. U.S. District Judge Douglas Woodlock said prosecutors lacked evidence to support some of their arguments for a higher sentence.",http://l.yimg.com/uu/api/res/1.2/lEh4n6Nu9abRf1foukH6Gw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/298583d99339cc271df308ca177e42f4,California businessman gets prison for U.S. college admissions scam +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'","Wed, 30 Oct 2019 17:14:25 -0400",https://news.yahoo.com/joe-biden-describes-health-care-211425414.html,"Biden on Wednesday referred to his health care plan as ""Medicare for all who want it,"" employing the phrase used by rival Pete Buttigieg.",http://l1.yimg.com/uu/api/res/1.2/Sj5K6np5jul6JsE4mN3xMA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4b698050c974ee811746d4918f10c5a8,"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'" +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +NATO demands Russia 'withdraw all troops' from Ukraine,"Wed, 30 Oct 2019 16:23:06 -0400",https://news.yahoo.com/nato-demands-russia-withdraw-troops-ukraine-175324192.html,"NATO chief Jens Stoltenberg on Wednesday welcomed a pullback by the Ukrainian army and Moscow-backed separatists in eastern Ukraine, but reiterated calls for Russia to ""withdraw all their troops"". The move was a precondition for the first face-to-face talks between Russian President Vladimir Putin and his Ukrainian counterpart Volodymyr Zelensky. ""We welcome all efforts to reduce tensions, to withdraw forces and to make sure that we have a peaceful solution to the conflict,"" Stoltenberg said in the Ukrainian port city of Odessa, praising Zelensky's ""renewed effort"".",http://l2.yimg.com/uu/api/res/1.2/dPse.sHie6jpKLvU.2Og6w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/ccb9925c6600d68b3a9aec4b4cd5c966654df4ec.jpg,NATO demands Russia 'withdraw all troops' from Ukraine +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +California businessman gets prison for U.S. college admissions scam,"Wed, 30 Oct 2019 18:25:54 -0400",https://news.yahoo.com/california-businessman-gets-prison-u-222554860.html,"A former California business executive was sentenced on Wednesday to two months in prison for taking part in a vast U.S. college admissions fraud scheme by paying $250,000 to secure his son's admission to the University of Southern California. Federal prosecutors in Boston had sought nine months in prison for Jeffrey Bizzack, who they said sought to secure his son's admission through a ""side door"" by agreeing to bribe a USC official to designate him as a fake athletic recruit. U.S. District Judge Douglas Woodlock said prosecutors lacked evidence to support some of their arguments for a higher sentence.",http://l.yimg.com/uu/api/res/1.2/lEh4n6Nu9abRf1foukH6Gw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/298583d99339cc271df308ca177e42f4,California businessman gets prison for U.S. college admissions scam +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +How Boris Johnson’s Brexit Election Gamble Could Backfire,"Wed, 30 Oct 2019 01:00:00 -0400",https://news.yahoo.com/boris-johnsons-brexit-election-gamble-050000800.html,"(Bloomberg) -- Sign up to our Brexit Bulletin, follow us @Brexit and subscribe to our podcast.Boris Johnson has succeeded, finally, in getting Parliament to give him the general election that he wants. The polls have him far ahead: YouGov had 36% of voters backing his Conservatives, with Labour in second place on 23%. But his move is still a risky one. Here are the ways it could go wrong.Polling ErrorRemember the 2015 U.K. election shock? And the 2016 Brexit referendum shock? And the 2017 U.K. election shock? A common feature of all of them was a failure of the polling companies to properly detect a shift in public opinion.At the very time that we want faster, better data from them, pollsters face unprecedented challenges. In particular, they struggle to reach younger, more mobile voters, those who might be expected to oppose Johnson’s Conservatives and Brexit.Votes vs SeatsEven if the pollsters get close with the total vote share, translating it into the thing that matters, seats in Parliament, is very hard. Votes can pile up unevenly. In 2017, the Tories won 42% of the vote, but 49% of the seats. Labour won 40% of both.Tory FatigueThe Conservatives have now been in power for nine years, and even Cabinet ministers acknowledge privately that the last three of those years haven’t been a great advertisement for Tory government. The party’s recent discovery of unity behind Johnson might not outweigh years of infighting and indecision.Hard TimesIt’s not just that the Tories have been in power for a long time, they’ve been in power for a long time while people haven’t got any richer. According to the Office for National Statistics, median weekly earnings are still 2.9% below their 2008 level. That’s not a great backdrop for an election.Brexit FactorJohnson’s slogan, “Get Brexit Done,” feels like an appealing message to a public weary of months of knife-edge votes and reverses. But it’s also an admission that this government has had a single project since 2016, has failed to deliver on it, and everyone is sick of waiting.Johnson hopes to turn that frustration into votes for Conservatives. But voters could conclude that Brexit was a Conservative project -- a Johnson project, in fact -- and that if they’re tired of it, they need someone different in charge.The failure to complete the U.K.’s withdrawal from the EU also leaves the door open to Nigel Farage’s Brexit Party to take votes away from the Tories. If Farage does well enough to stop Tories winning key seats, Corbyn could ultimately benefit.Money’s TightJohnson’s other message is that by getting Brexit dealt with, he will be able to focus on spending money on things people do like, such as schools and hospitals. This too is an admission of failure.After nine years of spending restrictions, Britain’s public services are squeezed: libraries are closing, knife crime is rising, numbers of rough sleepers are increasing. Labour will be very happy to fight an election on the question of who is better at spending money on things.Character FlawsThe Conservatives are pinning a lot of their hopes on Johnson’s undoubted fame. Unlike his predecessor Theresa May, he enjoys campaigning. But that fame brings a problem. Most people have made up their minds what they think of Johnson, and a lot of them don’t like him.According to YouGov, 47% of people have a negative opinion of him, against 33% who have a positive one. Labour is pushing hard on Johnson’s tendency to go back on promises.The Conservatives, too, plan to make much of their opponent’s character: Labour leader Jeremy Corbyn has even worse scores than Johnson: 58% negative, against 23% positive. But at the last election, Corbyn was able to shrug off criticism of his past statements.Mixed MessagesJohnson risks losing a whole load of Conservative seats in places that don’t like Brexit too: southern England, and Scotland. According to Joe Twyman of Deltapoll, that leaves the prime minister trying to pull off a difficult trick.“He needs to convince Remain-leaning Conservative voters to forget Brexit and vote Conservative,” Twyman said. “At the same time convince Leave-leaning Labour voters to hold their noses about him and vote for Brexit.”Right Votes, Wrong PlacesA different version of the same problem is that the Conservatives’ strongly pro-Brexit message helps them do very well in areas they already hold. According to Twyman, of the 50 most “Leave” areas, 24 are already Conservative. Extra votes there don’t help.Accidents HappenConservative politicians are fond of saying that they’ll never run a campaign as bad as the one May ran in 2017. In particular they point to her announcement of a plan to fund care for the elderly from the value of their houses.But things can go wrong. The 2017 campaign was interrupted by terrorist attacks. Johnson could find himself unexpectedly tested. He may be just about the only politician known to everyone by his first name, but he’s also the only one to have had to apologize to an entire city -- Liverpool, in 2004.His team have been keen to keep him away from difficult questions. In the intense scrutiny of an election campaign, that will be harder than ever.To contact the reporter on this story: Robert Hutton in London at rhutton1@bloomberg.netTo contact the editors responsible for this story: Tim Ross at tross54@bloomberg.net, Flavia Krause-JacksonFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/G.m4foP92eZpAREH7SCSgw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/d711bd17f3966d5753a56a0bf2e986dd,How Boris Johnson’s Brexit Election Gamble Could Backfire +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +California businessman gets prison for U.S. college admissions scam,"Wed, 30 Oct 2019 18:25:54 -0400",https://news.yahoo.com/california-businessman-gets-prison-u-222554860.html,"A former California business executive was sentenced on Wednesday to two months in prison for taking part in a vast U.S. college admissions fraud scheme by paying $250,000 to secure his son's admission to the University of Southern California. Federal prosecutors in Boston had sought nine months in prison for Jeffrey Bizzack, who they said sought to secure his son's admission through a ""side door"" by agreeing to bribe a USC official to designate him as a fake athletic recruit. U.S. District Judge Douglas Woodlock said prosecutors lacked evidence to support some of their arguments for a higher sentence.",http://l.yimg.com/uu/api/res/1.2/lEh4n6Nu9abRf1foukH6Gw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/298583d99339cc271df308ca177e42f4,California businessman gets prison for U.S. college admissions scam +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +NATO demands Russia 'withdraw all troops' from Ukraine,"Wed, 30 Oct 2019 16:23:06 -0400",https://news.yahoo.com/nato-demands-russia-withdraw-troops-ukraine-175324192.html,"NATO chief Jens Stoltenberg on Wednesday welcomed a pullback by the Ukrainian army and Moscow-backed separatists in eastern Ukraine, but reiterated calls for Russia to ""withdraw all their troops"". The move was a precondition for the first face-to-face talks between Russian President Vladimir Putin and his Ukrainian counterpart Volodymyr Zelensky. ""We welcome all efforts to reduce tensions, to withdraw forces and to make sure that we have a peaceful solution to the conflict,"" Stoltenberg said in the Ukrainian port city of Odessa, praising Zelensky's ""renewed effort"".",http://l2.yimg.com/uu/api/res/1.2/dPse.sHie6jpKLvU.2Og6w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/ccb9925c6600d68b3a9aec4b4cd5c966654df4ec.jpg,NATO demands Russia 'withdraw all troops' from Ukraine +D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request +"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" +The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. +Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'","Wed, 30 Oct 2019 17:14:25 -0400",https://news.yahoo.com/joe-biden-describes-health-care-211425414.html,"Biden on Wednesday referred to his health care plan as ""Medicare for all who want it,"" employing the phrase used by rival Pete Buttigieg.",http://l1.yimg.com/uu/api/res/1.2/Sj5K6np5jul6JsE4mN3xMA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4b698050c974ee811746d4918f10c5a8,"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'" +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +NATO demands Russia 'withdraw all troops' from Ukraine,"Wed, 30 Oct 2019 16:23:06 -0400",https://news.yahoo.com/nato-demands-russia-withdraw-troops-ukraine-175324192.html,"NATO chief Jens Stoltenberg on Wednesday welcomed a pullback by the Ukrainian army and Moscow-backed separatists in eastern Ukraine, but reiterated calls for Russia to ""withdraw all their troops"". The move was a precondition for the first face-to-face talks between Russian President Vladimir Putin and his Ukrainian counterpart Volodymyr Zelensky. ""We welcome all efforts to reduce tensions, to withdraw forces and to make sure that we have a peaceful solution to the conflict,"" Stoltenberg said in the Ukrainian port city of Odessa, praising Zelensky's ""renewed effort"".",http://l2.yimg.com/uu/api/res/1.2/dPse.sHie6jpKLvU.2Og6w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/ccb9925c6600d68b3a9aec4b4cd5c966654df4ec.jpg,NATO demands Russia 'withdraw all troops' from Ukraine +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +California businessman gets prison for U.S. college admissions scam,"Wed, 30 Oct 2019 18:25:54 -0400",https://news.yahoo.com/california-businessman-gets-prison-u-222554860.html,"A former California business executive was sentenced on Wednesday to two months in prison for taking part in a vast U.S. college admissions fraud scheme by paying $250,000 to secure his son's admission to the University of Southern California. Federal prosecutors in Boston had sought nine months in prison for Jeffrey Bizzack, who they said sought to secure his son's admission through a ""side door"" by agreeing to bribe a USC official to designate him as a fake athletic recruit. U.S. District Judge Douglas Woodlock said prosecutors lacked evidence to support some of their arguments for a higher sentence.",http://l.yimg.com/uu/api/res/1.2/lEh4n6Nu9abRf1foukH6Gw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/298583d99339cc271df308ca177e42f4,California businessman gets prison for U.S. college admissions scam +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'","Wed, 30 Oct 2019 17:14:25 -0400",https://news.yahoo.com/joe-biden-describes-health-care-211425414.html,"Biden on Wednesday referred to his health care plan as ""Medicare for all who want it,"" employing the phrase used by rival Pete Buttigieg.",http://l1.yimg.com/uu/api/res/1.2/Sj5K6np5jul6JsE4mN3xMA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4b698050c974ee811746d4918f10c5a8,"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'" +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +NATO demands Russia 'withdraw all troops' from Ukraine,"Wed, 30 Oct 2019 16:23:06 -0400",https://news.yahoo.com/nato-demands-russia-withdraw-troops-ukraine-175324192.html,"NATO chief Jens Stoltenberg on Wednesday welcomed a pullback by the Ukrainian army and Moscow-backed separatists in eastern Ukraine, but reiterated calls for Russia to ""withdraw all their troops"". The move was a precondition for the first face-to-face talks between Russian President Vladimir Putin and his Ukrainian counterpart Volodymyr Zelensky. ""We welcome all efforts to reduce tensions, to withdraw forces and to make sure that we have a peaceful solution to the conflict,"" Stoltenberg said in the Ukrainian port city of Odessa, praising Zelensky's ""renewed effort"".",http://l2.yimg.com/uu/api/res/1.2/dPse.sHie6jpKLvU.2Og6w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/ccb9925c6600d68b3a9aec4b4cd5c966654df4ec.jpg,NATO demands Russia 'withdraw all troops' from Ukraine +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +California businessman gets prison for U.S. college admissions scam,"Wed, 30 Oct 2019 18:25:54 -0400",https://news.yahoo.com/california-businessman-gets-prison-u-222554860.html,"A former California business executive was sentenced on Wednesday to two months in prison for taking part in a vast U.S. college admissions fraud scheme by paying $250,000 to secure his son's admission to the University of Southern California. Federal prosecutors in Boston had sought nine months in prison for Jeffrey Bizzack, who they said sought to secure his son's admission through a ""side door"" by agreeing to bribe a USC official to designate him as a fake athletic recruit. U.S. District Judge Douglas Woodlock said prosecutors lacked evidence to support some of their arguments for a higher sentence.",http://l.yimg.com/uu/api/res/1.2/lEh4n6Nu9abRf1foukH6Gw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/298583d99339cc271df308ca177e42f4,California businessman gets prison for U.S. college admissions scam +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation +D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request +"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +Pompeo says U.S. must confront China's Communist Party,"Wed, 30 Oct 2019 21:33:54 -0400",https://news.yahoo.com/pompeo-says-u-must-confront-013354610.html,"U.S. Secretary of State Mike Pompeo on Wednesday stepped up recent U.S. rhetoric targeting China's ruling Communist Party, saying it was focused on international domination and needed to be confronted. Pompeo made the remarks even as the Trump administration said it still expected to sign the first phase of deal to end a damaging trade war with Beijing next month, despite Chile's withdrawal on Wednesday as the host of an APEC summit where U.S. officials had hoped this would happen.",,Pompeo says U.S. must confront China's Communist Party +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +Chicago teachers OK tentative agreement but strike goes on,"Wed, 30 Oct 2019 23:25:16 -0400",https://news.yahoo.com/chicago-teachers-strike-cancels-classes-152827771.html,"Chicago's teachers union voted to approve a tentative contract agreement with city officials Wednesday but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Mayor Lori Lightfoot said Wednesday night that she would not meet that demand. Lightfoot accused the union's top leadership of ""moving the goal posts"" by raising the issue Wednesday rather than in a face-to-face meeting with her on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/lOph.Gw4KRH.g3RNWANvkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/c42eb1c83977ab65c5450381a3e516ab,Chicago teachers OK tentative agreement but strike goes on +California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer,"Wed, 30 Oct 2019 18:24:50 -0400",https://news.yahoo.com/actor-cuba-gooding-jr-charged-222450369.html,"Actor Cuba Gooding Jr, already facing a criminal case over accusations he touched a woman's breasts in a bar and pinched another's buttocks in a nightclub, has been charged in connection with a third woman, his lawyer said on Wednesday. Gooding is expected to appear in court Thursday and plead not guilty to the charges, according to his lawyer, Mark Heller. The charges are not yet public, and a spokeswoman for Manhattan District Attorney Cyrus Vance declined to provide details.",http://l2.yimg.com/uu/api/res/1.2/_mlgfRPFaCxz19SCv.rJTQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/b5800472ccbf51bec8cf4e6e1f98463c,Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer +NATO demands Russia 'withdraw all troops' from Ukraine,"Wed, 30 Oct 2019 16:23:06 -0400",https://news.yahoo.com/nato-demands-russia-withdraw-troops-ukraine-175324192.html,"NATO chief Jens Stoltenberg on Wednesday welcomed a pullback by the Ukrainian army and Moscow-backed separatists in eastern Ukraine, but reiterated calls for Russia to ""withdraw all their troops"". The move was a precondition for the first face-to-face talks between Russian President Vladimir Putin and his Ukrainian counterpart Volodymyr Zelensky. ""We welcome all efforts to reduce tensions, to withdraw forces and to make sure that we have a peaceful solution to the conflict,"" Stoltenberg said in the Ukrainian port city of Odessa, praising Zelensky's ""renewed effort"".",http://l2.yimg.com/uu/api/res/1.2/dPse.sHie6jpKLvU.2Og6w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/ccb9925c6600d68b3a9aec4b4cd5c966654df4ec.jpg,NATO demands Russia 'withdraw all troops' from Ukraine +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation +D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request +"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +Pompeo says U.S. must confront China's Communist Party,"Wed, 30 Oct 2019 21:33:54 -0400",https://news.yahoo.com/pompeo-says-u-must-confront-013354610.html,"U.S. Secretary of State Mike Pompeo on Wednesday stepped up recent U.S. rhetoric targeting China's ruling Communist Party, saying it was focused on international domination and needed to be confronted. Pompeo made the remarks even as the Trump administration said it still expected to sign the first phase of deal to end a damaging trade war with Beijing next month, despite Chile's withdrawal on Wednesday as the host of an APEC summit where U.S. officials had hoped this would happen.",,Pompeo says U.S. must confront China's Communist Party +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +Chicago teachers OK tentative agreement but strike goes on,"Wed, 30 Oct 2019 23:25:16 -0400",https://news.yahoo.com/chicago-teachers-strike-cancels-classes-152827771.html,"Chicago's teachers union voted to approve a tentative contract agreement with city officials Wednesday but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Mayor Lori Lightfoot said Wednesday night that she would not meet that demand. Lightfoot accused the union's top leadership of ""moving the goal posts"" by raising the issue Wednesday rather than in a face-to-face meeting with her on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/lOph.Gw4KRH.g3RNWANvkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/c42eb1c83977ab65c5450381a3e516ab,Chicago teachers OK tentative agreement but strike goes on +California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer,"Wed, 30 Oct 2019 18:24:50 -0400",https://news.yahoo.com/actor-cuba-gooding-jr-charged-222450369.html,"Actor Cuba Gooding Jr, already facing a criminal case over accusations he touched a woman's breasts in a bar and pinched another's buttocks in a nightclub, has been charged in connection with a third woman, his lawyer said on Wednesday. Gooding is expected to appear in court Thursday and plead not guilty to the charges, according to his lawyer, Mark Heller. The charges are not yet public, and a spokeswoman for Manhattan District Attorney Cyrus Vance declined to provide details.",http://l2.yimg.com/uu/api/res/1.2/_mlgfRPFaCxz19SCv.rJTQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/b5800472ccbf51bec8cf4e6e1f98463c,Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer +NATO demands Russia 'withdraw all troops' from Ukraine,"Wed, 30 Oct 2019 16:23:06 -0400",https://news.yahoo.com/nato-demands-russia-withdraw-troops-ukraine-175324192.html,"NATO chief Jens Stoltenberg on Wednesday welcomed a pullback by the Ukrainian army and Moscow-backed separatists in eastern Ukraine, but reiterated calls for Russia to ""withdraw all their troops"". The move was a precondition for the first face-to-face talks between Russian President Vladimir Putin and his Ukrainian counterpart Volodymyr Zelensky. ""We welcome all efforts to reduce tensions, to withdraw forces and to make sure that we have a peaceful solution to the conflict,"" Stoltenberg said in the Ukrainian port city of Odessa, praising Zelensky's ""renewed effort"".",http://l2.yimg.com/uu/api/res/1.2/dPse.sHie6jpKLvU.2Og6w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/ccb9925c6600d68b3a9aec4b4cd5c966654df4ec.jpg,NATO demands Russia 'withdraw all troops' from Ukraine +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation +D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request +"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +Pompeo says U.S. must confront China's Communist Party,"Wed, 30 Oct 2019 21:33:54 -0400",https://news.yahoo.com/pompeo-says-u-must-confront-013354610.html,"U.S. Secretary of State Mike Pompeo on Wednesday stepped up recent U.S. rhetoric targeting China's ruling Communist Party, saying it was focused on international domination and needed to be confronted. Pompeo made the remarks even as the Trump administration said it still expected to sign the first phase of deal to end a damaging trade war with Beijing next month, despite Chile's withdrawal on Wednesday as the host of an APEC summit where U.S. officials had hoped this would happen.",,Pompeo says U.S. must confront China's Communist Party +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +Chicago teachers OK tentative agreement but strike goes on,"Wed, 30 Oct 2019 23:25:16 -0400",https://news.yahoo.com/chicago-teachers-strike-cancels-classes-152827771.html,"Chicago's teachers union voted to approve a tentative contract agreement with city officials Wednesday but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Mayor Lori Lightfoot said Wednesday night that she would not meet that demand. Lightfoot accused the union's top leadership of ""moving the goal posts"" by raising the issue Wednesday rather than in a face-to-face meeting with her on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/lOph.Gw4KRH.g3RNWANvkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/c42eb1c83977ab65c5450381a3e516ab,Chicago teachers OK tentative agreement but strike goes on +California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer,"Wed, 30 Oct 2019 18:24:50 -0400",https://news.yahoo.com/actor-cuba-gooding-jr-charged-222450369.html,"Actor Cuba Gooding Jr, already facing a criminal case over accusations he touched a woman's breasts in a bar and pinched another's buttocks in a nightclub, has been charged in connection with a third woman, his lawyer said on Wednesday. Gooding is expected to appear in court Thursday and plead not guilty to the charges, according to his lawyer, Mark Heller. The charges are not yet public, and a spokeswoman for Manhattan District Attorney Cyrus Vance declined to provide details.",http://l2.yimg.com/uu/api/res/1.2/_mlgfRPFaCxz19SCv.rJTQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/b5800472ccbf51bec8cf4e6e1f98463c,Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer +NATO demands Russia 'withdraw all troops' from Ukraine,"Wed, 30 Oct 2019 16:23:06 -0400",https://news.yahoo.com/nato-demands-russia-withdraw-troops-ukraine-175324192.html,"NATO chief Jens Stoltenberg on Wednesday welcomed a pullback by the Ukrainian army and Moscow-backed separatists in eastern Ukraine, but reiterated calls for Russia to ""withdraw all their troops"". The move was a precondition for the first face-to-face talks between Russian President Vladimir Putin and his Ukrainian counterpart Volodymyr Zelensky. ""We welcome all efforts to reduce tensions, to withdraw forces and to make sure that we have a peaceful solution to the conflict,"" Stoltenberg said in the Ukrainian port city of Odessa, praising Zelensky's ""renewed effort"".",http://l2.yimg.com/uu/api/res/1.2/dPse.sHie6jpKLvU.2Og6w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/ccb9925c6600d68b3a9aec4b4cd5c966654df4ec.jpg,NATO demands Russia 'withdraw all troops' from Ukraine +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +The Democrats' impeachment process has a credibility problem,"Wed, 30 Oct 2019 10:02:29 -0400",https://news.yahoo.com/democrats-impeachment-process-credibility-problem-140229011.html,"Has the House impeachment inquiry hit a brick wall on credibility? Or have House Democrats decided to call Republicans' bluff?After weeks of refusing to hold a full floor vote to formally launch an impeachment inquiry, House Speaker Nancy Pelosi (D-Calif.) abruptly changed position this week. A Thursday vote will set out more clear parameters for the ongoing investigation without explicitly declaring an impeachment inquiry, but it's far from clear whether this changes anything appreciably -- or if there's anything to change with the current focus on Ukraine policy as the predicate for impeachment.The bill that emerged Tuesday afternoon appears to directly address some of the key criticisms of House Republicans, who grew so frustrated with the closed hearings that they staged an intervention of sorts last week, breaching the Secure Compartmented Information Facility (SCIF) in which the depositions were being taken under the control of House Intelligence Chair Adam Schiff. That set off worries among Democrats that further such demonstrations could obstruct and drag out the impeachment process into next year and into the election cycle, something Pelosi would like to avoid.Democrats' claims that the demonstrations were a GOP stunt had some basis in fact. Some of the Republicans who participated actually did have access to the hearings as members of three committees participating in the testimony. Contrary to some claims made at the time, Republican committee members had the opportunity to ask questions of the witnesses during the deposition and were very engaged in that process.Still, other Republican complaints had started to take their toll. Republicans wanted Democrats to hold a full House vote to openly authorize an impeachment inquiry, rather than use committees to conduct an ad hoc investigation while House Democratic leadership publicly acknowledged that impeachment was the goal. They also wanted open hearings with the witnesses being subpoenaed, which Democrats refused to grant in order to keep witnesses from knowing preceding testimony. Democrats pointed out that the House rules allowed for closed-session depositions and compared them to secret grand-jury proceedings, but Republicans countered that grand juries don't leak characterizations of the testimony at pressers, as Schiff and other Democrats had been doing all along.That has made the proceedings seem as though they're being conducted by a kangaroo court, which has allowed Trump to argue that the process is corrupt. The only way to gain traction for this process is to give it more credibility -- and to call the bluff of Republicans and Trump. Thus, Pelosi introduced a bill that will allow Republicans to call their own witnesses and to access all deposition materials, under the same rules used in the Bill Clinton impeachment process in 1998. The bill also establishes a mechanism for the full release of testimony, which Republicans have repeatedly demanded.This presents an immediate tactical risk for the White House. One of Pelosi's motives is to parry Trump's refusal to cooperate based on a lack of formal approval by the full House. A federal court ruled against Trump last week, but Trump can tie that question up for months on appeals, time that Pelosi perceives she does not have. A full House vote approving these rules not only means that Republicans no longer have due-process complaints (at least going forward), it signals to courts that the full House has indeed given tacit approval for an impeachment inquiry in providing a relatively fair structure for it.However, Pelosi is more worried about a different court: the court of public opinion. That perception that the impeachment process is unfair has hampered Democrats' ability to generate the kind of public support they need to take this to a full vote on impeachment without risking the gains Pelosi made in the 2018 midterms. National polling showing support for impeachment gaining momentum overall, but the response from the American public looks quite different on a state-by-state basis. A poll by The New York Times and Siena College last week showed that voters in six critical swing states with the closest margins in 2016 generally oppose impeachment, 43/53. Those numbers would suggest that continuing on this impeachment process might produce a Pyrrhic victory for Democrats in 2020, one that could produce a historic win for an already-impeached president for the first time ever.To fix that problem, and to force the Senate to take this more seriously, Pelosi has to revamp the process to provide at least the appearance of fairness. However, it's not likely to matter in the end. Impeachment is only the first step in the removal process, and in this case it's likely to be the last step Democrats can successfully take.The Republicans control the Senate, but their majority matters less than the fact that Democrats don't have a supermajority. If Democrats had uncovered a truly serious crime in this probe, that would likely convince at least 20 Senate Republicans to make Mike Pence president. The core problem is that Ukraine-Gate doesn't appear to involve an explicit statutory crime at all, but instead an alleged abuse of authority to gain political advantage over former Vice President Joe Biden. The House can decide what constitutes an impeachable offense, but the Senate decides whether it's even worthy of a full trial, let alone a removal.An impeachment without a removal will, in the end, look a lot like a political campaign no matter how much Pelosi improves the process. Voters will ask themselves why Democrats spent all year obsessed with impeachment under varying rationalizations and then chose the one issue on which they could almost guarantee no success in removal. Pelosi may win a tactical victory with this upcoming vote, but it's not going to solve the big strategic issue awaiting Democrats at the end of this process.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,The Democrats' impeachment process has a credibility problem +Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer,"Wed, 30 Oct 2019 18:24:50 -0400",https://news.yahoo.com/actor-cuba-gooding-jr-charged-222450369.html,"Actor Cuba Gooding Jr, already facing a criminal case over accusations he touched a woman's breasts in a bar and pinched another's buttocks in a nightclub, has been charged in connection with a third woman, his lawyer said on Wednesday. Gooding is expected to appear in court Thursday and plead not guilty to the charges, according to his lawyer, Mark Heller. The charges are not yet public, and a spokeswoman for Manhattan District Attorney Cyrus Vance declined to provide details.",http://l2.yimg.com/uu/api/res/1.2/_mlgfRPFaCxz19SCv.rJTQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/b5800472ccbf51bec8cf4e6e1f98463c,Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Chicago teachers OK tentative agreement but strike goes on,"Wed, 30 Oct 2019 23:25:16 -0400",https://news.yahoo.com/chicago-teachers-strike-cancels-classes-152827771.html,"Chicago's teachers union voted to approve a tentative contract agreement with city officials Wednesday but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Mayor Lori Lightfoot said Wednesday night that she would not meet that demand. Lightfoot accused the union's top leadership of ""moving the goal posts"" by raising the issue Wednesday rather than in a face-to-face meeting with her on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/lOph.Gw4KRH.g3RNWANvkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/c42eb1c83977ab65c5450381a3e516ab,Chicago teachers OK tentative agreement but strike goes on +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?),"Wed, 30 Oct 2019 17:00:00 -0400",https://news.yahoo.com/marines-very-own-anti-ship-210000136.html,Should China be worried?,http://l2.yimg.com/uu/api/res/1.2/8kAnuL45wTHBUJLeuWbK0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/4e5a8d517912a6283e199c4f2d34539a,The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?) +Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? +"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" +South Africans Face Tax Increases as Revenue Collection Lags,"Wed, 30 Oct 2019 08:05:09 -0400",https://news.yahoo.com/south-africans-face-tax-increases-120509942.html,"(Bloomberg) -- Explore what’s moving the global economy in the new season of the Stephanomics podcast. Subscribe via Pocket Cast or iTunes.South Africans have to brace for higher taxes next year as revenue collection falls short of estimates.Bailouts for the state-owned power utility, broadcaster, airlines and arms maker – together with a failure to curb the public-sector wage bill and stem fiscal leakages – have sapped the state’s resources. Africa’s most-industrialized economy hasn’t expanded by more than 2% annually since 2013, damping confidence and resulting in the longest business-cycle downturn since 1945, weighing on tax income.The National Treasury increased the value-added tax rate last year for the time in more than two decades and has also raised taxes for high-income earners to plug the widening budget deficit. That has added to the strain on consumption spending and economic growth.“Significant tax increases over the past several years leave only moderate scope to boost tax revenue at this time,” the Treasury said in its medium-term budget policy statement released Wednesday in Cape Town. Additional tax measures are under consideration to raise an extra 10 billion rand ($683 million) in fiscal 2021, it said, without giving details.“Given the fiscal position we find ourselves in, all tax options need to be on the table,” said Chris Axelson, chief director for economic tax analysis in the Treasury.The South African Revenue Service will probably collect 1.37 trillion rand in the 2020 fiscal year, 52.5 billion rand less than forecast in February, the Treasury said. The shortfall will be 84 billion rand in 2021 and 114.7 billion rand in 2022, it said.The shortfall reflects “job losses, lower wage settlements and smaller bonuses reducing personal income-tax collection,” the Treasury said. Reduced profitability in a difficult trading environment meant lower-than-expected corporate income-tax collections, while weak household consumption moderated the increase in revenue from value-added tax, it said.The February budget included 7 billion rand from the sale of non-core assets by March, but “there is a risk these sales will not be completed by the end of the financial year,” the Treasury said.The government insists that citizens of Gauteng – which houses the financial hub of Johannesburg and the capital, Pretoria – must pay for electronically administered tolls to use the province’s roads, and will strengthen compliance measures.In July, Transport Minister Fikile Mbalula said South Africa is considering the options available on scrapping the tolls.“Not paying your tolls has already led to our roads deteriorating,” Finance Minister Tito Mboweni said in a prepared copy if his speech. “We have been unable to maintain the network. I urge the nation to please pay your bills.”\--With assistance from Zoe Schneeweiss.To contact the reporter on this story: Ana Monteiro in Johannesburg at amonteiro4@bloomberg.netTo contact the editors responsible for this story: Rene Vollgraaff at rvollgraaff@bloomberg.net, Robert BrandFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/uvN2DnzYlF.TzezBAQo5Gg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8a4780226c720322234fa6fbc613c5e6,South Africans Face Tax Increases as Revenue Collection Lags +The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation +D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request +"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +Pompeo says U.S. must confront China's Communist Party,"Wed, 30 Oct 2019 21:33:54 -0400",https://news.yahoo.com/pompeo-says-u-must-confront-013354610.html,"U.S. Secretary of State Mike Pompeo on Wednesday stepped up recent U.S. rhetoric targeting China's ruling Communist Party, saying it was focused on international domination and needed to be confronted. Pompeo made the remarks even as the Trump administration said it still expected to sign the first phase of deal to end a damaging trade war with Beijing next month, despite Chile's withdrawal on Wednesday as the host of an APEC summit where U.S. officials had hoped this would happen.",,Pompeo says U.S. must confront China's Communist Party +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +Chicago teachers OK tentative agreement but strike goes on,"Wed, 30 Oct 2019 23:25:16 -0400",https://news.yahoo.com/chicago-teachers-strike-cancels-classes-152827771.html,"Chicago's teachers union voted to approve a tentative contract agreement with city officials Wednesday but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Mayor Lori Lightfoot said Wednesday night that she would not meet that demand. Lightfoot accused the union's top leadership of ""moving the goal posts"" by raising the issue Wednesday rather than in a face-to-face meeting with her on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/lOph.Gw4KRH.g3RNWANvkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/c42eb1c83977ab65c5450381a3e516ab,Chicago teachers OK tentative agreement but strike goes on +California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer,"Wed, 30 Oct 2019 18:24:50 -0400",https://news.yahoo.com/actor-cuba-gooding-jr-charged-222450369.html,"Actor Cuba Gooding Jr, already facing a criminal case over accusations he touched a woman's breasts in a bar and pinched another's buttocks in a nightclub, has been charged in connection with a third woman, his lawyer said on Wednesday. Gooding is expected to appear in court Thursday and plead not guilty to the charges, according to his lawyer, Mark Heller. The charges are not yet public, and a spokeswoman for Manhattan District Attorney Cyrus Vance declined to provide details.",http://l2.yimg.com/uu/api/res/1.2/_mlgfRPFaCxz19SCv.rJTQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/b5800472ccbf51bec8cf4e6e1f98463c,Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer +NATO demands Russia 'withdraw all troops' from Ukraine,"Wed, 30 Oct 2019 16:23:06 -0400",https://news.yahoo.com/nato-demands-russia-withdraw-troops-ukraine-175324192.html,"NATO chief Jens Stoltenberg on Wednesday welcomed a pullback by the Ukrainian army and Moscow-backed separatists in eastern Ukraine, but reiterated calls for Russia to ""withdraw all their troops"". The move was a precondition for the first face-to-face talks between Russian President Vladimir Putin and his Ukrainian counterpart Volodymyr Zelensky. ""We welcome all efforts to reduce tensions, to withdraw forces and to make sure that we have a peaceful solution to the conflict,"" Stoltenberg said in the Ukrainian port city of Odessa, praising Zelensky's ""renewed effort"".",http://l2.yimg.com/uu/api/res/1.2/dPse.sHie6jpKLvU.2Og6w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/ccb9925c6600d68b3a9aec4b4cd5c966654df4ec.jpg,NATO demands Russia 'withdraw all troops' from Ukraine +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +The Democrats' impeachment process has a credibility problem,"Wed, 30 Oct 2019 10:02:29 -0400",https://news.yahoo.com/democrats-impeachment-process-credibility-problem-140229011.html,"Has the House impeachment inquiry hit a brick wall on credibility? Or have House Democrats decided to call Republicans' bluff?After weeks of refusing to hold a full floor vote to formally launch an impeachment inquiry, House Speaker Nancy Pelosi (D-Calif.) abruptly changed position this week. A Thursday vote will set out more clear parameters for the ongoing investigation without explicitly declaring an impeachment inquiry, but it's far from clear whether this changes anything appreciably -- or if there's anything to change with the current focus on Ukraine policy as the predicate for impeachment.The bill that emerged Tuesday afternoon appears to directly address some of the key criticisms of House Republicans, who grew so frustrated with the closed hearings that they staged an intervention of sorts last week, breaching the Secure Compartmented Information Facility (SCIF) in which the depositions were being taken under the control of House Intelligence Chair Adam Schiff. That set off worries among Democrats that further such demonstrations could obstruct and drag out the impeachment process into next year and into the election cycle, something Pelosi would like to avoid.Democrats' claims that the demonstrations were a GOP stunt had some basis in fact. Some of the Republicans who participated actually did have access to the hearings as members of three committees participating in the testimony. Contrary to some claims made at the time, Republican committee members had the opportunity to ask questions of the witnesses during the deposition and were very engaged in that process.Still, other Republican complaints had started to take their toll. Republicans wanted Democrats to hold a full House vote to openly authorize an impeachment inquiry, rather than use committees to conduct an ad hoc investigation while House Democratic leadership publicly acknowledged that impeachment was the goal. They also wanted open hearings with the witnesses being subpoenaed, which Democrats refused to grant in order to keep witnesses from knowing preceding testimony. Democrats pointed out that the House rules allowed for closed-session depositions and compared them to secret grand-jury proceedings, but Republicans countered that grand juries don't leak characterizations of the testimony at pressers, as Schiff and other Democrats had been doing all along.That has made the proceedings seem as though they're being conducted by a kangaroo court, which has allowed Trump to argue that the process is corrupt. The only way to gain traction for this process is to give it more credibility -- and to call the bluff of Republicans and Trump. Thus, Pelosi introduced a bill that will allow Republicans to call their own witnesses and to access all deposition materials, under the same rules used in the Bill Clinton impeachment process in 1998. The bill also establishes a mechanism for the full release of testimony, which Republicans have repeatedly demanded.This presents an immediate tactical risk for the White House. One of Pelosi's motives is to parry Trump's refusal to cooperate based on a lack of formal approval by the full House. A federal court ruled against Trump last week, but Trump can tie that question up for months on appeals, time that Pelosi perceives she does not have. A full House vote approving these rules not only means that Republicans no longer have due-process complaints (at least going forward), it signals to courts that the full House has indeed given tacit approval for an impeachment inquiry in providing a relatively fair structure for it.However, Pelosi is more worried about a different court: the court of public opinion. That perception that the impeachment process is unfair has hampered Democrats' ability to generate the kind of public support they need to take this to a full vote on impeachment without risking the gains Pelosi made in the 2018 midterms. National polling showing support for impeachment gaining momentum overall, but the response from the American public looks quite different on a state-by-state basis. A poll by The New York Times and Siena College last week showed that voters in six critical swing states with the closest margins in 2016 generally oppose impeachment, 43/53. Those numbers would suggest that continuing on this impeachment process might produce a Pyrrhic victory for Democrats in 2020, one that could produce a historic win for an already-impeached president for the first time ever.To fix that problem, and to force the Senate to take this more seriously, Pelosi has to revamp the process to provide at least the appearance of fairness. However, it's not likely to matter in the end. Impeachment is only the first step in the removal process, and in this case it's likely to be the last step Democrats can successfully take.The Republicans control the Senate, but their majority matters less than the fact that Democrats don't have a supermajority. If Democrats had uncovered a truly serious crime in this probe, that would likely convince at least 20 Senate Republicans to make Mike Pence president. The core problem is that Ukraine-Gate doesn't appear to involve an explicit statutory crime at all, but instead an alleged abuse of authority to gain political advantage over former Vice President Joe Biden. The House can decide what constitutes an impeachable offense, but the Senate decides whether it's even worthy of a full trial, let alone a removal.An impeachment without a removal will, in the end, look a lot like a political campaign no matter how much Pelosi improves the process. Voters will ask themselves why Democrats spent all year obsessed with impeachment under varying rationalizations and then chose the one issue on which they could almost guarantee no success in removal. Pelosi may win a tactical victory with this upcoming vote, but it's not going to solve the big strategic issue awaiting Democrats at the end of this process.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,The Democrats' impeachment process has a credibility problem +Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer,"Wed, 30 Oct 2019 18:24:50 -0400",https://news.yahoo.com/actor-cuba-gooding-jr-charged-222450369.html,"Actor Cuba Gooding Jr, already facing a criminal case over accusations he touched a woman's breasts in a bar and pinched another's buttocks in a nightclub, has been charged in connection with a third woman, his lawyer said on Wednesday. Gooding is expected to appear in court Thursday and plead not guilty to the charges, according to his lawyer, Mark Heller. The charges are not yet public, and a spokeswoman for Manhattan District Attorney Cyrus Vance declined to provide details.",http://l2.yimg.com/uu/api/res/1.2/_mlgfRPFaCxz19SCv.rJTQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/b5800472ccbf51bec8cf4e6e1f98463c,Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Chicago teachers OK tentative agreement but strike goes on,"Wed, 30 Oct 2019 23:25:16 -0400",https://news.yahoo.com/chicago-teachers-strike-cancels-classes-152827771.html,"Chicago's teachers union voted to approve a tentative contract agreement with city officials Wednesday but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Mayor Lori Lightfoot said Wednesday night that she would not meet that demand. Lightfoot accused the union's top leadership of ""moving the goal posts"" by raising the issue Wednesday rather than in a face-to-face meeting with her on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/lOph.Gw4KRH.g3RNWANvkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/c42eb1c83977ab65c5450381a3e516ab,Chicago teachers OK tentative agreement but strike goes on +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?),"Wed, 30 Oct 2019 17:00:00 -0400",https://news.yahoo.com/marines-very-own-anti-ship-210000136.html,Should China be worried?,http://l2.yimg.com/uu/api/res/1.2/8kAnuL45wTHBUJLeuWbK0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/4e5a8d517912a6283e199c4f2d34539a,The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?) +Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? +"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" +South Africans Face Tax Increases as Revenue Collection Lags,"Wed, 30 Oct 2019 08:05:09 -0400",https://news.yahoo.com/south-africans-face-tax-increases-120509942.html,"(Bloomberg) -- Explore what’s moving the global economy in the new season of the Stephanomics podcast. Subscribe via Pocket Cast or iTunes.South Africans have to brace for higher taxes next year as revenue collection falls short of estimates.Bailouts for the state-owned power utility, broadcaster, airlines and arms maker – together with a failure to curb the public-sector wage bill and stem fiscal leakages – have sapped the state’s resources. Africa’s most-industrialized economy hasn’t expanded by more than 2% annually since 2013, damping confidence and resulting in the longest business-cycle downturn since 1945, weighing on tax income.The National Treasury increased the value-added tax rate last year for the time in more than two decades and has also raised taxes for high-income earners to plug the widening budget deficit. That has added to the strain on consumption spending and economic growth.“Significant tax increases over the past several years leave only moderate scope to boost tax revenue at this time,” the Treasury said in its medium-term budget policy statement released Wednesday in Cape Town. Additional tax measures are under consideration to raise an extra 10 billion rand ($683 million) in fiscal 2021, it said, without giving details.“Given the fiscal position we find ourselves in, all tax options need to be on the table,” said Chris Axelson, chief director for economic tax analysis in the Treasury.The South African Revenue Service will probably collect 1.37 trillion rand in the 2020 fiscal year, 52.5 billion rand less than forecast in February, the Treasury said. The shortfall will be 84 billion rand in 2021 and 114.7 billion rand in 2022, it said.The shortfall reflects “job losses, lower wage settlements and smaller bonuses reducing personal income-tax collection,” the Treasury said. Reduced profitability in a difficult trading environment meant lower-than-expected corporate income-tax collections, while weak household consumption moderated the increase in revenue from value-added tax, it said.The February budget included 7 billion rand from the sale of non-core assets by March, but “there is a risk these sales will not be completed by the end of the financial year,” the Treasury said.The government insists that citizens of Gauteng – which houses the financial hub of Johannesburg and the capital, Pretoria – must pay for electronically administered tolls to use the province’s roads, and will strengthen compliance measures.In July, Transport Minister Fikile Mbalula said South Africa is considering the options available on scrapping the tolls.“Not paying your tolls has already led to our roads deteriorating,” Finance Minister Tito Mboweni said in a prepared copy if his speech. “We have been unable to maintain the network. I urge the nation to please pay your bills.”\--With assistance from Zoe Schneeweiss.To contact the reporter on this story: Ana Monteiro in Johannesburg at amonteiro4@bloomberg.netTo contact the editors responsible for this story: Rene Vollgraaff at rvollgraaff@bloomberg.net, Robert BrandFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/uvN2DnzYlF.TzezBAQo5Gg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8a4780226c720322234fa6fbc613c5e6,South Africans Face Tax Increases as Revenue Collection Lags +The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +The Democrats' impeachment process has a credibility problem,"Wed, 30 Oct 2019 10:02:29 -0400",https://news.yahoo.com/democrats-impeachment-process-credibility-problem-140229011.html,"Has the House impeachment inquiry hit a brick wall on credibility? Or have House Democrats decided to call Republicans' bluff?After weeks of refusing to hold a full floor vote to formally launch an impeachment inquiry, House Speaker Nancy Pelosi (D-Calif.) abruptly changed position this week. A Thursday vote will set out more clear parameters for the ongoing investigation without explicitly declaring an impeachment inquiry, but it's far from clear whether this changes anything appreciably -- or if there's anything to change with the current focus on Ukraine policy as the predicate for impeachment.The bill that emerged Tuesday afternoon appears to directly address some of the key criticisms of House Republicans, who grew so frustrated with the closed hearings that they staged an intervention of sorts last week, breaching the Secure Compartmented Information Facility (SCIF) in which the depositions were being taken under the control of House Intelligence Chair Adam Schiff. That set off worries among Democrats that further such demonstrations could obstruct and drag out the impeachment process into next year and into the election cycle, something Pelosi would like to avoid.Democrats' claims that the demonstrations were a GOP stunt had some basis in fact. Some of the Republicans who participated actually did have access to the hearings as members of three committees participating in the testimony. Contrary to some claims made at the time, Republican committee members had the opportunity to ask questions of the witnesses during the deposition and were very engaged in that process.Still, other Republican complaints had started to take their toll. Republicans wanted Democrats to hold a full House vote to openly authorize an impeachment inquiry, rather than use committees to conduct an ad hoc investigation while House Democratic leadership publicly acknowledged that impeachment was the goal. They also wanted open hearings with the witnesses being subpoenaed, which Democrats refused to grant in order to keep witnesses from knowing preceding testimony. Democrats pointed out that the House rules allowed for closed-session depositions and compared them to secret grand-jury proceedings, but Republicans countered that grand juries don't leak characterizations of the testimony at pressers, as Schiff and other Democrats had been doing all along.That has made the proceedings seem as though they're being conducted by a kangaroo court, which has allowed Trump to argue that the process is corrupt. The only way to gain traction for this process is to give it more credibility -- and to call the bluff of Republicans and Trump. Thus, Pelosi introduced a bill that will allow Republicans to call their own witnesses and to access all deposition materials, under the same rules used in the Bill Clinton impeachment process in 1998. The bill also establishes a mechanism for the full release of testimony, which Republicans have repeatedly demanded.This presents an immediate tactical risk for the White House. One of Pelosi's motives is to parry Trump's refusal to cooperate based on a lack of formal approval by the full House. A federal court ruled against Trump last week, but Trump can tie that question up for months on appeals, time that Pelosi perceives she does not have. A full House vote approving these rules not only means that Republicans no longer have due-process complaints (at least going forward), it signals to courts that the full House has indeed given tacit approval for an impeachment inquiry in providing a relatively fair structure for it.However, Pelosi is more worried about a different court: the court of public opinion. That perception that the impeachment process is unfair has hampered Democrats' ability to generate the kind of public support they need to take this to a full vote on impeachment without risking the gains Pelosi made in the 2018 midterms. National polling showing support for impeachment gaining momentum overall, but the response from the American public looks quite different on a state-by-state basis. A poll by The New York Times and Siena College last week showed that voters in six critical swing states with the closest margins in 2016 generally oppose impeachment, 43/53. Those numbers would suggest that continuing on this impeachment process might produce a Pyrrhic victory for Democrats in 2020, one that could produce a historic win for an already-impeached president for the first time ever.To fix that problem, and to force the Senate to take this more seriously, Pelosi has to revamp the process to provide at least the appearance of fairness. However, it's not likely to matter in the end. Impeachment is only the first step in the removal process, and in this case it's likely to be the last step Democrats can successfully take.The Republicans control the Senate, but their majority matters less than the fact that Democrats don't have a supermajority. If Democrats had uncovered a truly serious crime in this probe, that would likely convince at least 20 Senate Republicans to make Mike Pence president. The core problem is that Ukraine-Gate doesn't appear to involve an explicit statutory crime at all, but instead an alleged abuse of authority to gain political advantage over former Vice President Joe Biden. The House can decide what constitutes an impeachable offense, but the Senate decides whether it's even worthy of a full trial, let alone a removal.An impeachment without a removal will, in the end, look a lot like a political campaign no matter how much Pelosi improves the process. Voters will ask themselves why Democrats spent all year obsessed with impeachment under varying rationalizations and then chose the one issue on which they could almost guarantee no success in removal. Pelosi may win a tactical victory with this upcoming vote, but it's not going to solve the big strategic issue awaiting Democrats at the end of this process.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,The Democrats' impeachment process has a credibility problem +Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer,"Wed, 30 Oct 2019 18:24:50 -0400",https://news.yahoo.com/actor-cuba-gooding-jr-charged-222450369.html,"Actor Cuba Gooding Jr, already facing a criminal case over accusations he touched a woman's breasts in a bar and pinched another's buttocks in a nightclub, has been charged in connection with a third woman, his lawyer said on Wednesday. Gooding is expected to appear in court Thursday and plead not guilty to the charges, according to his lawyer, Mark Heller. The charges are not yet public, and a spokeswoman for Manhattan District Attorney Cyrus Vance declined to provide details.",http://l2.yimg.com/uu/api/res/1.2/_mlgfRPFaCxz19SCv.rJTQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/b5800472ccbf51bec8cf4e6e1f98463c,Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Chicago teachers OK tentative agreement but strike goes on,"Wed, 30 Oct 2019 23:25:16 -0400",https://news.yahoo.com/chicago-teachers-strike-cancels-classes-152827771.html,"Chicago's teachers union voted to approve a tentative contract agreement with city officials Wednesday but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Mayor Lori Lightfoot said Wednesday night that she would not meet that demand. Lightfoot accused the union's top leadership of ""moving the goal posts"" by raising the issue Wednesday rather than in a face-to-face meeting with her on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/lOph.Gw4KRH.g3RNWANvkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/c42eb1c83977ab65c5450381a3e516ab,Chicago teachers OK tentative agreement but strike goes on +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?),"Wed, 30 Oct 2019 17:00:00 -0400",https://news.yahoo.com/marines-very-own-anti-ship-210000136.html,Should China be worried?,http://l2.yimg.com/uu/api/res/1.2/8kAnuL45wTHBUJLeuWbK0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/4e5a8d517912a6283e199c4f2d34539a,The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?) +Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? +"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" +South Africans Face Tax Increases as Revenue Collection Lags,"Wed, 30 Oct 2019 08:05:09 -0400",https://news.yahoo.com/south-africans-face-tax-increases-120509942.html,"(Bloomberg) -- Explore what’s moving the global economy in the new season of the Stephanomics podcast. Subscribe via Pocket Cast or iTunes.South Africans have to brace for higher taxes next year as revenue collection falls short of estimates.Bailouts for the state-owned power utility, broadcaster, airlines and arms maker – together with a failure to curb the public-sector wage bill and stem fiscal leakages – have sapped the state’s resources. Africa’s most-industrialized economy hasn’t expanded by more than 2% annually since 2013, damping confidence and resulting in the longest business-cycle downturn since 1945, weighing on tax income.The National Treasury increased the value-added tax rate last year for the time in more than two decades and has also raised taxes for high-income earners to plug the widening budget deficit. That has added to the strain on consumption spending and economic growth.“Significant tax increases over the past several years leave only moderate scope to boost tax revenue at this time,” the Treasury said in its medium-term budget policy statement released Wednesday in Cape Town. Additional tax measures are under consideration to raise an extra 10 billion rand ($683 million) in fiscal 2021, it said, without giving details.“Given the fiscal position we find ourselves in, all tax options need to be on the table,” said Chris Axelson, chief director for economic tax analysis in the Treasury.The South African Revenue Service will probably collect 1.37 trillion rand in the 2020 fiscal year, 52.5 billion rand less than forecast in February, the Treasury said. The shortfall will be 84 billion rand in 2021 and 114.7 billion rand in 2022, it said.The shortfall reflects “job losses, lower wage settlements and smaller bonuses reducing personal income-tax collection,” the Treasury said. Reduced profitability in a difficult trading environment meant lower-than-expected corporate income-tax collections, while weak household consumption moderated the increase in revenue from value-added tax, it said.The February budget included 7 billion rand from the sale of non-core assets by March, but “there is a risk these sales will not be completed by the end of the financial year,” the Treasury said.The government insists that citizens of Gauteng – which houses the financial hub of Johannesburg and the capital, Pretoria – must pay for electronically administered tolls to use the province’s roads, and will strengthen compliance measures.In July, Transport Minister Fikile Mbalula said South Africa is considering the options available on scrapping the tolls.“Not paying your tolls has already led to our roads deteriorating,” Finance Minister Tito Mboweni said in a prepared copy if his speech. “We have been unable to maintain the network. I urge the nation to please pay your bills.”\--With assistance from Zoe Schneeweiss.To contact the reporter on this story: Ana Monteiro in Johannesburg at amonteiro4@bloomberg.netTo contact the editors responsible for this story: Rene Vollgraaff at rvollgraaff@bloomberg.net, Robert BrandFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/uvN2DnzYlF.TzezBAQo5Gg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8a4780226c720322234fa6fbc613c5e6,South Africans Face Tax Increases as Revenue Collection Lags +The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Ilhan Omar refuses to back vote recognising Armenian genocide,"Wed, 30 Oct 2019 10:33:02 -0400",https://news.yahoo.com/ilhan-omar-refuses-back-vote-143204618.html,"Ilhan Omar declined to vote in favour of a resolution recognising the mass killing of Armenians by Ottoman Turks as a genocide, saying any ""true acknowledgement"" of such crimes must include other historical ""mass slaughters"".The Minnesota Democrat was one of just three House members to vote “present” on the resolution that passed in an overwhelming 405-11 vote.",http://l.yimg.com/uu/api/res/1.2/bKw.a_m3fIWm1q5agamYdg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/1897802b491bb4f925ff56eb4356225e,Ilhan Omar refuses to back vote recognising Armenian genocide +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +"Special Report: In a working-class Hong Kong neighborhood, the protests hit home","Wed, 30 Oct 2019 08:05:30 -0400",https://news.yahoo.com/special-report-working-class-hong-120530805.html,"From the top of Lion Rock, all of Hong Kong reveals itself: the sprawl of the Kowloon Peninsula directly below, the iconic Star Ferry plying the waters of Victoria Harbor, the moneyed heights of Hong Kong island beyond. In the shadow of the revered mountain rise huge monoliths, drab concrete tower blocks far removed from the glittering glass highrises of Hong Kong island's steroidal skyline. Here, in a neighborhood of public housing estates called Wong Tai Sin, seemingly endless stacks of aging windows heave with drying laundry and hum with air conditioners sweating droplets onto the pavement below.",http://l.yimg.com/uu/api/res/1.2/F9Ge8Jbxe9MBf8mEm7JaUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/6360044a87d60947847b5654efb286ca,"Special Report: In a working-class Hong Kong neighborhood, the protests hit home" +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’,"Wed, 30 Oct 2019 09:14:32 -0400",https://news.yahoo.com/california-governor-accepted-donations-utility-131432537.html,"California governor, Democrat Gavin Newsom, has accepted large donations from Pacific Gas & Electric Co., a utility company he now excoriates for ""greed"" and ""mismanagement.""PG&E has faced widespread criticism for implementing blackouts for millions of customers to avoid sparking wildfires in the midst of California's dry and windy fall weather.""I have a message for PG&E,"" Newsom wrote on Twitter on Friday. ""Your years and years of greed. Years and years of mismanagement. Years and years of putting shareholders over people. Are OVER.""Newsom and allies accepted $208,400 from the utility during his 2018 gubernatorial campaign, according to local affiliate ABC10. Of that total, $150,000 went to a political spending group called “Citizens Supporting Gavin Newsom for Governor 2018,” while the rest went to directly to Newsom's campaign.PG&E filed for bankruptcy in January 2019. Faulty PG&E electricity equipment has been blamed for sparking several wildfires in the past decade.California has consistently shut down proposals to clear dead trees from forests and to trim trees near power lines state wide, creating conditions for a rash of wildfire outbreaks in recent years.The Kincaid Fire currently burning in Sonoma County in the northern part of the state has forced the evacuation of roughly 200,000 people. The fire is twice the size of the city of San Fransisco.Newsom declared a state of emergency on Sunday in response to the Kincaid Fire and several other wildfires throughout the state. He again threatened PG&E in a statement on the situation.""There is a plan to get out of this. This is not the new normal,” Newsom said on Sunday at an evacuation center in northern California. “This is not a 10-year process to deal with this. That will not be the case
 [PG&E] will be held to account to do something radically different",http://l1.yimg.com/uu/api/res/1.2/PwVfYG7dQige5oYEYTjwrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/7819ecc3bf346550c726f66c60681b59,California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’ +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Former New Orleans Mayor Mitch Landrieu says impeachment inquiry 'has now risen to a level of a substantial case that can be made',"Wed, 30 Oct 2019 18:23:29 -0400",https://news.yahoo.com/former-orleans-mayor-mitch-landrieu-222329213.html,"Former New Orleans Mayor Mitch Landrieu joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to talk about the impeachment inquiry into President Trump. Landrieu says that at first he didn’t think it was warranted after the Mueller report came out, but “when the Ukraine matter raised up its head, I changed.”",http://l.yimg.com/uu/api/res/1.2/riyyHWS30ukacweXGdlMjw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/653336a0-fb63-11e9-9fbf-342726b7af06,Former New Orleans Mayor Mitch Landrieu says impeachment inquiry 'has now risen to a level of a substantial case that can be made' +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames +Over half of the House of Representatives support the impeachment inquiry against Trump — see all of them here,"Wed, 30 Oct 2019 16:01:00 -0400",https://news.yahoo.com/over-half-house-representatives-support-154500322.html,"Currently, almost the entire House Democratic caucus and one Independent are publicly supporting the ongoing impeachment inquiry against Trump.",http://l1.yimg.com/uu/api/res/1.2/GloEQjjvKiuOxKRbDF4FyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/dc63495269b132b2e4b1b507ff877f08,Over half of the House of Representatives support the impeachment inquiry against Trump — see all of them here +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +"3 killed, 9 wounded in shooting at party in California home","Wed, 30 Oct 2019 18:19:39 -0400",https://news.yahoo.com/3-killed-9-injured-shooting-082755536.html,"A gunman who opened fire from an alley into a party killed three people and wounded nine others in California before fleeing in a vehicle, police said Wednesday. Police Chief Robert Luna called the shooter a coward and urged residents to come forward with any information that might lead to an arrest. Three men were killed, and seven women and two men were taken to hospitals with gunshot wounds.",http://l1.yimg.com/uu/api/res/1.2/4loESatU5y24ZYWRLOpuzA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/83a373c832dba305692e2824e24defae,"3 killed, 9 wounded in shooting at party in California home" +Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation +The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?),"Wed, 30 Oct 2019 17:00:00 -0400",https://news.yahoo.com/marines-very-own-anti-ship-210000136.html,Should China be worried?,http://l2.yimg.com/uu/api/res/1.2/8kAnuL45wTHBUJLeuWbK0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/4e5a8d517912a6283e199c4f2d34539a,The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?) +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it","Wed, 30 Oct 2019 15:26:00 -0400",https://news.yahoo.com/u-government-spent-16-000-192600418.html,"Sen. Joni Ernst (R-Iowa) wants to rob the federal government of what little fun it has left.Every year, the U.S. government spends more than $1.4 billion on its public relations and advertising efforts -- not that Ernst has a problem with all of that. She's just not a fan of the .002 cents each American taxpayer essentially spent last year on federal ""mascots,"" as well as the several thousand more dollars it put toward various trinkets, and is proposing a bill to end it all.Ernst unveiled her SWAG Act, which stands for Stop Wasteful Advertising by the Government, on Tuesday, which would block federal agencies from creating mascots unless it's done via statute. Smokey Bear and Woodsy Owl, for example, would be safe, but Sammy Soil, a literal chunk of soil with eyes created by the USDA's conservation branch, would be rooted out. So would Franklin the Fair Housing Fox, The Green Reaper, and some other mascots Ernst says have been known to make babies cry.A variety of knickknacks are also targeted under Ernst's proposal to ""Bag the Swag:"" the $605,000 spent on coloring books last year; $33,000 on Snuggies; $17,000 on drink koozies; and $16,000 on fidget spinners. Ernst would also ""prohibit the purchase and distribution of 'swag'"" like these, unless they're also authorized by statute, per Ernst's press release.Overall, the federal government spent a total of $250,000 on the mascots last year. The Tax Cuts & Jobs Act, which Ernst voted to enact, is meanwhile expected to cost at least $1.5 trillion.",,"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it" +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Ilhan Omar refuses to back vote recognising Armenian genocide,"Wed, 30 Oct 2019 10:33:02 -0400",https://news.yahoo.com/ilhan-omar-refuses-back-vote-143204618.html,"Ilhan Omar declined to vote in favour of a resolution recognising the mass killing of Armenians by Ottoman Turks as a genocide, saying any ""true acknowledgement"" of such crimes must include other historical ""mass slaughters"".The Minnesota Democrat was one of just three House members to vote “present” on the resolution that passed in an overwhelming 405-11 vote.",http://l.yimg.com/uu/api/res/1.2/bKw.a_m3fIWm1q5agamYdg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/1897802b491bb4f925ff56eb4356225e,Ilhan Omar refuses to back vote recognising Armenian genocide +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +"Special Report: In a working-class Hong Kong neighborhood, the protests hit home","Wed, 30 Oct 2019 08:05:30 -0400",https://news.yahoo.com/special-report-working-class-hong-120530805.html,"From the top of Lion Rock, all of Hong Kong reveals itself: the sprawl of the Kowloon Peninsula directly below, the iconic Star Ferry plying the waters of Victoria Harbor, the moneyed heights of Hong Kong island beyond. In the shadow of the revered mountain rise huge monoliths, drab concrete tower blocks far removed from the glittering glass highrises of Hong Kong island's steroidal skyline. Here, in a neighborhood of public housing estates called Wong Tai Sin, seemingly endless stacks of aging windows heave with drying laundry and hum with air conditioners sweating droplets onto the pavement below.",http://l.yimg.com/uu/api/res/1.2/F9Ge8Jbxe9MBf8mEm7JaUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/6360044a87d60947847b5654efb286ca,"Special Report: In a working-class Hong Kong neighborhood, the protests hit home" +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’,"Wed, 30 Oct 2019 09:14:32 -0400",https://news.yahoo.com/california-governor-accepted-donations-utility-131432537.html,"California governor, Democrat Gavin Newsom, has accepted large donations from Pacific Gas & Electric Co., a utility company he now excoriates for ""greed"" and ""mismanagement.""PG&E has faced widespread criticism for implementing blackouts for millions of customers to avoid sparking wildfires in the midst of California's dry and windy fall weather.""I have a message for PG&E,"" Newsom wrote on Twitter on Friday. ""Your years and years of greed. Years and years of mismanagement. Years and years of putting shareholders over people. Are OVER.""Newsom and allies accepted $208,400 from the utility during his 2018 gubernatorial campaign, according to local affiliate ABC10. Of that total, $150,000 went to a political spending group called “Citizens Supporting Gavin Newsom for Governor 2018,” while the rest went to directly to Newsom's campaign.PG&E filed for bankruptcy in January 2019. Faulty PG&E electricity equipment has been blamed for sparking several wildfires in the past decade.California has consistently shut down proposals to clear dead trees from forests and to trim trees near power lines state wide, creating conditions for a rash of wildfire outbreaks in recent years.The Kincaid Fire currently burning in Sonoma County in the northern part of the state has forced the evacuation of roughly 200,000 people. The fire is twice the size of the city of San Fransisco.Newsom declared a state of emergency on Sunday in response to the Kincaid Fire and several other wildfires throughout the state. He again threatened PG&E in a statement on the situation.""There is a plan to get out of this. This is not the new normal,” Newsom said on Sunday at an evacuation center in northern California. “This is not a 10-year process to deal with this. That will not be the case
 [PG&E] will be held to account to do something radically different",http://l1.yimg.com/uu/api/res/1.2/PwVfYG7dQige5oYEYTjwrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/7819ecc3bf346550c726f66c60681b59,California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’ +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Former New Orleans Mayor Mitch Landrieu says impeachment inquiry 'has now risen to a level of a substantial case that can be made',"Wed, 30 Oct 2019 18:23:29 -0400",https://news.yahoo.com/former-orleans-mayor-mitch-landrieu-222329213.html,"Former New Orleans Mayor Mitch Landrieu joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to talk about the impeachment inquiry into President Trump. Landrieu says that at first he didn’t think it was warranted after the Mueller report came out, but “when the Ukraine matter raised up its head, I changed.”",http://l.yimg.com/uu/api/res/1.2/riyyHWS30ukacweXGdlMjw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/653336a0-fb63-11e9-9fbf-342726b7af06,Former New Orleans Mayor Mitch Landrieu says impeachment inquiry 'has now risen to a level of a substantial case that can be made' +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames +Over half of the House of Representatives support the impeachment inquiry against Trump — see all of them here,"Wed, 30 Oct 2019 16:01:00 -0400",https://news.yahoo.com/over-half-house-representatives-support-154500322.html,"Currently, almost the entire House Democratic caucus and one Independent are publicly supporting the ongoing impeachment inquiry against Trump.",http://l1.yimg.com/uu/api/res/1.2/GloEQjjvKiuOxKRbDF4FyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/dc63495269b132b2e4b1b507ff877f08,Over half of the House of Representatives support the impeachment inquiry against Trump — see all of them here +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +"3 killed, 9 wounded in shooting at party in California home","Wed, 30 Oct 2019 18:19:39 -0400",https://news.yahoo.com/3-killed-9-injured-shooting-082755536.html,"A gunman who opened fire from an alley into a party killed three people and wounded nine others in California before fleeing in a vehicle, police said Wednesday. Police Chief Robert Luna called the shooter a coward and urged residents to come forward with any information that might lead to an arrest. Three men were killed, and seven women and two men were taken to hospitals with gunshot wounds.",http://l1.yimg.com/uu/api/res/1.2/4loESatU5y24ZYWRLOpuzA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/83a373c832dba305692e2824e24defae,"3 killed, 9 wounded in shooting at party in California home" +Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation +The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?),"Wed, 30 Oct 2019 17:00:00 -0400",https://news.yahoo.com/marines-very-own-anti-ship-210000136.html,Should China be worried?,http://l2.yimg.com/uu/api/res/1.2/8kAnuL45wTHBUJLeuWbK0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/4e5a8d517912a6283e199c4f2d34539a,The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?) +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it","Wed, 30 Oct 2019 15:26:00 -0400",https://news.yahoo.com/u-government-spent-16-000-192600418.html,"Sen. Joni Ernst (R-Iowa) wants to rob the federal government of what little fun it has left.Every year, the U.S. government spends more than $1.4 billion on its public relations and advertising efforts -- not that Ernst has a problem with all of that. She's just not a fan of the .002 cents each American taxpayer essentially spent last year on federal ""mascots,"" as well as the several thousand more dollars it put toward various trinkets, and is proposing a bill to end it all.Ernst unveiled her SWAG Act, which stands for Stop Wasteful Advertising by the Government, on Tuesday, which would block federal agencies from creating mascots unless it's done via statute. Smokey Bear and Woodsy Owl, for example, would be safe, but Sammy Soil, a literal chunk of soil with eyes created by the USDA's conservation branch, would be rooted out. So would Franklin the Fair Housing Fox, The Green Reaper, and some other mascots Ernst says have been known to make babies cry.A variety of knickknacks are also targeted under Ernst's proposal to ""Bag the Swag:"" the $605,000 spent on coloring books last year; $33,000 on Snuggies; $17,000 on drink koozies; and $16,000 on fidget spinners. Ernst would also ""prohibit the purchase and distribution of 'swag'"" like these, unless they're also authorized by statute, per Ernst's press release.Overall, the federal government spent a total of $250,000 on the mascots last year. The Tax Cuts & Jobs Act, which Ernst voted to enact, is meanwhile expected to cost at least $1.5 trillion.",,"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it" +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Ilhan Omar refuses to back vote recognising Armenian genocide,"Wed, 30 Oct 2019 10:33:02 -0400",https://news.yahoo.com/ilhan-omar-refuses-back-vote-143204618.html,"Ilhan Omar declined to vote in favour of a resolution recognising the mass killing of Armenians by Ottoman Turks as a genocide, saying any ""true acknowledgement"" of such crimes must include other historical ""mass slaughters"".The Minnesota Democrat was one of just three House members to vote “present” on the resolution that passed in an overwhelming 405-11 vote.",http://l.yimg.com/uu/api/res/1.2/bKw.a_m3fIWm1q5agamYdg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/1897802b491bb4f925ff56eb4356225e,Ilhan Omar refuses to back vote recognising Armenian genocide +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah +California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’,"Wed, 30 Oct 2019 09:14:32 -0400",https://news.yahoo.com/california-governor-accepted-donations-utility-131432537.html,"California governor, Democrat Gavin Newsom, has accepted large donations from Pacific Gas & Electric Co., a utility company he now excoriates for ""greed"" and ""mismanagement.""PG&E has faced widespread criticism for implementing blackouts for millions of customers to avoid sparking wildfires in the midst of California's dry and windy fall weather.""I have a message for PG&E,"" Newsom wrote on Twitter on Friday. ""Your years and years of greed. Years and years of mismanagement. Years and years of putting shareholders over people. Are OVER.""Newsom and allies accepted $208,400 from the utility during his 2018 gubernatorial campaign, according to local affiliate ABC10. Of that total, $150,000 went to a political spending group called “Citizens Supporting Gavin Newsom for Governor 2018,” while the rest went to directly to Newsom's campaign.PG&E filed for bankruptcy in January 2019. Faulty PG&E electricity equipment has been blamed for sparking several wildfires in the past decade.California has consistently shut down proposals to clear dead trees from forests and to trim trees near power lines state wide, creating conditions for a rash of wildfire outbreaks in recent years.The Kincaid Fire currently burning in Sonoma County in the northern part of the state has forced the evacuation of roughly 200,000 people. The fire is twice the size of the city of San Fransisco.Newsom declared a state of emergency on Sunday in response to the Kincaid Fire and several other wildfires throughout the state. He again threatened PG&E in a statement on the situation.""There is a plan to get out of this. This is not the new normal,” Newsom said on Sunday at an evacuation center in northern California. “This is not a 10-year process to deal with this. That will not be the case
 [PG&E] will be held to account to do something radically different",http://l1.yimg.com/uu/api/res/1.2/PwVfYG7dQige5oYEYTjwrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/7819ecc3bf346550c726f66c60681b59,California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’ +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" +"3 killed, 9 wounded in shooting at party in California home","Wed, 30 Oct 2019 18:19:39 -0400",https://news.yahoo.com/3-killed-9-injured-shooting-082755536.html,"A gunman who opened fire from an alley into a party killed three people and wounded nine others in California before fleeing in a vehicle, police said Wednesday. Police Chief Robert Luna called the shooter a coward and urged residents to come forward with any information that might lead to an arrest. Three men were killed, and seven women and two men were taken to hospitals with gunshot wounds.",http://l1.yimg.com/uu/api/res/1.2/4loESatU5y24ZYWRLOpuzA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/83a373c832dba305692e2824e24defae,"3 killed, 9 wounded in shooting at party in California home" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +California businessman gets prison for U.S. college admissions scam,"Wed, 30 Oct 2019 18:25:54 -0400",https://news.yahoo.com/california-businessman-gets-prison-u-222554860.html,"A former California business executive was sentenced on Wednesday to two months in prison for taking part in a vast U.S. college admissions fraud scheme by paying $250,000 to secure his son's admission to the University of Southern California. Federal prosecutors in Boston had sought nine months in prison for Jeffrey Bizzack, who they said sought to secure his son's admission through a ""side door"" by agreeing to bribe a USC official to designate him as a fake athletic recruit. U.S. District Judge Douglas Woodlock said prosecutors lacked evidence to support some of their arguments for a higher sentence.",http://l.yimg.com/uu/api/res/1.2/lEh4n6Nu9abRf1foukH6Gw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/298583d99339cc271df308ca177e42f4,California businessman gets prison for U.S. college admissions scam +These Are The Stocks to Watch as U.K. Heads to the Polls Again,"Wed, 30 Oct 2019 04:38:28 -0400",https://news.yahoo.com/stocks-watch-u-k-heads-083828793.html,"(Bloomberg) -- The U.K. is headed to the polls on Dec. 12, bringing banks, utilities and housebuilders into focus for U.K. equity investors. There’s also the small matter of Brexit, as strategists digest what the latest developments mean for sterling and U.K. assets.In the lead-up to the vote, “both Labour and the Conservatives are expected to come out with pretty punchy views on tax, innovation and public spending, which could have significant implications for both corporates and consumers,” Emma Wall, head of investment analysis at stockbroker Hargreaves Lansdown Plc, said by email.Banks, utilities, transport and and defense are the sectors with most at stake should there be a change in the balance of power, according to Caroline Simmons, deputy head of UBS Wealth Management’s U.K. Investment Office.Here’s what to watch as the poll looms.FTSE 100Given Labour had made taking no-deal out of the equation a prerequisite of supporting a general election, the risk of a no-deal Brexit has reduced, which is likely to support U.K. risk assets, according to Edward Park, deputy chief investment officer at wealth manager Brooks Macdonald Group Plc.Should parliament return in December with a mandate for the withdrawal deal brokered by Prime Minister Boris Johnson, “sterling will value the reduced no-deal threat and continue the rally seen in recent weeks,” Park said by email. If that proves the case, then the inverse relationship between the exporter-heavy FTSE 100 and the pound should mean the index underperforms, he said.BanksLabour leader Jeremy Corbyn becoming prime minister could be just as damaging to British banks’ profits as the U.K. crashing out of the European Union without a deal.According to Citigroup Inc. analyst Andrew Coombs, the biggest risk to the U.K. banking sector is snap elections, given the impact on sentiment attached to the possibility of a Labour victory. The party’s “business unfriendly” deficit-financed policies would likely lead to capital outflows from the U.K., he wrote.U.K. lenders Royal Bank of Scotland Group Plc and Lloyds Banking Group Plc have gained 5.6% and 7.7%, respectively, this month as the risk of a no-deal exit reduced.Utilities and TransportShares of companies that keep Britons warm and bathed have been an excellent indicator of U.K. election risk ever since Labour first vowed to nationalize utilities a few years back. Top of this list are water and electricity utilities, covering the likes of United Utilities Group Plc, Severn Trent Plc, National Grid Plc and SSE Plc.“While fears of nationalization under Corbyn’s rule have remained subdued with lingering Brexit angst, a renewed Labour leadership campaign could weigh heavily on U.K. utilities,” said Andrew Coury, a strategist at Liberum Capital.But if the Conservatives are able to regain power in an election, this threat would evaporate and the underperformance of U.K. utilities to their European peers may be reversed. It could be a similar story for other stocks and sectors Labour is said to have targeted for nationalization, including postal-service operator Royal Mail Plc and the companies that run British transport services like FirstGroup Plc and Stagecoach Group Plc.HousebuildersThe U.K. still suffers from an imbalance between the demand for housing and the volume of new houses being built, so any party campaigning for government would likely have to address this as part of their policy platform.Liberum expects the housing market to slow in the run-up to the election, but that housebuilder shares may outperform should the Conservatives emerge victorious. It particularly favors smaller companies such as Bellway Plc and Galliford Try Plc, which it says should benefit from better risk appetite and which have more attractive valuations.DefenseCorbyn has been a vocal opponent of military intervention in the Middle East and has argued for the suspension of arms sales to Saudi Arabia. His anti-war stance could hurt defense suppliers such as BAE Systems Plc, according to Citi, which estimated Aug. 1 that the London-based firm’s stock could fall 20% if Labour came to power.The U.K.’s Dreadnought nuclear deterrent submarine program -- another of BAE’s projects -- would also be at risk, Citi analyst Charles Armitage wrote. The level of risk to Dreadnought would be reduced if Labour entered a coalition with the Liberal Democrats, he said. A pact with the Scottish National Party would leave both Dreadnought and the Saudi business vulnerable, Armitage added.RetailersIf an election can produce a clear winner and therefore some clarity on the way forward, that may prove positive for retailers as shoppers should be more confident to spend.However, if the ultimate outcome is a hung parliament, making passing legislation even more difficult, that would likely be negative for the sector.Also watch for any impact on companies that own Britain’s shops, particularly the already-battered mall owners Intu Properties Plc and Hammerson Plc. Though UBS analysts think Brexit is only one of the problems that the sub-sector faces.ConstructionU.K. Chancellor of the Exchequer Sajid Javid used his first set piece event in the role in early September to lay out plans to spend more money on infrastructure. There have been no further details since then and Javid had to cancel his planned Budget announcement, but if this is revived it would be positive for construction contractors like Balfour Beatty Plc, Costain Group Plc and Keller Group Plc.To contact the reporters on this story: Joe Easton in London at jeaston7@bloomberg.net;Sam Unsted in London at sunsted@bloomberg.netTo contact the editors responsible for this story: Beth Mellor at bmellor@bloomberg.net, Paul JarvisFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",,These Are The Stocks to Watch as U.K. Heads to the Polls Again +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Ilhan Omar refuses to back vote recognising Armenian genocide,"Wed, 30 Oct 2019 10:33:02 -0400",https://news.yahoo.com/ilhan-omar-refuses-back-vote-143204618.html,"Ilhan Omar declined to vote in favour of a resolution recognising the mass killing of Armenians by Ottoman Turks as a genocide, saying any ""true acknowledgement"" of such crimes must include other historical ""mass slaughters"".The Minnesota Democrat was one of just three House members to vote “present” on the resolution that passed in an overwhelming 405-11 vote.",http://l.yimg.com/uu/api/res/1.2/bKw.a_m3fIWm1q5agamYdg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/1897802b491bb4f925ff56eb4356225e,Ilhan Omar refuses to back vote recognising Armenian genocide +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +"Special Report: In a working-class Hong Kong neighborhood, the protests hit home","Wed, 30 Oct 2019 08:05:30 -0400",https://news.yahoo.com/special-report-working-class-hong-120530805.html,"From the top of Lion Rock, all of Hong Kong reveals itself: the sprawl of the Kowloon Peninsula directly below, the iconic Star Ferry plying the waters of Victoria Harbor, the moneyed heights of Hong Kong island beyond. In the shadow of the revered mountain rise huge monoliths, drab concrete tower blocks far removed from the glittering glass highrises of Hong Kong island's steroidal skyline. Here, in a neighborhood of public housing estates called Wong Tai Sin, seemingly endless stacks of aging windows heave with drying laundry and hum with air conditioners sweating droplets onto the pavement below.",http://l.yimg.com/uu/api/res/1.2/F9Ge8Jbxe9MBf8mEm7JaUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/6360044a87d60947847b5654efb286ca,"Special Report: In a working-class Hong Kong neighborhood, the protests hit home" +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’,"Wed, 30 Oct 2019 09:14:32 -0400",https://news.yahoo.com/california-governor-accepted-donations-utility-131432537.html,"California governor, Democrat Gavin Newsom, has accepted large donations from Pacific Gas & Electric Co., a utility company he now excoriates for ""greed"" and ""mismanagement.""PG&E has faced widespread criticism for implementing blackouts for millions of customers to avoid sparking wildfires in the midst of California's dry and windy fall weather.""I have a message for PG&E,"" Newsom wrote on Twitter on Friday. ""Your years and years of greed. Years and years of mismanagement. Years and years of putting shareholders over people. Are OVER.""Newsom and allies accepted $208,400 from the utility during his 2018 gubernatorial campaign, according to local affiliate ABC10. Of that total, $150,000 went to a political spending group called “Citizens Supporting Gavin Newsom for Governor 2018,” while the rest went to directly to Newsom's campaign.PG&E filed for bankruptcy in January 2019. Faulty PG&E electricity equipment has been blamed for sparking several wildfires in the past decade.California has consistently shut down proposals to clear dead trees from forests and to trim trees near power lines state wide, creating conditions for a rash of wildfire outbreaks in recent years.The Kincaid Fire currently burning in Sonoma County in the northern part of the state has forced the evacuation of roughly 200,000 people. The fire is twice the size of the city of San Fransisco.Newsom declared a state of emergency on Sunday in response to the Kincaid Fire and several other wildfires throughout the state. He again threatened PG&E in a statement on the situation.""There is a plan to get out of this. This is not the new normal,” Newsom said on Sunday at an evacuation center in northern California. “This is not a 10-year process to deal with this. That will not be the case
 [PG&E] will be held to account to do something radically different",http://l1.yimg.com/uu/api/res/1.2/PwVfYG7dQige5oYEYTjwrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/7819ecc3bf346550c726f66c60681b59,California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’ +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Former New Orleans Mayor Mitch Landrieu says impeachment inquiry 'has now risen to a level of a substantial case that can be made',"Wed, 30 Oct 2019 18:23:29 -0400",https://news.yahoo.com/former-orleans-mayor-mitch-landrieu-222329213.html,"Former New Orleans Mayor Mitch Landrieu joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to talk about the impeachment inquiry into President Trump. Landrieu says that at first he didn’t think it was warranted after the Mueller report came out, but “when the Ukraine matter raised up its head, I changed.”",http://l.yimg.com/uu/api/res/1.2/riyyHWS30ukacweXGdlMjw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/653336a0-fb63-11e9-9fbf-342726b7af06,Former New Orleans Mayor Mitch Landrieu says impeachment inquiry 'has now risen to a level of a substantial case that can be made' +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames +Over half of the House of Representatives support the impeachment inquiry against Trump — see all of them here,"Wed, 30 Oct 2019 16:01:00 -0400",https://news.yahoo.com/over-half-house-representatives-support-154500322.html,"Currently, almost the entire House Democratic caucus and one Independent are publicly supporting the ongoing impeachment inquiry against Trump.",http://l1.yimg.com/uu/api/res/1.2/GloEQjjvKiuOxKRbDF4FyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/dc63495269b132b2e4b1b507ff877f08,Over half of the House of Representatives support the impeachment inquiry against Trump — see all of them here +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +"3 killed, 9 wounded in shooting at party in California home","Wed, 30 Oct 2019 18:19:39 -0400",https://news.yahoo.com/3-killed-9-injured-shooting-082755536.html,"A gunman who opened fire from an alley into a party killed three people and wounded nine others in California before fleeing in a vehicle, police said Wednesday. Police Chief Robert Luna called the shooter a coward and urged residents to come forward with any information that might lead to an arrest. Three men were killed, and seven women and two men were taken to hospitals with gunshot wounds.",http://l1.yimg.com/uu/api/res/1.2/4loESatU5y24ZYWRLOpuzA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/83a373c832dba305692e2824e24defae,"3 killed, 9 wounded in shooting at party in California home" +Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation +The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?),"Wed, 30 Oct 2019 17:00:00 -0400",https://news.yahoo.com/marines-very-own-anti-ship-210000136.html,Should China be worried?,http://l2.yimg.com/uu/api/res/1.2/8kAnuL45wTHBUJLeuWbK0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/4e5a8d517912a6283e199c4f2d34539a,The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?) +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it","Wed, 30 Oct 2019 15:26:00 -0400",https://news.yahoo.com/u-government-spent-16-000-192600418.html,"Sen. Joni Ernst (R-Iowa) wants to rob the federal government of what little fun it has left.Every year, the U.S. government spends more than $1.4 billion on its public relations and advertising efforts -- not that Ernst has a problem with all of that. She's just not a fan of the .002 cents each American taxpayer essentially spent last year on federal ""mascots,"" as well as the several thousand more dollars it put toward various trinkets, and is proposing a bill to end it all.Ernst unveiled her SWAG Act, which stands for Stop Wasteful Advertising by the Government, on Tuesday, which would block federal agencies from creating mascots unless it's done via statute. Smokey Bear and Woodsy Owl, for example, would be safe, but Sammy Soil, a literal chunk of soil with eyes created by the USDA's conservation branch, would be rooted out. So would Franklin the Fair Housing Fox, The Green Reaper, and some other mascots Ernst says have been known to make babies cry.A variety of knickknacks are also targeted under Ernst's proposal to ""Bag the Swag:"" the $605,000 spent on coloring books last year; $33,000 on Snuggies; $17,000 on drink koozies; and $16,000 on fidget spinners. Ernst would also ""prohibit the purchase and distribution of 'swag'"" like these, unless they're also authorized by statute, per Ernst's press release.Overall, the federal government spent a total of $250,000 on the mascots last year. The Tax Cuts & Jobs Act, which Ernst voted to enact, is meanwhile expected to cost at least $1.5 trillion.",,"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it" +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Ilhan Omar refuses to back vote recognising Armenian genocide,"Wed, 30 Oct 2019 10:33:02 -0400",https://news.yahoo.com/ilhan-omar-refuses-back-vote-143204618.html,"Ilhan Omar declined to vote in favour of a resolution recognising the mass killing of Armenians by Ottoman Turks as a genocide, saying any ""true acknowledgement"" of such crimes must include other historical ""mass slaughters"".The Minnesota Democrat was one of just three House members to vote “present” on the resolution that passed in an overwhelming 405-11 vote.",http://l.yimg.com/uu/api/res/1.2/bKw.a_m3fIWm1q5agamYdg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/1897802b491bb4f925ff56eb4356225e,Ilhan Omar refuses to back vote recognising Armenian genocide +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah +California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’,"Wed, 30 Oct 2019 09:14:32 -0400",https://news.yahoo.com/california-governor-accepted-donations-utility-131432537.html,"California governor, Democrat Gavin Newsom, has accepted large donations from Pacific Gas & Electric Co., a utility company he now excoriates for ""greed"" and ""mismanagement.""PG&E has faced widespread criticism for implementing blackouts for millions of customers to avoid sparking wildfires in the midst of California's dry and windy fall weather.""I have a message for PG&E,"" Newsom wrote on Twitter on Friday. ""Your years and years of greed. Years and years of mismanagement. Years and years of putting shareholders over people. Are OVER.""Newsom and allies accepted $208,400 from the utility during his 2018 gubernatorial campaign, according to local affiliate ABC10. Of that total, $150,000 went to a political spending group called “Citizens Supporting Gavin Newsom for Governor 2018,” while the rest went to directly to Newsom's campaign.PG&E filed for bankruptcy in January 2019. Faulty PG&E electricity equipment has been blamed for sparking several wildfires in the past decade.California has consistently shut down proposals to clear dead trees from forests and to trim trees near power lines state wide, creating conditions for a rash of wildfire outbreaks in recent years.The Kincaid Fire currently burning in Sonoma County in the northern part of the state has forced the evacuation of roughly 200,000 people. The fire is twice the size of the city of San Fransisco.Newsom declared a state of emergency on Sunday in response to the Kincaid Fire and several other wildfires throughout the state. He again threatened PG&E in a statement on the situation.""There is a plan to get out of this. This is not the new normal,” Newsom said on Sunday at an evacuation center in northern California. “This is not a 10-year process to deal with this. That will not be the case
 [PG&E] will be held to account to do something radically different",http://l1.yimg.com/uu/api/res/1.2/PwVfYG7dQige5oYEYTjwrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/7819ecc3bf346550c726f66c60681b59,California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’ +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" +"3 killed, 9 wounded in shooting at party in California home","Wed, 30 Oct 2019 18:19:39 -0400",https://news.yahoo.com/3-killed-9-injured-shooting-082755536.html,"A gunman who opened fire from an alley into a party killed three people and wounded nine others in California before fleeing in a vehicle, police said Wednesday. Police Chief Robert Luna called the shooter a coward and urged residents to come forward with any information that might lead to an arrest. Three men were killed, and seven women and two men were taken to hospitals with gunshot wounds.",http://l1.yimg.com/uu/api/res/1.2/4loESatU5y24ZYWRLOpuzA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/83a373c832dba305692e2824e24defae,"3 killed, 9 wounded in shooting at party in California home" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +California businessman gets prison for U.S. college admissions scam,"Wed, 30 Oct 2019 18:25:54 -0400",https://news.yahoo.com/california-businessman-gets-prison-u-222554860.html,"A former California business executive was sentenced on Wednesday to two months in prison for taking part in a vast U.S. college admissions fraud scheme by paying $250,000 to secure his son's admission to the University of Southern California. Federal prosecutors in Boston had sought nine months in prison for Jeffrey Bizzack, who they said sought to secure his son's admission through a ""side door"" by agreeing to bribe a USC official to designate him as a fake athletic recruit. U.S. District Judge Douglas Woodlock said prosecutors lacked evidence to support some of their arguments for a higher sentence.",http://l.yimg.com/uu/api/res/1.2/lEh4n6Nu9abRf1foukH6Gw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/298583d99339cc271df308ca177e42f4,California businessman gets prison for U.S. college admissions scam +These Are The Stocks to Watch as U.K. Heads to the Polls Again,"Wed, 30 Oct 2019 04:38:28 -0400",https://news.yahoo.com/stocks-watch-u-k-heads-083828793.html,"(Bloomberg) -- The U.K. is headed to the polls on Dec. 12, bringing banks, utilities and housebuilders into focus for U.K. equity investors. There’s also the small matter of Brexit, as strategists digest what the latest developments mean for sterling and U.K. assets.In the lead-up to the vote, “both Labour and the Conservatives are expected to come out with pretty punchy views on tax, innovation and public spending, which could have significant implications for both corporates and consumers,” Emma Wall, head of investment analysis at stockbroker Hargreaves Lansdown Plc, said by email.Banks, utilities, transport and and defense are the sectors with most at stake should there be a change in the balance of power, according to Caroline Simmons, deputy head of UBS Wealth Management’s U.K. Investment Office.Here’s what to watch as the poll looms.FTSE 100Given Labour had made taking no-deal out of the equation a prerequisite of supporting a general election, the risk of a no-deal Brexit has reduced, which is likely to support U.K. risk assets, according to Edward Park, deputy chief investment officer at wealth manager Brooks Macdonald Group Plc.Should parliament return in December with a mandate for the withdrawal deal brokered by Prime Minister Boris Johnson, “sterling will value the reduced no-deal threat and continue the rally seen in recent weeks,” Park said by email. If that proves the case, then the inverse relationship between the exporter-heavy FTSE 100 and the pound should mean the index underperforms, he said.BanksLabour leader Jeremy Corbyn becoming prime minister could be just as damaging to British banks’ profits as the U.K. crashing out of the European Union without a deal.According to Citigroup Inc. analyst Andrew Coombs, the biggest risk to the U.K. banking sector is snap elections, given the impact on sentiment attached to the possibility of a Labour victory. The party’s “business unfriendly” deficit-financed policies would likely lead to capital outflows from the U.K., he wrote.U.K. lenders Royal Bank of Scotland Group Plc and Lloyds Banking Group Plc have gained 5.6% and 7.7%, respectively, this month as the risk of a no-deal exit reduced.Utilities and TransportShares of companies that keep Britons warm and bathed have been an excellent indicator of U.K. election risk ever since Labour first vowed to nationalize utilities a few years back. Top of this list are water and electricity utilities, covering the likes of United Utilities Group Plc, Severn Trent Plc, National Grid Plc and SSE Plc.“While fears of nationalization under Corbyn’s rule have remained subdued with lingering Brexit angst, a renewed Labour leadership campaign could weigh heavily on U.K. utilities,” said Andrew Coury, a strategist at Liberum Capital.But if the Conservatives are able to regain power in an election, this threat would evaporate and the underperformance of U.K. utilities to their European peers may be reversed. It could be a similar story for other stocks and sectors Labour is said to have targeted for nationalization, including postal-service operator Royal Mail Plc and the companies that run British transport services like FirstGroup Plc and Stagecoach Group Plc.HousebuildersThe U.K. still suffers from an imbalance between the demand for housing and the volume of new houses being built, so any party campaigning for government would likely have to address this as part of their policy platform.Liberum expects the housing market to slow in the run-up to the election, but that housebuilder shares may outperform should the Conservatives emerge victorious. It particularly favors smaller companies such as Bellway Plc and Galliford Try Plc, which it says should benefit from better risk appetite and which have more attractive valuations.DefenseCorbyn has been a vocal opponent of military intervention in the Middle East and has argued for the suspension of arms sales to Saudi Arabia. His anti-war stance could hurt defense suppliers such as BAE Systems Plc, according to Citi, which estimated Aug. 1 that the London-based firm’s stock could fall 20% if Labour came to power.The U.K.’s Dreadnought nuclear deterrent submarine program -- another of BAE’s projects -- would also be at risk, Citi analyst Charles Armitage wrote. The level of risk to Dreadnought would be reduced if Labour entered a coalition with the Liberal Democrats, he said. A pact with the Scottish National Party would leave both Dreadnought and the Saudi business vulnerable, Armitage added.RetailersIf an election can produce a clear winner and therefore some clarity on the way forward, that may prove positive for retailers as shoppers should be more confident to spend.However, if the ultimate outcome is a hung parliament, making passing legislation even more difficult, that would likely be negative for the sector.Also watch for any impact on companies that own Britain’s shops, particularly the already-battered mall owners Intu Properties Plc and Hammerson Plc. Though UBS analysts think Brexit is only one of the problems that the sub-sector faces.ConstructionU.K. Chancellor of the Exchequer Sajid Javid used his first set piece event in the role in early September to lay out plans to spend more money on infrastructure. There have been no further details since then and Javid had to cancel his planned Budget announcement, but if this is revived it would be positive for construction contractors like Balfour Beatty Plc, Costain Group Plc and Keller Group Plc.To contact the reporters on this story: Joe Easton in London at jeaston7@bloomberg.net;Sam Unsted in London at sunsted@bloomberg.netTo contact the editors responsible for this story: Beth Mellor at bmellor@bloomberg.net, Paul JarvisFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",,These Are The Stocks to Watch as U.K. Heads to the Polls Again +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +Vindman reportedly testified Trump thought Devin Nunes' inexperienced former staffer was a top Ukraine expert,"Wed, 30 Oct 2019 22:32:00 -0400",https://news.yahoo.com/vindman-reportedly-testified-trump-thought-023200283.html,"During his testimony before House investigators on Tuesday, Lt. Col. Alexander Vindman, the National Security Council's top Ukraine expert, said President Trump was under the impression that a different person -- a longtime staffer of Rep. Devin Nunes (R-Calif.) -- actually held his position, people familiar with his testimony told Politico. Vindman said that Kashyap Patel ""misrepresented"" himself, and despite having no experience or expertise on Ukraine, was part of the White House's Ukraine policy discussion, Politico reports. Vindman found this out after he attended Ukrainian President Volodymyr Zelensky's inauguration in May, and was preparing to give Trump a debriefing on the event and Zelensky's plans for the future, he reportedly testified. Vindman revealed that ""at the last second,"" his boss at the time, Fiona Hill, told him not to attend the debriefing because it might confuse Trump, who thought Patel was the top Ukraine expert.Patel, Nunes' top staffer on the House Intelligence Committee, was known for trying to discredit Justice Department and FBI officials who investigated Russian meddling in the 2016 election, Politico reports. He joined the White House in February, and in July, was promoted to a senior counterterrorism role. Hill testified earlier this month that Trump thought Patel was in charge of the National Security Council's Ukraine policy, Politico says.Vindman, who told investigators he's never had a conversation with Patel, also said he was told Patel ignored National Security Council procedures and put negative information about Ukraine in front of Trump, which reinforced his belief that the country was corrupt, Politico reports. It's unclear where he received this information. Read more at Politico.",,Vindman reportedly testified Trump thought Devin Nunes' inexperienced former staffer was a top Ukraine expert +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Ilhan Omar refuses to back vote recognising Armenian genocide,"Wed, 30 Oct 2019 10:33:02 -0400",https://news.yahoo.com/ilhan-omar-refuses-back-vote-143204618.html,"Ilhan Omar declined to vote in favour of a resolution recognising the mass killing of Armenians by Ottoman Turks as a genocide, saying any ""true acknowledgement"" of such crimes must include other historical ""mass slaughters"".The Minnesota Democrat was one of just three House members to vote “present” on the resolution that passed in an overwhelming 405-11 vote.",http://l.yimg.com/uu/api/res/1.2/bKw.a_m3fIWm1q5agamYdg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/1897802b491bb4f925ff56eb4356225e,Ilhan Omar refuses to back vote recognising Armenian genocide +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +"3 killed, 9 wounded in shooting at party in California home","Wed, 30 Oct 2019 18:19:39 -0400",https://news.yahoo.com/3-killed-9-injured-shooting-082755536.html,"A gunman who opened fire from an alley into a party killed three people and wounded nine others in California before fleeing in a vehicle, police said Wednesday. Police Chief Robert Luna called the shooter a coward and urged residents to come forward with any information that might lead to an arrest. Three men were killed, and seven women and two men were taken to hospitals with gunshot wounds.",http://l1.yimg.com/uu/api/res/1.2/4loESatU5y24ZYWRLOpuzA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/83a373c832dba305692e2824e24defae,"3 killed, 9 wounded in shooting at party in California home" +Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" +Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +California businessman gets prison for U.S. college admissions scam,"Wed, 30 Oct 2019 18:25:54 -0400",https://news.yahoo.com/california-businessman-gets-prison-u-222554860.html,"A former California business executive was sentenced on Wednesday to two months in prison for taking part in a vast U.S. college admissions fraud scheme by paying $250,000 to secure his son's admission to the University of Southern California. Federal prosecutors in Boston had sought nine months in prison for Jeffrey Bizzack, who they said sought to secure his son's admission through a ""side door"" by agreeing to bribe a USC official to designate him as a fake athletic recruit. U.S. District Judge Douglas Woodlock said prosecutors lacked evidence to support some of their arguments for a higher sentence.",http://l.yimg.com/uu/api/res/1.2/lEh4n6Nu9abRf1foukH6Gw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/298583d99339cc271df308ca177e42f4,California businessman gets prison for U.S. college admissions scam +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe +Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +"White House blocked effort to condemn Russia for seizing Ukraine ships, Congress told","Wed, 30 Oct 2019 16:46:00 -0400",https://news.yahoo.com/white-house-blocked-effort-condemn-204600202.html,"State department aide makes revelation in testimony, while Russia envoy nominee John Sullivan grilled at confirmation hearingDonald Trump with Vladimir Putin at the G20 summit in Osaka in June this year. Trump voiced concern over the 2018 capture but did not blame Moscow. Photograph: Mikhail Klimentyev/TassThe White House blocked the US state department from issuing a statement condemning Russia for seizing Ukrainian military vessels, according to a state department official, in the latest example of the strain the Trump administration is under in pursuing conflicting policies towards the two countries.The revelation on Wednesday came from Christopher Anderson, who was a senior aide to the special envoy on Ukraine, Kurt Volker, in November 2018, when Russia fired on and captured three Ukrainian vessels in the Sea of Azov off the Crimean peninsula.“While my colleagues at the state department quickly prepared a statement condemning Russia for its escalation, senior officials in the White House blocked it from being issued,” Anderson said in his prepared remarks to congressional committees holding impeachment hearings. “Ambassador Volker drafted a tweet condemning Russia’s actions, which I posted to his account.”In the face of silence from the White House, the then US ambassador to the UN, Nikki Haley, condemned Russian behaviour, after which the secretary of state, Mike Pompeo, followed suit. Trump voiced concern but did not blame Moscow.The 24 Ukrainian sailors detained in the operation were returned last month as part of a prisoner exchange.Anderson, and his successor in the Ukraine job, Catherine Croft, both testified to House committees on Wednesday about the role played by Trump’s personal lawyer, Rudy Giuliani, in foiling state department efforts to bolster the president, Volodymyr Zelenskiy, in the face of Russian military intervention in eastern Ukraine.In his testimony, Anderson quoted the former national security adviser, John Bolton, as saying: “Giuliani was a key voice with the president on Ukraine which could be an obstacle to increased White House engagement.” On Wednesday, the House committees asked Bolton to testify on 7 November, but it is unclear whether he will attend.Bolton’s former deputy, Charles Kupperman, is currently seeking a court ruling on whether to comply with his congressional subpoena in the face of a White House order not to testify.At the other side of Congress, the nominee to become ambassador to Russia, John Sullivan, faced pointed questions on Wednesday at confirmation hearings in the Senate about Giuliani and the split US policy towards Russia and Ukraine.Sullivan, currently the deputy secretary of state, said he was aware of Giuliani’s role in a campaign against the former US ambassador to Ukraine, Marie Yovanovitch. Asked if he knew Trump’s lawyer was “seeking to smear” Yovanovitch, he replied: “I believe he was, yes.”Sullivan confirmed he had been shown a dossier of material attacking Yovanovitch, saying it had provided by the White House to the state department legal adviser, but he was not aware it had been put together by Giuliani. He said the dossier “didn’t provide to me a basis for taking action against our ambassador”.He said that Pompeo gave Sullivan no explanation for the decision to recall Yovanovitch before the end of her posting, other than she had “lost the confidence of the president”.“As I understand, [Trump] may decide that he doesn’t like my testimony today and he doesn’t want me to go to Russia. The president can decide when he loses confidence in his ambassador – then that person is not going to continue as ambassador,” Sullivan said.Sullivan sought to avoid taking a position on the testimony by several former and current state department officials that the president, through Giuliani, had made a White House meeting and US military aid dependent on the Ukrainian government investigating Trump’s political rivals.“Soliciting investigations into a domestic political opponent – I don’t think that would be in accord with our values,” Sullivan said. But he would not confirm that was what the president had done.Democratic senators signaled that they were prepared to support Sullivan’s nomination as an experienced and respected diplomat, acknowledging the difficult position he was in. But they expressed concern he had not done more to find out what Trump and Giuliani were trying to achieve in Ukraine.The ranking Democrat on the Senate foreign relations committee, Bob Menendez, told Sullivan he had been playing the role of “see no evil, hear no evil, speak no evil.”“You’re going to go to Russia, and you’re going to be saying one set of things based upon your testimony here,” Menendez said. “And we have the president who, in his public statements, is totally aligned differently than what you’re going to be saying.”“Do you understand the incredibly difficult job that you’re going to have as a result of that?” Menendez asked Sullivan.“I would say, senator, you’ve cited the president’s statements. I’d cite the president’s actions,” the nominee replied, listing sanctions the administration had imposed on Russia.",http://l1.yimg.com/uu/api/res/1.2/3dFxIoizaUY49lyZT_4bZQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/e71dc403755334597d5e870705964abd,"White House blocked effort to condemn Russia for seizing Ukraine ships, Congress told" +Case of school security guard who told student not to use N-word shows respect trumps race,"Wed, 30 Oct 2019 14:42:30 -0400",https://news.yahoo.com/case-school-security-guard-told-100011134.html,"Who am I, a white man, to police the racial language of my African American students? But, despite the queasy feeling, sometimes the answer is clear.",http://l2.yimg.com/uu/api/res/1.2/o8VwD12CWsKdcI9wgrsaAA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/0c35a4d27f9ac6c1e977e7ac1a1304fd,Case of school security guard who told student not to use N-word shows respect trumps race +A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers +Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ +View Photos of the 2020 Hyundai Palisade vs. 2020 Kia Telluride,"Wed, 30 Oct 2019 13:59:00 -0400",https://news.yahoo.com/view-photos-2020-hyundai-palisade-175900825.html,,,View Photos of the 2020 Hyundai Palisade vs. 2020 Kia Telluride +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Trump impeachment: Official says she was repeatedly urged to oust Ukraine ambassador by Republican lobbyist,"Wed, 30 Oct 2019 13:42:15 -0400",https://news.yahoo.com/trump-impeachment-official-says-she-173641664.html,"A US government official has reportedly told politicians leading the impeachment hearings against Donald Trump that she was urged by a Republican-linked lobbyist to remove the US ambassador to Ukraine from her post, as the president's allies launched a smear campaign against her.Catherine Croft, a Ukraine expert who worked at the US State Department, said she was repeatedly contacted by lobbyist Robert Livingston about ousting Marie Yovanovitch, according to prepared remarks obtained by NPR.",http://l1.yimg.com/uu/api/res/1.2/nVkJygcXB2.gOJuTGtcu3g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/73445d843f38e1903d61cd077fea3e46,Trump impeachment: Official says she was repeatedly urged to oust Ukraine ambassador by Republican lobbyist +Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" +Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote +The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire +Vindman reportedly testified Trump thought Devin Nunes' inexperienced former staffer was a top Ukraine expert,"Wed, 30 Oct 2019 22:32:00 -0400",https://news.yahoo.com/vindman-reportedly-testified-trump-thought-023200283.html,"During his testimony before House investigators on Tuesday, Lt. Col. Alexander Vindman, the National Security Council's top Ukraine expert, said President Trump was under the impression that a different person -- a longtime staffer of Rep. Devin Nunes (R-Calif.) -- actually held his position, people familiar with his testimony told Politico. Vindman said that Kashyap Patel ""misrepresented"" himself, and despite having no experience or expertise on Ukraine, was part of the White House's Ukraine policy discussion, Politico reports. Vindman found this out after he attended Ukrainian President Volodymyr Zelensky's inauguration in May, and was preparing to give Trump a debriefing on the event and Zelensky's plans for the future, he reportedly testified. Vindman revealed that ""at the last second,"" his boss at the time, Fiona Hill, told him not to attend the debriefing because it might confuse Trump, who thought Patel was the top Ukraine expert.Patel, Nunes' top staffer on the House Intelligence Committee, was known for trying to discredit Justice Department and FBI officials who investigated Russian meddling in the 2016 election, Politico reports. He joined the White House in February, and in July, was promoted to a senior counterterrorism role. Hill testified earlier this month that Trump thought Patel was in charge of the National Security Council's Ukraine policy, Politico says.Vindman, who told investigators he's never had a conversation with Patel, also said he was told Patel ignored National Security Council procedures and put negative information about Ukraine in front of Trump, which reinforced his belief that the country was corrupt, Politico reports. It's unclear where he received this information. Read more at Politico.",,Vindman reportedly testified Trump thought Devin Nunes' inexperienced former staffer was a top Ukraine expert +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe +Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +Trump impeachment: Official says she was repeatedly urged to oust Ukraine ambassador by Republican lobbyist,"Wed, 30 Oct 2019 13:42:15 -0400",https://news.yahoo.com/trump-impeachment-official-says-she-173641664.html,"A US government official has reportedly told politicians leading the impeachment hearings against Donald Trump that she was urged by a Republican-linked lobbyist to remove the US ambassador to Ukraine from her post, as the president's allies launched a smear campaign against her.Catherine Croft, a Ukraine expert who worked at the US State Department, said she was repeatedly contacted by lobbyist Robert Livingston about ousting Marie Yovanovitch, according to prepared remarks obtained by NPR.",http://l1.yimg.com/uu/api/res/1.2/nVkJygcXB2.gOJuTGtcu3g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/73445d843f38e1903d61cd077fea3e46,Trump impeachment: Official says she was repeatedly urged to oust Ukraine ambassador by Republican lobbyist +"Special Report: In a working-class Hong Kong neighborhood, the protests hit home","Wed, 30 Oct 2019 08:05:30 -0400",https://news.yahoo.com/special-report-working-class-hong-120530805.html,"From the top of Lion Rock, all of Hong Kong reveals itself: the sprawl of the Kowloon Peninsula directly below, the iconic Star Ferry plying the waters of Victoria Harbor, the moneyed heights of Hong Kong island beyond. In the shadow of the revered mountain rise huge monoliths, drab concrete tower blocks far removed from the glittering glass highrises of Hong Kong island's steroidal skyline. Here, in a neighborhood of public housing estates called Wong Tai Sin, seemingly endless stacks of aging windows heave with drying laundry and hum with air conditioners sweating droplets onto the pavement below.",http://l.yimg.com/uu/api/res/1.2/F9Ge8Jbxe9MBf8mEm7JaUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/6360044a87d60947847b5654efb286ca,"Special Report: In a working-class Hong Kong neighborhood, the protests hit home" +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +Democrats accused Republicans of trying to trick an impeachment witness into naming the whistleblower,"Wed, 30 Oct 2019 07:50:37 -0400",https://news.yahoo.com/democrats-accused-republicans-trying-trick-115037056.html,"In a closed-door deposition, Republicans questioned Lt. Col. Vindman on whom he had discussed trump's Ukraine call with, alarming Democrats.",http://l.yimg.com/uu/api/res/1.2/qN4ONngqfmq8d.vUl27giA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/81772143405c0f5364cae32715593259,Democrats accused Republicans of trying to trick an impeachment witness into naming the whistleblower +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames +NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden,"Wed, 30 Oct 2019 15:28:10 -0400",https://news.yahoo.com/nyc-medical-examiner-dismisses-epstein-192810863.html,"Robyn Beck/ReutersNew York City’s chief medical examiner pushed back hard Wednesday against a celebrity pathologist-for-hire’s conspiracy-stirring claim that Jeffrey Epstein’s autopsy was more consistent with homicide than suicide.“The original medical investigation was thorough and complete. There is no reason for a second medical investigation by our office,” said Dr. Barbara Sampson.Sampson determined Epstein died by suicide from hanging in his jail cell in August, while he was awaiting trial on sex-trafficking charges.Epstein’s lawyers and family have refused to accept her finding, and the disgraced financier’s brother hired Dr. Michael Baden—erstwhile host of HBO’s Autopsy—to do his own investigation.Jeffrey Epstein’s Death Ruled Suicide by Hanging: New York City Medical ExaminerDuring an appearance Wednesday morning on Fox News, where he is a contributor, Baden said his own review isn’t complete but nonetheless suggested that suicide isn’t the cause of death.He claimed a collection of neck fractures in Epstein’s hyoid bone and thyroid cartilage “are extremely unusual in suicidal hangings and could occur much more commonly in homicidal strangulation.”“I’ve not seen in 50 years where that occurred in a suicidal hanging case,” Baden said.Although more common in homicidal strangulation cases, some studies have found that hyoid and thyroid fractures are not rare in suicidal hangings.A 2000 study in Australia found fractures in nearly half the 40 suicide cases it examined and said they were even more common in older victims and men; in fact, 15 percent had fractures of both the hyoid and the thyroid. And a 2010 study out of Thailand found such fractures in 25 percent of the confirmed suicides it reviewed.After His Suicide Watch Ended, Jeffrey Epstein Was Left to Look After HimselfBaden, who observed the autopsy performed by Sampson, served briefly as the city’s chief medical examiner before being fired in 1979 by then-Mayor Ed Koch in response to a complaint that he told doctors during a guest-speaking event that Gov. Nelson Rockefeller had died during sexual intercourse.Three years later, he was dismissed as chief deputy medical examiner by Suffolk County, New York, over a magazine article about ways to kill that wouldn’t show up in an autopsy; he protested that he was misquoted.In the '70s, Baden helped Congress investigate the assassinations of President John F. Kennedy and Martin Luther King Jr.—he concluded that Lee Harvey Oswald and James Earl Ray, respectively, were the killers—but became famous for serving as a private pathologist in high-profile cases like the Aaron Hernandez suicide, the O.J. Simpson murder trial, and the Jayson Williams shooting. He also served as a defense witness in the Phil Spector murder trial, where he reportedly testified that he had no conflict of interest in the case even though his wife was heading Spector’s legal team.Baden isn’t the only one skeptical about the official account of Epstein’s death at the high-security federal lockup in Manhattan, which is currently the subject of a Justice Department probe.Spencer Kuvin, a lawyer representing victims of Epstein, said serious questions remain, including the whereabouts of the guards assigned to monitor him, why the cameras outside his cell apparently didn’t work, and why he was taken off suicide watch.“It all makes no sense. Until they come out with the evidence, I don’t believe anything they’re telling us,” Kuvin said. “Exactly what happened I can’t tell you, but I certainly don’t believe the story they’re trying to feed everyone.”Sigrid McCawley, an attorney at Boies Schiller Flexner, the law firm representing some of Epstein’s victims, said the ongoing Justice Department probe “limits what can and should be said at this time.”“But as the public has come to to understand the horrifying scope and scale of the international sex trafficking system he operated for decades with impunity, what really matters for the brave survivors who are seeking justice is how he lived, not how he died,” she said. “That is how the man should be judged.”Kuvin said his clients are “more interested in seeing co-conspirators prosecuted” than in delving into Epstein autopsy theories.“The justice system failed. They either allowed him to take his own life or someone got in there and killed him,” Kuvin told The Daily Beast. “Either way, it’s a failure of the Justice Department
 [which] has failed them repeatedly over the last 13 years. This was just one more time.”If you or a loved one are struggling with suicidal thoughts, please reach out to the National Suicide Prevention Lifeline at 1-800-273-TALK (8255), or contact the Crisis Text Line by texting TALK to 741741Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/siZIeVPuJ9_PWKpedfWniw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/ecf97654f18e608d05355321d695ab3a,NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +"CIA-backed Afghan units carry out illegal killings, other abuse - group","Wed, 30 Oct 2019 23:30:24 -0400",https://news.yahoo.com/cia-backed-afghan-units-carry-033024655.html,"Afghan security units backed by the U.S. Central Intelligence Agency (CIA) have carried out extrajudicial executions, enforced disappearances, indiscriminate air strikes and other rights abuses and should be disbanded, a rights group said on Thursday. Human Rights Watch said it investigated 14 cases in which CIA-backed Afghan counterinsurgency forces committed serious abuses in Afghanistan between late 2017 and mid-2019. ""They are illustrative of a larger pattern of serious laws-of-war violations — some amounting to war crimes — that extends to all provinces in Afghanistan where these paramilitary forces operate with impunity,"" the group said in a report.",,"CIA-backed Afghan units carry out illegal killings, other abuse - group" +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? +"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe +Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +Trump impeachment: Official says she was repeatedly urged to oust Ukraine ambassador by Republican lobbyist,"Wed, 30 Oct 2019 13:42:15 -0400",https://news.yahoo.com/trump-impeachment-official-says-she-173641664.html,"A US government official has reportedly told politicians leading the impeachment hearings against Donald Trump that she was urged by a Republican-linked lobbyist to remove the US ambassador to Ukraine from her post, as the president's allies launched a smear campaign against her.Catherine Croft, a Ukraine expert who worked at the US State Department, said she was repeatedly contacted by lobbyist Robert Livingston about ousting Marie Yovanovitch, according to prepared remarks obtained by NPR.",http://l1.yimg.com/uu/api/res/1.2/nVkJygcXB2.gOJuTGtcu3g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/73445d843f38e1903d61cd077fea3e46,Trump impeachment: Official says she was repeatedly urged to oust Ukraine ambassador by Republican lobbyist +"Special Report: In a working-class Hong Kong neighborhood, the protests hit home","Wed, 30 Oct 2019 08:05:30 -0400",https://news.yahoo.com/special-report-working-class-hong-120530805.html,"From the top of Lion Rock, all of Hong Kong reveals itself: the sprawl of the Kowloon Peninsula directly below, the iconic Star Ferry plying the waters of Victoria Harbor, the moneyed heights of Hong Kong island beyond. In the shadow of the revered mountain rise huge monoliths, drab concrete tower blocks far removed from the glittering glass highrises of Hong Kong island's steroidal skyline. Here, in a neighborhood of public housing estates called Wong Tai Sin, seemingly endless stacks of aging windows heave with drying laundry and hum with air conditioners sweating droplets onto the pavement below.",http://l.yimg.com/uu/api/res/1.2/F9Ge8Jbxe9MBf8mEm7JaUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/6360044a87d60947847b5654efb286ca,"Special Report: In a working-class Hong Kong neighborhood, the protests hit home" +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +Democrats accused Republicans of trying to trick an impeachment witness into naming the whistleblower,"Wed, 30 Oct 2019 07:50:37 -0400",https://news.yahoo.com/democrats-accused-republicans-trying-trick-115037056.html,"In a closed-door deposition, Republicans questioned Lt. Col. Vindman on whom he had discussed trump's Ukraine call with, alarming Democrats.",http://l.yimg.com/uu/api/res/1.2/qN4ONngqfmq8d.vUl27giA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/81772143405c0f5364cae32715593259,Democrats accused Republicans of trying to trick an impeachment witness into naming the whistleblower +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames +NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden,"Wed, 30 Oct 2019 15:28:10 -0400",https://news.yahoo.com/nyc-medical-examiner-dismisses-epstein-192810863.html,"Robyn Beck/ReutersNew York City’s chief medical examiner pushed back hard Wednesday against a celebrity pathologist-for-hire’s conspiracy-stirring claim that Jeffrey Epstein’s autopsy was more consistent with homicide than suicide.“The original medical investigation was thorough and complete. There is no reason for a second medical investigation by our office,” said Dr. Barbara Sampson.Sampson determined Epstein died by suicide from hanging in his jail cell in August, while he was awaiting trial on sex-trafficking charges.Epstein’s lawyers and family have refused to accept her finding, and the disgraced financier’s brother hired Dr. Michael Baden—erstwhile host of HBO’s Autopsy—to do his own investigation.Jeffrey Epstein’s Death Ruled Suicide by Hanging: New York City Medical ExaminerDuring an appearance Wednesday morning on Fox News, where he is a contributor, Baden said his own review isn’t complete but nonetheless suggested that suicide isn’t the cause of death.He claimed a collection of neck fractures in Epstein’s hyoid bone and thyroid cartilage “are extremely unusual in suicidal hangings and could occur much more commonly in homicidal strangulation.”“I’ve not seen in 50 years where that occurred in a suicidal hanging case,” Baden said.Although more common in homicidal strangulation cases, some studies have found that hyoid and thyroid fractures are not rare in suicidal hangings.A 2000 study in Australia found fractures in nearly half the 40 suicide cases it examined and said they were even more common in older victims and men; in fact, 15 percent had fractures of both the hyoid and the thyroid. And a 2010 study out of Thailand found such fractures in 25 percent of the confirmed suicides it reviewed.After His Suicide Watch Ended, Jeffrey Epstein Was Left to Look After HimselfBaden, who observed the autopsy performed by Sampson, served briefly as the city’s chief medical examiner before being fired in 1979 by then-Mayor Ed Koch in response to a complaint that he told doctors during a guest-speaking event that Gov. Nelson Rockefeller had died during sexual intercourse.Three years later, he was dismissed as chief deputy medical examiner by Suffolk County, New York, over a magazine article about ways to kill that wouldn’t show up in an autopsy; he protested that he was misquoted.In the '70s, Baden helped Congress investigate the assassinations of President John F. Kennedy and Martin Luther King Jr.—he concluded that Lee Harvey Oswald and James Earl Ray, respectively, were the killers—but became famous for serving as a private pathologist in high-profile cases like the Aaron Hernandez suicide, the O.J. Simpson murder trial, and the Jayson Williams shooting. He also served as a defense witness in the Phil Spector murder trial, where he reportedly testified that he had no conflict of interest in the case even though his wife was heading Spector’s legal team.Baden isn’t the only one skeptical about the official account of Epstein’s death at the high-security federal lockup in Manhattan, which is currently the subject of a Justice Department probe.Spencer Kuvin, a lawyer representing victims of Epstein, said serious questions remain, including the whereabouts of the guards assigned to monitor him, why the cameras outside his cell apparently didn’t work, and why he was taken off suicide watch.“It all makes no sense. Until they come out with the evidence, I don’t believe anything they’re telling us,” Kuvin said. “Exactly what happened I can’t tell you, but I certainly don’t believe the story they’re trying to feed everyone.”Sigrid McCawley, an attorney at Boies Schiller Flexner, the law firm representing some of Epstein’s victims, said the ongoing Justice Department probe “limits what can and should be said at this time.”“But as the public has come to to understand the horrifying scope and scale of the international sex trafficking system he operated for decades with impunity, what really matters for the brave survivors who are seeking justice is how he lived, not how he died,” she said. “That is how the man should be judged.”Kuvin said his clients are “more interested in seeing co-conspirators prosecuted” than in delving into Epstein autopsy theories.“The justice system failed. They either allowed him to take his own life or someone got in there and killed him,” Kuvin told The Daily Beast. “Either way, it’s a failure of the Justice Department
 [which] has failed them repeatedly over the last 13 years. This was just one more time.”If you or a loved one are struggling with suicidal thoughts, please reach out to the National Suicide Prevention Lifeline at 1-800-273-TALK (8255), or contact the Crisis Text Line by texting TALK to 741741Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/siZIeVPuJ9_PWKpedfWniw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/ecf97654f18e608d05355321d695ab3a,NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +"CIA-backed Afghan units carry out illegal killings, other abuse - group","Wed, 30 Oct 2019 23:30:24 -0400",https://news.yahoo.com/cia-backed-afghan-units-carry-033024655.html,"Afghan security units backed by the U.S. Central Intelligence Agency (CIA) have carried out extrajudicial executions, enforced disappearances, indiscriminate air strikes and other rights abuses and should be disbanded, a rights group said on Thursday. Human Rights Watch said it investigated 14 cases in which CIA-backed Afghan counterinsurgency forces committed serious abuses in Afghanistan between late 2017 and mid-2019. ""They are illustrative of a larger pattern of serious laws-of-war violations — some amounting to war crimes — that extends to all provinces in Afghanistan where these paramilitary forces operate with impunity,"" the group said in a report.",,"CIA-backed Afghan units carry out illegal killings, other abuse - group" +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? +"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" +Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +"CIA-backed Afghan units carry out illegal killings, other abuse - group","Wed, 30 Oct 2019 23:30:24 -0400",https://news.yahoo.com/cia-backed-afghan-units-carry-033024655.html,"Afghan security units backed by the U.S. Central Intelligence Agency (CIA) have carried out extrajudicial executions, enforced disappearances, indiscriminate air strikes and other rights abuses and should be disbanded, a rights group said on Thursday. Human Rights Watch said it investigated 14 cases in which CIA-backed Afghan counterinsurgency forces committed serious abuses in Afghanistan between late 2017 and mid-2019. ""They are illustrative of a larger pattern of serious laws-of-war violations — some amounting to war crimes — that extends to all provinces in Afghanistan where these paramilitary forces operate with impunity,"" the group said in a report.",,"CIA-backed Afghan units carry out illegal killings, other abuse - group" +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp","Wed, 30 Oct 2019 08:48:29 -0400",https://news.yahoo.com/supreme-court-citizens-united-led-090034035.html,"Ukraine-gate illustrates precisely how independent expenditures can corrupt. Trump, Giuliani, Fruman and Parnas show how it's done. All in one month.",http://l.yimg.com/uu/api/res/1.2/oMrm78wfyXVi4Q1FxuwrGw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/0ad1be9ebb64ad4d5f7c03222769ad30,"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp" +A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden,"Wed, 30 Oct 2019 15:28:10 -0400",https://news.yahoo.com/nyc-medical-examiner-dismisses-epstein-192810863.html,"Robyn Beck/ReutersNew York City’s chief medical examiner pushed back hard Wednesday against a celebrity pathologist-for-hire’s conspiracy-stirring claim that Jeffrey Epstein’s autopsy was more consistent with homicide than suicide.“The original medical investigation was thorough and complete. There is no reason for a second medical investigation by our office,” said Dr. Barbara Sampson.Sampson determined Epstein died by suicide from hanging in his jail cell in August, while he was awaiting trial on sex-trafficking charges.Epstein’s lawyers and family have refused to accept her finding, and the disgraced financier’s brother hired Dr. Michael Baden—erstwhile host of HBO’s Autopsy—to do his own investigation.Jeffrey Epstein’s Death Ruled Suicide by Hanging: New York City Medical ExaminerDuring an appearance Wednesday morning on Fox News, where he is a contributor, Baden said his own review isn’t complete but nonetheless suggested that suicide isn’t the cause of death.He claimed a collection of neck fractures in Epstein’s hyoid bone and thyroid cartilage “are extremely unusual in suicidal hangings and could occur much more commonly in homicidal strangulation.”“I’ve not seen in 50 years where that occurred in a suicidal hanging case,” Baden said.Although more common in homicidal strangulation cases, some studies have found that hyoid and thyroid fractures are not rare in suicidal hangings.A 2000 study in Australia found fractures in nearly half the 40 suicide cases it examined and said they were even more common in older victims and men; in fact, 15 percent had fractures of both the hyoid and the thyroid. And a 2010 study out of Thailand found such fractures in 25 percent of the confirmed suicides it reviewed.After His Suicide Watch Ended, Jeffrey Epstein Was Left to Look After HimselfBaden, who observed the autopsy performed by Sampson, served briefly as the city’s chief medical examiner before being fired in 1979 by then-Mayor Ed Koch in response to a complaint that he told doctors during a guest-speaking event that Gov. Nelson Rockefeller had died during sexual intercourse.Three years later, he was dismissed as chief deputy medical examiner by Suffolk County, New York, over a magazine article about ways to kill that wouldn’t show up in an autopsy; he protested that he was misquoted.In the '70s, Baden helped Congress investigate the assassinations of President John F. Kennedy and Martin Luther King Jr.—he concluded that Lee Harvey Oswald and James Earl Ray, respectively, were the killers—but became famous for serving as a private pathologist in high-profile cases like the Aaron Hernandez suicide, the O.J. Simpson murder trial, and the Jayson Williams shooting. He also served as a defense witness in the Phil Spector murder trial, where he reportedly testified that he had no conflict of interest in the case even though his wife was heading Spector’s legal team.Baden isn’t the only one skeptical about the official account of Epstein’s death at the high-security federal lockup in Manhattan, which is currently the subject of a Justice Department probe.Spencer Kuvin, a lawyer representing victims of Epstein, said serious questions remain, including the whereabouts of the guards assigned to monitor him, why the cameras outside his cell apparently didn’t work, and why he was taken off suicide watch.“It all makes no sense. Until they come out with the evidence, I don’t believe anything they’re telling us,” Kuvin said. “Exactly what happened I can’t tell you, but I certainly don’t believe the story they’re trying to feed everyone.”Sigrid McCawley, an attorney at Boies Schiller Flexner, the law firm representing some of Epstein’s victims, said the ongoing Justice Department probe “limits what can and should be said at this time.”“But as the public has come to to understand the horrifying scope and scale of the international sex trafficking system he operated for decades with impunity, what really matters for the brave survivors who are seeking justice is how he lived, not how he died,” she said. “That is how the man should be judged.”Kuvin said his clients are “more interested in seeing co-conspirators prosecuted” than in delving into Epstein autopsy theories.“The justice system failed. They either allowed him to take his own life or someone got in there and killed him,” Kuvin told The Daily Beast. “Either way, it’s a failure of the Justice Department
 [which] has failed them repeatedly over the last 13 years. This was just one more time.”If you or a loved one are struggling with suicidal thoughts, please reach out to the National Suicide Prevention Lifeline at 1-800-273-TALK (8255), or contact the Crisis Text Line by texting TALK to 741741Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/siZIeVPuJ9_PWKpedfWniw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/ecf97654f18e608d05355321d695ab3a,NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden +UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote +The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire +Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +"CIA-backed Afghan units carry out illegal killings, other abuse - group","Wed, 30 Oct 2019 23:30:24 -0400",https://news.yahoo.com/cia-backed-afghan-units-carry-033024655.html,"Afghan security units backed by the U.S. Central Intelligence Agency (CIA) have carried out extrajudicial executions, enforced disappearances, indiscriminate air strikes and other rights abuses and should be disbanded, a rights group said on Thursday. Human Rights Watch said it investigated 14 cases in which CIA-backed Afghan counterinsurgency forces committed serious abuses in Afghanistan between late 2017 and mid-2019. ""They are illustrative of a larger pattern of serious laws-of-war violations — some amounting to war crimes — that extends to all provinces in Afghanistan where these paramilitary forces operate with impunity,"" the group said in a report.",,"CIA-backed Afghan units carry out illegal killings, other abuse - group" +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp","Wed, 30 Oct 2019 08:48:29 -0400",https://news.yahoo.com/supreme-court-citizens-united-led-090034035.html,"Ukraine-gate illustrates precisely how independent expenditures can corrupt. Trump, Giuliani, Fruman and Parnas show how it's done. All in one month.",http://l.yimg.com/uu/api/res/1.2/oMrm78wfyXVi4Q1FxuwrGw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/0ad1be9ebb64ad4d5f7c03222769ad30,"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp" +A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden,"Wed, 30 Oct 2019 15:28:10 -0400",https://news.yahoo.com/nyc-medical-examiner-dismisses-epstein-192810863.html,"Robyn Beck/ReutersNew York City’s chief medical examiner pushed back hard Wednesday against a celebrity pathologist-for-hire’s conspiracy-stirring claim that Jeffrey Epstein’s autopsy was more consistent with homicide than suicide.“The original medical investigation was thorough and complete. There is no reason for a second medical investigation by our office,” said Dr. Barbara Sampson.Sampson determined Epstein died by suicide from hanging in his jail cell in August, while he was awaiting trial on sex-trafficking charges.Epstein’s lawyers and family have refused to accept her finding, and the disgraced financier’s brother hired Dr. Michael Baden—erstwhile host of HBO’s Autopsy—to do his own investigation.Jeffrey Epstein’s Death Ruled Suicide by Hanging: New York City Medical ExaminerDuring an appearance Wednesday morning on Fox News, where he is a contributor, Baden said his own review isn’t complete but nonetheless suggested that suicide isn’t the cause of death.He claimed a collection of neck fractures in Epstein’s hyoid bone and thyroid cartilage “are extremely unusual in suicidal hangings and could occur much more commonly in homicidal strangulation.”“I’ve not seen in 50 years where that occurred in a suicidal hanging case,” Baden said.Although more common in homicidal strangulation cases, some studies have found that hyoid and thyroid fractures are not rare in suicidal hangings.A 2000 study in Australia found fractures in nearly half the 40 suicide cases it examined and said they were even more common in older victims and men; in fact, 15 percent had fractures of both the hyoid and the thyroid. And a 2010 study out of Thailand found such fractures in 25 percent of the confirmed suicides it reviewed.After His Suicide Watch Ended, Jeffrey Epstein Was Left to Look After HimselfBaden, who observed the autopsy performed by Sampson, served briefly as the city’s chief medical examiner before being fired in 1979 by then-Mayor Ed Koch in response to a complaint that he told doctors during a guest-speaking event that Gov. Nelson Rockefeller had died during sexual intercourse.Three years later, he was dismissed as chief deputy medical examiner by Suffolk County, New York, over a magazine article about ways to kill that wouldn’t show up in an autopsy; he protested that he was misquoted.In the '70s, Baden helped Congress investigate the assassinations of President John F. Kennedy and Martin Luther King Jr.—he concluded that Lee Harvey Oswald and James Earl Ray, respectively, were the killers—but became famous for serving as a private pathologist in high-profile cases like the Aaron Hernandez suicide, the O.J. Simpson murder trial, and the Jayson Williams shooting. He also served as a defense witness in the Phil Spector murder trial, where he reportedly testified that he had no conflict of interest in the case even though his wife was heading Spector’s legal team.Baden isn’t the only one skeptical about the official account of Epstein’s death at the high-security federal lockup in Manhattan, which is currently the subject of a Justice Department probe.Spencer Kuvin, a lawyer representing victims of Epstein, said serious questions remain, including the whereabouts of the guards assigned to monitor him, why the cameras outside his cell apparently didn’t work, and why he was taken off suicide watch.“It all makes no sense. Until they come out with the evidence, I don’t believe anything they’re telling us,” Kuvin said. “Exactly what happened I can’t tell you, but I certainly don’t believe the story they’re trying to feed everyone.”Sigrid McCawley, an attorney at Boies Schiller Flexner, the law firm representing some of Epstein’s victims, said the ongoing Justice Department probe “limits what can and should be said at this time.”“But as the public has come to to understand the horrifying scope and scale of the international sex trafficking system he operated for decades with impunity, what really matters for the brave survivors who are seeking justice is how he lived, not how he died,” she said. “That is how the man should be judged.”Kuvin said his clients are “more interested in seeing co-conspirators prosecuted” than in delving into Epstein autopsy theories.“The justice system failed. They either allowed him to take his own life or someone got in there and killed him,” Kuvin told The Daily Beast. “Either way, it’s a failure of the Justice Department
 [which] has failed them repeatedly over the last 13 years. This was just one more time.”If you or a loved one are struggling with suicidal thoughts, please reach out to the National Suicide Prevention Lifeline at 1-800-273-TALK (8255), or contact the Crisis Text Line by texting TALK to 741741Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/siZIeVPuJ9_PWKpedfWniw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/ecf97654f18e608d05355321d695ab3a,NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden +UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote +The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire +Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +"CIA-backed Afghan units carry out illegal killings, other abuse - group","Wed, 30 Oct 2019 23:30:24 -0400",https://news.yahoo.com/cia-backed-afghan-units-carry-033024655.html,"Afghan security units backed by the U.S. Central Intelligence Agency (CIA) have carried out extrajudicial executions, enforced disappearances, indiscriminate air strikes and other rights abuses and should be disbanded, a rights group said on Thursday. Human Rights Watch said it investigated 14 cases in which CIA-backed Afghan counterinsurgency forces committed serious abuses in Afghanistan between late 2017 and mid-2019. ""They are illustrative of a larger pattern of serious laws-of-war violations — some amounting to war crimes — that extends to all provinces in Afghanistan where these paramilitary forces operate with impunity,"" the group said in a report.",,"CIA-backed Afghan units carry out illegal killings, other abuse - group" +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp","Wed, 30 Oct 2019 08:48:29 -0400",https://news.yahoo.com/supreme-court-citizens-united-led-090034035.html,"Ukraine-gate illustrates precisely how independent expenditures can corrupt. Trump, Giuliani, Fruman and Parnas show how it's done. All in one month.",http://l.yimg.com/uu/api/res/1.2/oMrm78wfyXVi4Q1FxuwrGw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/0ad1be9ebb64ad4d5f7c03222769ad30,"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp" +A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden,"Wed, 30 Oct 2019 15:28:10 -0400",https://news.yahoo.com/nyc-medical-examiner-dismisses-epstein-192810863.html,"Robyn Beck/ReutersNew York City’s chief medical examiner pushed back hard Wednesday against a celebrity pathologist-for-hire’s conspiracy-stirring claim that Jeffrey Epstein’s autopsy was more consistent with homicide than suicide.“The original medical investigation was thorough and complete. There is no reason for a second medical investigation by our office,” said Dr. Barbara Sampson.Sampson determined Epstein died by suicide from hanging in his jail cell in August, while he was awaiting trial on sex-trafficking charges.Epstein’s lawyers and family have refused to accept her finding, and the disgraced financier’s brother hired Dr. Michael Baden—erstwhile host of HBO’s Autopsy—to do his own investigation.Jeffrey Epstein’s Death Ruled Suicide by Hanging: New York City Medical ExaminerDuring an appearance Wednesday morning on Fox News, where he is a contributor, Baden said his own review isn’t complete but nonetheless suggested that suicide isn’t the cause of death.He claimed a collection of neck fractures in Epstein’s hyoid bone and thyroid cartilage “are extremely unusual in suicidal hangings and could occur much more commonly in homicidal strangulation.”“I’ve not seen in 50 years where that occurred in a suicidal hanging case,” Baden said.Although more common in homicidal strangulation cases, some studies have found that hyoid and thyroid fractures are not rare in suicidal hangings.A 2000 study in Australia found fractures in nearly half the 40 suicide cases it examined and said they were even more common in older victims and men; in fact, 15 percent had fractures of both the hyoid and the thyroid. And a 2010 study out of Thailand found such fractures in 25 percent of the confirmed suicides it reviewed.After His Suicide Watch Ended, Jeffrey Epstein Was Left to Look After HimselfBaden, who observed the autopsy performed by Sampson, served briefly as the city’s chief medical examiner before being fired in 1979 by then-Mayor Ed Koch in response to a complaint that he told doctors during a guest-speaking event that Gov. Nelson Rockefeller had died during sexual intercourse.Three years later, he was dismissed as chief deputy medical examiner by Suffolk County, New York, over a magazine article about ways to kill that wouldn’t show up in an autopsy; he protested that he was misquoted.In the '70s, Baden helped Congress investigate the assassinations of President John F. Kennedy and Martin Luther King Jr.—he concluded that Lee Harvey Oswald and James Earl Ray, respectively, were the killers—but became famous for serving as a private pathologist in high-profile cases like the Aaron Hernandez suicide, the O.J. Simpson murder trial, and the Jayson Williams shooting. He also served as a defense witness in the Phil Spector murder trial, where he reportedly testified that he had no conflict of interest in the case even though his wife was heading Spector’s legal team.Baden isn’t the only one skeptical about the official account of Epstein’s death at the high-security federal lockup in Manhattan, which is currently the subject of a Justice Department probe.Spencer Kuvin, a lawyer representing victims of Epstein, said serious questions remain, including the whereabouts of the guards assigned to monitor him, why the cameras outside his cell apparently didn’t work, and why he was taken off suicide watch.“It all makes no sense. Until they come out with the evidence, I don’t believe anything they’re telling us,” Kuvin said. “Exactly what happened I can’t tell you, but I certainly don’t believe the story they’re trying to feed everyone.”Sigrid McCawley, an attorney at Boies Schiller Flexner, the law firm representing some of Epstein’s victims, said the ongoing Justice Department probe “limits what can and should be said at this time.”“But as the public has come to to understand the horrifying scope and scale of the international sex trafficking system he operated for decades with impunity, what really matters for the brave survivors who are seeking justice is how he lived, not how he died,” she said. “That is how the man should be judged.”Kuvin said his clients are “more interested in seeing co-conspirators prosecuted” than in delving into Epstein autopsy theories.“The justice system failed. They either allowed him to take his own life or someone got in there and killed him,” Kuvin told The Daily Beast. “Either way, it’s a failure of the Justice Department
 [which] has failed them repeatedly over the last 13 years. This was just one more time.”If you or a loved one are struggling with suicidal thoughts, please reach out to the National Suicide Prevention Lifeline at 1-800-273-TALK (8255), or contact the Crisis Text Line by texting TALK to 741741Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/siZIeVPuJ9_PWKpedfWniw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/ecf97654f18e608d05355321d695ab3a,NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden +UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote +The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire +Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +"CIA-backed Afghan units carry out illegal killings, other abuse - group","Wed, 30 Oct 2019 23:30:24 -0400",https://news.yahoo.com/cia-backed-afghan-units-carry-033024655.html,"Afghan security units backed by the U.S. Central Intelligence Agency (CIA) have carried out extrajudicial executions, enforced disappearances, indiscriminate air strikes and other rights abuses and should be disbanded, a rights group said on Thursday. Human Rights Watch said it investigated 14 cases in which CIA-backed Afghan counterinsurgency forces committed serious abuses in Afghanistan between late 2017 and mid-2019. ""They are illustrative of a larger pattern of serious laws-of-war violations — some amounting to war crimes — that extends to all provinces in Afghanistan where these paramilitary forces operate with impunity,"" the group said in a report.",,"CIA-backed Afghan units carry out illegal killings, other abuse - group" +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp","Wed, 30 Oct 2019 08:48:29 -0400",https://news.yahoo.com/supreme-court-citizens-united-led-090034035.html,"Ukraine-gate illustrates precisely how independent expenditures can corrupt. Trump, Giuliani, Fruman and Parnas show how it's done. All in one month.",http://l.yimg.com/uu/api/res/1.2/oMrm78wfyXVi4Q1FxuwrGw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/0ad1be9ebb64ad4d5f7c03222769ad30,"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp" +A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden,"Wed, 30 Oct 2019 15:28:10 -0400",https://news.yahoo.com/nyc-medical-examiner-dismisses-epstein-192810863.html,"Robyn Beck/ReutersNew York City’s chief medical examiner pushed back hard Wednesday against a celebrity pathologist-for-hire’s conspiracy-stirring claim that Jeffrey Epstein’s autopsy was more consistent with homicide than suicide.“The original medical investigation was thorough and complete. There is no reason for a second medical investigation by our office,” said Dr. Barbara Sampson.Sampson determined Epstein died by suicide from hanging in his jail cell in August, while he was awaiting trial on sex-trafficking charges.Epstein’s lawyers and family have refused to accept her finding, and the disgraced financier’s brother hired Dr. Michael Baden—erstwhile host of HBO’s Autopsy—to do his own investigation.Jeffrey Epstein’s Death Ruled Suicide by Hanging: New York City Medical ExaminerDuring an appearance Wednesday morning on Fox News, where he is a contributor, Baden said his own review isn’t complete but nonetheless suggested that suicide isn’t the cause of death.He claimed a collection of neck fractures in Epstein’s hyoid bone and thyroid cartilage “are extremely unusual in suicidal hangings and could occur much more commonly in homicidal strangulation.”“I’ve not seen in 50 years where that occurred in a suicidal hanging case,” Baden said.Although more common in homicidal strangulation cases, some studies have found that hyoid and thyroid fractures are not rare in suicidal hangings.A 2000 study in Australia found fractures in nearly half the 40 suicide cases it examined and said they were even more common in older victims and men; in fact, 15 percent had fractures of both the hyoid and the thyroid. And a 2010 study out of Thailand found such fractures in 25 percent of the confirmed suicides it reviewed.After His Suicide Watch Ended, Jeffrey Epstein Was Left to Look After HimselfBaden, who observed the autopsy performed by Sampson, served briefly as the city’s chief medical examiner before being fired in 1979 by then-Mayor Ed Koch in response to a complaint that he told doctors during a guest-speaking event that Gov. Nelson Rockefeller had died during sexual intercourse.Three years later, he was dismissed as chief deputy medical examiner by Suffolk County, New York, over a magazine article about ways to kill that wouldn’t show up in an autopsy; he protested that he was misquoted.In the '70s, Baden helped Congress investigate the assassinations of President John F. Kennedy and Martin Luther King Jr.—he concluded that Lee Harvey Oswald and James Earl Ray, respectively, were the killers—but became famous for serving as a private pathologist in high-profile cases like the Aaron Hernandez suicide, the O.J. Simpson murder trial, and the Jayson Williams shooting. He also served as a defense witness in the Phil Spector murder trial, where he reportedly testified that he had no conflict of interest in the case even though his wife was heading Spector’s legal team.Baden isn’t the only one skeptical about the official account of Epstein’s death at the high-security federal lockup in Manhattan, which is currently the subject of a Justice Department probe.Spencer Kuvin, a lawyer representing victims of Epstein, said serious questions remain, including the whereabouts of the guards assigned to monitor him, why the cameras outside his cell apparently didn’t work, and why he was taken off suicide watch.“It all makes no sense. Until they come out with the evidence, I don’t believe anything they’re telling us,” Kuvin said. “Exactly what happened I can’t tell you, but I certainly don’t believe the story they’re trying to feed everyone.”Sigrid McCawley, an attorney at Boies Schiller Flexner, the law firm representing some of Epstein’s victims, said the ongoing Justice Department probe “limits what can and should be said at this time.”“But as the public has come to to understand the horrifying scope and scale of the international sex trafficking system he operated for decades with impunity, what really matters for the brave survivors who are seeking justice is how he lived, not how he died,” she said. “That is how the man should be judged.”Kuvin said his clients are “more interested in seeing co-conspirators prosecuted” than in delving into Epstein autopsy theories.“The justice system failed. They either allowed him to take his own life or someone got in there and killed him,” Kuvin told The Daily Beast. “Either way, it’s a failure of the Justice Department
 [which] has failed them repeatedly over the last 13 years. This was just one more time.”If you or a loved one are struggling with suicidal thoughts, please reach out to the National Suicide Prevention Lifeline at 1-800-273-TALK (8255), or contact the Crisis Text Line by texting TALK to 741741Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/siZIeVPuJ9_PWKpedfWniw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/ecf97654f18e608d05355321d695ab3a,NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden +UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote +The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire +Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +"CIA-backed Afghan units carry out illegal killings, other abuse - group","Wed, 30 Oct 2019 23:30:24 -0400",https://news.yahoo.com/cia-backed-afghan-units-carry-033024655.html,"Afghan security units backed by the U.S. Central Intelligence Agency (CIA) have carried out extrajudicial executions, enforced disappearances, indiscriminate air strikes and other rights abuses and should be disbanded, a rights group said on Thursday. Human Rights Watch said it investigated 14 cases in which CIA-backed Afghan counterinsurgency forces committed serious abuses in Afghanistan between late 2017 and mid-2019. ""They are illustrative of a larger pattern of serious laws-of-war violations — some amounting to war crimes — that extends to all provinces in Afghanistan where these paramilitary forces operate with impunity,"" the group said in a report.",,"CIA-backed Afghan units carry out illegal killings, other abuse - group" +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp","Wed, 30 Oct 2019 08:48:29 -0400",https://news.yahoo.com/supreme-court-citizens-united-led-090034035.html,"Ukraine-gate illustrates precisely how independent expenditures can corrupt. Trump, Giuliani, Fruman and Parnas show how it's done. All in one month.",http://l.yimg.com/uu/api/res/1.2/oMrm78wfyXVi4Q1FxuwrGw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/0ad1be9ebb64ad4d5f7c03222769ad30,"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp" +A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden,"Wed, 30 Oct 2019 15:28:10 -0400",https://news.yahoo.com/nyc-medical-examiner-dismisses-epstein-192810863.html,"Robyn Beck/ReutersNew York City’s chief medical examiner pushed back hard Wednesday against a celebrity pathologist-for-hire’s conspiracy-stirring claim that Jeffrey Epstein’s autopsy was more consistent with homicide than suicide.“The original medical investigation was thorough and complete. There is no reason for a second medical investigation by our office,” said Dr. Barbara Sampson.Sampson determined Epstein died by suicide from hanging in his jail cell in August, while he was awaiting trial on sex-trafficking charges.Epstein’s lawyers and family have refused to accept her finding, and the disgraced financier’s brother hired Dr. Michael Baden—erstwhile host of HBO’s Autopsy—to do his own investigation.Jeffrey Epstein’s Death Ruled Suicide by Hanging: New York City Medical ExaminerDuring an appearance Wednesday morning on Fox News, where he is a contributor, Baden said his own review isn’t complete but nonetheless suggested that suicide isn’t the cause of death.He claimed a collection of neck fractures in Epstein’s hyoid bone and thyroid cartilage “are extremely unusual in suicidal hangings and could occur much more commonly in homicidal strangulation.”“I’ve not seen in 50 years where that occurred in a suicidal hanging case,” Baden said.Although more common in homicidal strangulation cases, some studies have found that hyoid and thyroid fractures are not rare in suicidal hangings.A 2000 study in Australia found fractures in nearly half the 40 suicide cases it examined and said they were even more common in older victims and men; in fact, 15 percent had fractures of both the hyoid and the thyroid. And a 2010 study out of Thailand found such fractures in 25 percent of the confirmed suicides it reviewed.After His Suicide Watch Ended, Jeffrey Epstein Was Left to Look After HimselfBaden, who observed the autopsy performed by Sampson, served briefly as the city’s chief medical examiner before being fired in 1979 by then-Mayor Ed Koch in response to a complaint that he told doctors during a guest-speaking event that Gov. Nelson Rockefeller had died during sexual intercourse.Three years later, he was dismissed as chief deputy medical examiner by Suffolk County, New York, over a magazine article about ways to kill that wouldn’t show up in an autopsy; he protested that he was misquoted.In the '70s, Baden helped Congress investigate the assassinations of President John F. Kennedy and Martin Luther King Jr.—he concluded that Lee Harvey Oswald and James Earl Ray, respectively, were the killers—but became famous for serving as a private pathologist in high-profile cases like the Aaron Hernandez suicide, the O.J. Simpson murder trial, and the Jayson Williams shooting. He also served as a defense witness in the Phil Spector murder trial, where he reportedly testified that he had no conflict of interest in the case even though his wife was heading Spector’s legal team.Baden isn’t the only one skeptical about the official account of Epstein’s death at the high-security federal lockup in Manhattan, which is currently the subject of a Justice Department probe.Spencer Kuvin, a lawyer representing victims of Epstein, said serious questions remain, including the whereabouts of the guards assigned to monitor him, why the cameras outside his cell apparently didn’t work, and why he was taken off suicide watch.“It all makes no sense. Until they come out with the evidence, I don’t believe anything they’re telling us,” Kuvin said. “Exactly what happened I can’t tell you, but I certainly don’t believe the story they’re trying to feed everyone.”Sigrid McCawley, an attorney at Boies Schiller Flexner, the law firm representing some of Epstein’s victims, said the ongoing Justice Department probe “limits what can and should be said at this time.”“But as the public has come to to understand the horrifying scope and scale of the international sex trafficking system he operated for decades with impunity, what really matters for the brave survivors who are seeking justice is how he lived, not how he died,” she said. “That is how the man should be judged.”Kuvin said his clients are “more interested in seeing co-conspirators prosecuted” than in delving into Epstein autopsy theories.“The justice system failed. They either allowed him to take his own life or someone got in there and killed him,” Kuvin told The Daily Beast. “Either way, it’s a failure of the Justice Department
 [which] has failed them repeatedly over the last 13 years. This was just one more time.”If you or a loved one are struggling with suicidal thoughts, please reach out to the National Suicide Prevention Lifeline at 1-800-273-TALK (8255), or contact the Crisis Text Line by texting TALK to 741741Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/siZIeVPuJ9_PWKpedfWniw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/ecf97654f18e608d05355321d695ab3a,NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden +UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote +The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire +Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +"CIA-backed Afghan units carry out illegal killings, other abuse - group","Wed, 30 Oct 2019 23:30:24 -0400",https://news.yahoo.com/cia-backed-afghan-units-carry-033024655.html,"Afghan security units backed by the U.S. Central Intelligence Agency (CIA) have carried out extrajudicial executions, enforced disappearances, indiscriminate air strikes and other rights abuses and should be disbanded, a rights group said on Thursday. Human Rights Watch said it investigated 14 cases in which CIA-backed Afghan counterinsurgency forces committed serious abuses in Afghanistan between late 2017 and mid-2019. ""They are illustrative of a larger pattern of serious laws-of-war violations — some amounting to war crimes — that extends to all provinces in Afghanistan where these paramilitary forces operate with impunity,"" the group said in a report.",,"CIA-backed Afghan units carry out illegal killings, other abuse - group" +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp","Wed, 30 Oct 2019 08:48:29 -0400",https://news.yahoo.com/supreme-court-citizens-united-led-090034035.html,"Ukraine-gate illustrates precisely how independent expenditures can corrupt. Trump, Giuliani, Fruman and Parnas show how it's done. All in one month.",http://l.yimg.com/uu/api/res/1.2/oMrm78wfyXVi4Q1FxuwrGw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/0ad1be9ebb64ad4d5f7c03222769ad30,"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp" +A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden,"Wed, 30 Oct 2019 15:28:10 -0400",https://news.yahoo.com/nyc-medical-examiner-dismisses-epstein-192810863.html,"Robyn Beck/ReutersNew York City’s chief medical examiner pushed back hard Wednesday against a celebrity pathologist-for-hire’s conspiracy-stirring claim that Jeffrey Epstein’s autopsy was more consistent with homicide than suicide.“The original medical investigation was thorough and complete. There is no reason for a second medical investigation by our office,” said Dr. Barbara Sampson.Sampson determined Epstein died by suicide from hanging in his jail cell in August, while he was awaiting trial on sex-trafficking charges.Epstein’s lawyers and family have refused to accept her finding, and the disgraced financier’s brother hired Dr. Michael Baden—erstwhile host of HBO’s Autopsy—to do his own investigation.Jeffrey Epstein’s Death Ruled Suicide by Hanging: New York City Medical ExaminerDuring an appearance Wednesday morning on Fox News, where he is a contributor, Baden said his own review isn’t complete but nonetheless suggested that suicide isn’t the cause of death.He claimed a collection of neck fractures in Epstein’s hyoid bone and thyroid cartilage “are extremely unusual in suicidal hangings and could occur much more commonly in homicidal strangulation.”“I’ve not seen in 50 years where that occurred in a suicidal hanging case,” Baden said.Although more common in homicidal strangulation cases, some studies have found that hyoid and thyroid fractures are not rare in suicidal hangings.A 2000 study in Australia found fractures in nearly half the 40 suicide cases it examined and said they were even more common in older victims and men; in fact, 15 percent had fractures of both the hyoid and the thyroid. And a 2010 study out of Thailand found such fractures in 25 percent of the confirmed suicides it reviewed.After His Suicide Watch Ended, Jeffrey Epstein Was Left to Look After HimselfBaden, who observed the autopsy performed by Sampson, served briefly as the city’s chief medical examiner before being fired in 1979 by then-Mayor Ed Koch in response to a complaint that he told doctors during a guest-speaking event that Gov. Nelson Rockefeller had died during sexual intercourse.Three years later, he was dismissed as chief deputy medical examiner by Suffolk County, New York, over a magazine article about ways to kill that wouldn’t show up in an autopsy; he protested that he was misquoted.In the '70s, Baden helped Congress investigate the assassinations of President John F. Kennedy and Martin Luther King Jr.—he concluded that Lee Harvey Oswald and James Earl Ray, respectively, were the killers—but became famous for serving as a private pathologist in high-profile cases like the Aaron Hernandez suicide, the O.J. Simpson murder trial, and the Jayson Williams shooting. He also served as a defense witness in the Phil Spector murder trial, where he reportedly testified that he had no conflict of interest in the case even though his wife was heading Spector’s legal team.Baden isn’t the only one skeptical about the official account of Epstein’s death at the high-security federal lockup in Manhattan, which is currently the subject of a Justice Department probe.Spencer Kuvin, a lawyer representing victims of Epstein, said serious questions remain, including the whereabouts of the guards assigned to monitor him, why the cameras outside his cell apparently didn’t work, and why he was taken off suicide watch.“It all makes no sense. Until they come out with the evidence, I don’t believe anything they’re telling us,” Kuvin said. “Exactly what happened I can’t tell you, but I certainly don’t believe the story they’re trying to feed everyone.”Sigrid McCawley, an attorney at Boies Schiller Flexner, the law firm representing some of Epstein’s victims, said the ongoing Justice Department probe “limits what can and should be said at this time.”“But as the public has come to to understand the horrifying scope and scale of the international sex trafficking system he operated for decades with impunity, what really matters for the brave survivors who are seeking justice is how he lived, not how he died,” she said. “That is how the man should be judged.”Kuvin said his clients are “more interested in seeing co-conspirators prosecuted” than in delving into Epstein autopsy theories.“The justice system failed. They either allowed him to take his own life or someone got in there and killed him,” Kuvin told The Daily Beast. “Either way, it’s a failure of the Justice Department
 [which] has failed them repeatedly over the last 13 years. This was just one more time.”If you or a loved one are struggling with suicidal thoughts, please reach out to the National Suicide Prevention Lifeline at 1-800-273-TALK (8255), or contact the Crisis Text Line by texting TALK to 741741Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/siZIeVPuJ9_PWKpedfWniw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/ecf97654f18e608d05355321d695ab3a,NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden +UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote +The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire +Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah +Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse +China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens +"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" +Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe +Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! +Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans +Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy +"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" +Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires +House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump +Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields +Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution +Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors +2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? +"CIA-backed Afghan units carry out illegal killings, other abuse - group","Wed, 30 Oct 2019 23:30:24 -0400",https://news.yahoo.com/cia-backed-afghan-units-carry-033024655.html,"Afghan security units backed by the U.S. Central Intelligence Agency (CIA) have carried out extrajudicial executions, enforced disappearances, indiscriminate air strikes and other rights abuses and should be disbanded, a rights group said on Thursday. Human Rights Watch said it investigated 14 cases in which CIA-backed Afghan counterinsurgency forces committed serious abuses in Afghanistan between late 2017 and mid-2019. ""They are illustrative of a larger pattern of serious laws-of-war violations — some amounting to war crimes — that extends to all provinces in Afghanistan where these paramilitary forces operate with impunity,"" the group said in a report.",,"CIA-backed Afghan units carry out illegal killings, other abuse - group" +"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" +Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing +Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' +"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp","Wed, 30 Oct 2019 08:48:29 -0400",https://news.yahoo.com/supreme-court-citizens-united-led-090034035.html,"Ukraine-gate illustrates precisely how independent expenditures can corrupt. Trump, Giuliani, Fruman and Parnas show how it's done. All in one month.",http://l.yimg.com/uu/api/res/1.2/oMrm78wfyXVi4Q1FxuwrGw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/0ad1be9ebb64ad4d5f7c03222769ad30,"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp" +A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state +Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji +This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 +NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden,"Wed, 30 Oct 2019 15:28:10 -0400",https://news.yahoo.com/nyc-medical-examiner-dismisses-epstein-192810863.html,"Robyn Beck/ReutersNew York City’s chief medical examiner pushed back hard Wednesday against a celebrity pathologist-for-hire’s conspiracy-stirring claim that Jeffrey Epstein’s autopsy was more consistent with homicide than suicide.“The original medical investigation was thorough and complete. There is no reason for a second medical investigation by our office,” said Dr. Barbara Sampson.Sampson determined Epstein died by suicide from hanging in his jail cell in August, while he was awaiting trial on sex-trafficking charges.Epstein’s lawyers and family have refused to accept her finding, and the disgraced financier’s brother hired Dr. Michael Baden—erstwhile host of HBO’s Autopsy—to do his own investigation.Jeffrey Epstein’s Death Ruled Suicide by Hanging: New York City Medical ExaminerDuring an appearance Wednesday morning on Fox News, where he is a contributor, Baden said his own review isn’t complete but nonetheless suggested that suicide isn’t the cause of death.He claimed a collection of neck fractures in Epstein’s hyoid bone and thyroid cartilage “are extremely unusual in suicidal hangings and could occur much more commonly in homicidal strangulation.”“I’ve not seen in 50 years where that occurred in a suicidal hanging case,” Baden said.Although more common in homicidal strangulation cases, some studies have found that hyoid and thyroid fractures are not rare in suicidal hangings.A 2000 study in Australia found fractures in nearly half the 40 suicide cases it examined and said they were even more common in older victims and men; in fact, 15 percent had fractures of both the hyoid and the thyroid. And a 2010 study out of Thailand found such fractures in 25 percent of the confirmed suicides it reviewed.After His Suicide Watch Ended, Jeffrey Epstein Was Left to Look After HimselfBaden, who observed the autopsy performed by Sampson, served briefly as the city’s chief medical examiner before being fired in 1979 by then-Mayor Ed Koch in response to a complaint that he told doctors during a guest-speaking event that Gov. Nelson Rockefeller had died during sexual intercourse.Three years later, he was dismissed as chief deputy medical examiner by Suffolk County, New York, over a magazine article about ways to kill that wouldn’t show up in an autopsy; he protested that he was misquoted.In the '70s, Baden helped Congress investigate the assassinations of President John F. Kennedy and Martin Luther King Jr.—he concluded that Lee Harvey Oswald and James Earl Ray, respectively, were the killers—but became famous for serving as a private pathologist in high-profile cases like the Aaron Hernandez suicide, the O.J. Simpson murder trial, and the Jayson Williams shooting. He also served as a defense witness in the Phil Spector murder trial, where he reportedly testified that he had no conflict of interest in the case even though his wife was heading Spector’s legal team.Baden isn’t the only one skeptical about the official account of Epstein’s death at the high-security federal lockup in Manhattan, which is currently the subject of a Justice Department probe.Spencer Kuvin, a lawyer representing victims of Epstein, said serious questions remain, including the whereabouts of the guards assigned to monitor him, why the cameras outside his cell apparently didn’t work, and why he was taken off suicide watch.“It all makes no sense. Until they come out with the evidence, I don’t believe anything they’re telling us,” Kuvin said. “Exactly what happened I can’t tell you, but I certainly don’t believe the story they’re trying to feed everyone.”Sigrid McCawley, an attorney at Boies Schiller Flexner, the law firm representing some of Epstein’s victims, said the ongoing Justice Department probe “limits what can and should be said at this time.”“But as the public has come to to understand the horrifying scope and scale of the international sex trafficking system he operated for decades with impunity, what really matters for the brave survivors who are seeking justice is how he lived, not how he died,” she said. “That is how the man should be judged.”Kuvin said his clients are “more interested in seeing co-conspirators prosecuted” than in delving into Epstein autopsy theories.“The justice system failed. They either allowed him to take his own life or someone got in there and killed him,” Kuvin told The Daily Beast. “Either way, it’s a failure of the Justice Department
 [which] has failed them repeatedly over the last 13 years. This was just one more time.”If you or a loved one are struggling with suicidal thoughts, please reach out to the National Suicide Prevention Lifeline at 1-800-273-TALK (8255), or contact the Crisis Text Line by texting TALK to 741741Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/siZIeVPuJ9_PWKpedfWniw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/ecf97654f18e608d05355321d695ab3a,NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden +UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote +The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire diff --git a/news_feed/news_cash/20191031.csv b/news_feed/news_cash/20191031.csv new file mode 100644 index 0000000..0c4e58d --- /dev/null +++ b/news_feed/news_cash/20191031.csv @@ -0,0 +1,745 @@ +title,pubDate,link,description,imageLink,imageDescription +70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 12:33:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, +India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, +Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 10:10:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, +Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, +Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, +4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, +Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, +Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, +Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, +7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, +70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, +India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, +Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, +Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, +Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, +4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, +Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, +Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, +Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, +7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, +70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, +India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, +Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, +Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, +Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, +4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, +Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, +Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, +Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, +7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, +70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, +India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, +Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, +Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, +Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, +4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, +Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, +Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, +Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, +7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, +70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, +India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, +Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, +Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, +Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, +4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, +Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, +Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, +Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, +7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, +70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, +India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, +Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, +Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, +Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, +4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, +Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, +Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, +Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, +7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, +70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, +India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, +Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, +Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, +Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, +4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, +Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, +Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, +Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, +7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, +70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, +India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, +Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, +Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, +Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, +4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, +Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, +Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, +Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, +7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, +70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, +India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, +Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, +Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, +Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, +4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, +Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, +Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, +Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, +7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, +70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, +India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, +Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, +Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, +Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, +4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, +Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, +Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, +Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, +7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, +70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, +India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, +Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, +Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, +Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, +4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, +Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, +Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, +Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, +7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, +70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, +India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, +Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, +Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, +Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, +4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, +Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, +Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, +Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, +7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, +70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, +India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, +Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, +Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, +Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, +4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, +Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, +Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, +Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, +7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, +70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, +India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, +Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, +Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, +Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, +4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, +Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, +Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, +Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, +7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, +70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, +India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, +Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, +Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, +Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, +4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, +Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, +Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, +Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, +7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, +70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, +India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, +Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, +Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, +Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, +4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, +Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, +Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, +Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, +7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, +70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, +India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, +Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, +Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, +Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, +4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, +Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, +Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, +Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, +7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, +70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, +India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, +Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, +Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, +Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, +4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, +Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, +Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, +Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, +7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, +70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, +India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, +Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, +Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, +Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, +4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, +Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, +Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, +Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, +7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, +"House Democrats face question: Impeach Pence, or make him president?","Thu, 31 Oct 2019 05:00:38 -0400",https://news.yahoo.com/house-democrats-face-question-impeach-pence-or-make-him-president-090012685.html,"If the House approves impeachment, and if the Senate votes to remove Trump, Pence would become president. Would he make a better president?",http://l1.yimg.com/uu/api/res/1.2/Z3VG5Hx16YaZq2pevUBETg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-images/2019-10/deb28d30-fb5b-11e9-bfef-ef163d511377,"House Democrats face question: Impeach Pence, or make him president?" +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong +She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community","Thu, 31 Oct 2019 07:01:10 -0400",https://news.yahoo.com/photos-show-paradise-california-one-110110569.html,"The cleanup in Paradise, California, shows no sign of ending. 18,000 buildings were razed by the Camp Fire, and residents must start from scratch.",http://l1.yimg.com/uu/api/res/1.2/PCMbfOGgiQrP9wsDr6LBRw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/09fe4ea1b28d747b58b045d99bbd1dee,"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community" +"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia","Thu, 31 Oct 2019 07:37:46 -0400",https://news.yahoo.com/1-body-believed-missing-british-113746232.html,"Cambodian authorities found a body floating near the Thai border on Thursday that is believed to be a 21-year-old British woman who went missing last week from a beach party in a coastal area popular with backpackers, police said. Amelia Bambridge's disappearance prompted a search with divers, land-based teams and police drones after her purse was found on a beach with her mobile phone and watch inside. Cambodian maritime authorities located the body in waters near the Thai border, about 100 kilometres (62 miles) away from where she had disappeared last week, said Chuon Narin, police chief of the Preah Sihanouk province.",,"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia" +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +"2 new California fires burn homes, send residents fleeing","Thu, 31 Oct 2019 10:37:54 -0400",https://news.yahoo.com/california-not-fire-danger-lingering-052524893.html,"Strong winds fanned new fires in Southern California on Thursday, burning homes and forcing residents to flee in a repeat of a frightening scenario already faced by tens of thousands across the state. The latest blazes erupted in the heavily populated inland region east of Los Angeles as strong, seasonal Santa Ana winds continued to blow with gusts of up to 60 mph (96 kph) predicted to last until the evening before they fade away. A fast-moving fire spread into the northern neighborhoods of the city of San Bernardino, forcing the evacuation of 490 homes — approximately 1,300 people, the San Bernardino County Fire Department said.",http://l.yimg.com/uu/api/res/1.2/EgvcbkR5TS0030iTKqMFUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/50bdfeb160fad4ba28ac5cc0abe6c7d8,"2 new California fires burn homes, send residents fleeing" +Indian Kashmir formally ceases to be a state,"Thu, 31 Oct 2019 03:49:33 -0400",https://news.yahoo.com/indian-kashmir-formally-ceases-state-074702472.html,"India's Muslim-majority region of Kashmir was formally divided on Thursday, almost three months after losing its autonomy in a move that triggered violence and stoked tensions with arch-rival Pakistan. The move, announced in early August when India imposed a lockdown and sent in tens of thousands of extra troops, saw Jammu and Kashmir cease to be a state and split into two new administrative territories ruled directly from New Delhi. Speaking next to a colossal statue of independence hero Sardar Vallabhbhai Patel in his home state of Gujarat, Prime Minister Narendra Modi on Thursday hailed a ""bright future"" for the blood-soaked Himalayan region.",http://l2.yimg.com/uu/api/res/1.2/tgmQ6cfdT1T5lXFkGvD8Cg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/6ca8b167fc5782c61c479d4a7165db5861e924af.jpg,Indian Kashmir formally ceases to be a state +The Supreme Court Should Kill DACA,"Thu, 31 Oct 2019 06:30:31 -0400",https://news.yahoo.com/supreme-court-end-daca-103031297.html,"President Obama created an illegal policy for the executive branch to follow. President Trump decided to stop that policy. And in a bizarre case the Supreme Court will be hearing November 12, activist groups are suing to force the executive branch to keep acting illegally.At the heart of the case is the Deferred Action for Childhood Arrivals (DACA) program, through which Obama made legal status and work authorization available to more than a million illegal-immigrant “Dreamers” who arrived in this country as minors. Trump decided to end the program and was, unsurprisingly, promptly sued.If the year were 2016 and the lawsuit were about whether the Court itself should strike down DACA — instead of whether it should stop the executive from ending it — you could at least have a sliver of a debate. Federal immigration laws do grant the executive branch broad enforcement discretion, and the executive branch has used deferred action, albeit on a much narrower basis, to avoid deporting sensitive groups in the past.However, even in that hypothetical case, the program would not have much of a chance before a conservative Court. A similar program for the illegal-immigrant parents of citizen children (“DAPA”) was enjoined in court and never implemented, and the appeals-court ruling against the program spelled out an argument that would obviously apply to DACA as well.The appeals court pointed out that, as vague as U.S. immigration laws can be, they lay out an elaborate process for granting legal status to immigrants. In lieu of that system, the Obama administration’s interpretation of the law would allow the executive “to grant lawful presence and work authorization to any illegal alien in the United States — an untenable position in light of the [law’s] intricate system of immigration classifications and employment eligibility.”The court also stressed that “previous deferred-action programs are not analogous to DAPA.” They were typically used to help people from a specific country in the wake of a disaster, or to help immigrants move from one legal status to another.The Supreme Court confronted the DAPA case in the wake of Antonin Scalia’s death, split 4–4, and thereby let the appeals-court ruling be the final word. The Court has moved to the right since then, so the four votes supporting the appeals-court ruling likely represent the views of the new five-justice conservative majority.And there’s a big difference between the old DAPA case and the new DACA one: In the previous case, the courts were asked to stop the executive branch from acting illegally, raising the age-old quandary of how aggressive the judicial branch should be when it comes to reining in the abuses of the executive. This time, the courts are asked to refuse to let the executive branch end the illegal program on its own, on the idea that the administration failed to adequately explain and defend its reasons for doing so. Such i-dotting and t-crossing is required under the Administrative Procedures Act.As Josh Blackman and Ilya Shapiro — who both support DACA as a policy — explained in a recent brief for the Cato Institute, the argument just doesn’t hold water. Even if the short letter laying out the administration’s objections wasn’t a “model of clarity,” it explained that DACA lacked “proper statutory authority” and suffered from the same problems that had gotten DAPA killed in court on “multiple legal grounds.” The letter also alluded to a deeper constitutional problem: If current immigration law does allow the executive branch to change policy so drastically on its own, it’s arguably an illegal delegation of Congress’s lawmaking power, and the executive branch can and should avoid this problem by winding down the policy.But most to the point, Blackman and Shapiro write that “the Administrative Procedure Act (APA) cannot be read to force the executive branch to continue implementing a policy that is contrary to law, regardless of how it chooses to rescind the policy.”Something like DACA will almost certainly be part of any long-term compromise on immigration policy. I’m sure most congressional Republicans would be happy to preserve it in exchange for a smarter immigration system. But the executive had no right to enact DACA on its own, and the courts have no right to stop the Trump administration from correcting course.",http://l1.yimg.com/uu/api/res/1.2/Zo3439T_YD9HcnTVxOQcbw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/99f778b59c4318e137b1700d28478d94,The Supreme Court Should Kill DACA +"House Democrats face question: Impeach Pence, or make him president?","Thu, 31 Oct 2019 05:00:38 -0400",https://news.yahoo.com/house-democrats-face-question-impeach-pence-or-make-him-president-090012685.html,"If the House approves impeachment, and if the Senate votes to remove Trump, Pence would become president. Would he make a better president?",http://l1.yimg.com/uu/api/res/1.2/Z3VG5Hx16YaZq2pevUBETg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-images/2019-10/deb28d30-fb5b-11e9-bfef-ef163d511377,"House Democrats face question: Impeach Pence, or make him president?" +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong +She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community","Thu, 31 Oct 2019 07:01:10 -0400",https://news.yahoo.com/photos-show-paradise-california-one-110110569.html,"The cleanup in Paradise, California, shows no sign of ending. 18,000 buildings were razed by the Camp Fire, and residents must start from scratch.",http://l1.yimg.com/uu/api/res/1.2/PCMbfOGgiQrP9wsDr6LBRw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/09fe4ea1b28d747b58b045d99bbd1dee,"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community" +"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia","Thu, 31 Oct 2019 07:37:46 -0400",https://news.yahoo.com/1-body-believed-missing-british-113746232.html,"Cambodian authorities found a body floating near the Thai border on Thursday that is believed to be a 21-year-old British woman who went missing last week from a beach party in a coastal area popular with backpackers, police said. Amelia Bambridge's disappearance prompted a search with divers, land-based teams and police drones after her purse was found on a beach with her mobile phone and watch inside. Cambodian maritime authorities located the body in waters near the Thai border, about 100 kilometres (62 miles) away from where she had disappeared last week, said Chuon Narin, police chief of the Preah Sihanouk province.",,"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia" +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +"2 new California fires burn homes, send residents fleeing","Thu, 31 Oct 2019 10:37:54 -0400",https://news.yahoo.com/california-not-fire-danger-lingering-052524893.html,"Strong winds fanned new fires in Southern California on Thursday, burning homes and forcing residents to flee in a repeat of a frightening scenario already faced by tens of thousands across the state. The latest blazes erupted in the heavily populated inland region east of Los Angeles as strong, seasonal Santa Ana winds continued to blow with gusts of up to 60 mph (96 kph) predicted to last until the evening before they fade away. A fast-moving fire spread into the northern neighborhoods of the city of San Bernardino, forcing the evacuation of 490 homes — approximately 1,300 people, the San Bernardino County Fire Department said.",http://l.yimg.com/uu/api/res/1.2/EgvcbkR5TS0030iTKqMFUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/50bdfeb160fad4ba28ac5cc0abe6c7d8,"2 new California fires burn homes, send residents fleeing" +Indian Kashmir formally ceases to be a state,"Thu, 31 Oct 2019 03:49:33 -0400",https://news.yahoo.com/indian-kashmir-formally-ceases-state-074702472.html,"India's Muslim-majority region of Kashmir was formally divided on Thursday, almost three months after losing its autonomy in a move that triggered violence and stoked tensions with arch-rival Pakistan. The move, announced in early August when India imposed a lockdown and sent in tens of thousands of extra troops, saw Jammu and Kashmir cease to be a state and split into two new administrative territories ruled directly from New Delhi. Speaking next to a colossal statue of independence hero Sardar Vallabhbhai Patel in his home state of Gujarat, Prime Minister Narendra Modi on Thursday hailed a ""bright future"" for the blood-soaked Himalayan region.",http://l2.yimg.com/uu/api/res/1.2/tgmQ6cfdT1T5lXFkGvD8Cg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/6ca8b167fc5782c61c479d4a7165db5861e924af.jpg,Indian Kashmir formally ceases to be a state +The Supreme Court Should Kill DACA,"Thu, 31 Oct 2019 06:30:31 -0400",https://news.yahoo.com/supreme-court-end-daca-103031297.html,"President Obama created an illegal policy for the executive branch to follow. President Trump decided to stop that policy. And in a bizarre case the Supreme Court will be hearing November 12, activist groups are suing to force the executive branch to keep acting illegally.At the heart of the case is the Deferred Action for Childhood Arrivals (DACA) program, through which Obama made legal status and work authorization available to more than a million illegal-immigrant “Dreamers” who arrived in this country as minors. Trump decided to end the program and was, unsurprisingly, promptly sued.If the year were 2016 and the lawsuit were about whether the Court itself should strike down DACA — instead of whether it should stop the executive from ending it — you could at least have a sliver of a debate. Federal immigration laws do grant the executive branch broad enforcement discretion, and the executive branch has used deferred action, albeit on a much narrower basis, to avoid deporting sensitive groups in the past.However, even in that hypothetical case, the program would not have much of a chance before a conservative Court. A similar program for the illegal-immigrant parents of citizen children (“DAPA”) was enjoined in court and never implemented, and the appeals-court ruling against the program spelled out an argument that would obviously apply to DACA as well.The appeals court pointed out that, as vague as U.S. immigration laws can be, they lay out an elaborate process for granting legal status to immigrants. In lieu of that system, the Obama administration’s interpretation of the law would allow the executive “to grant lawful presence and work authorization to any illegal alien in the United States — an untenable position in light of the [law’s] intricate system of immigration classifications and employment eligibility.”The court also stressed that “previous deferred-action programs are not analogous to DAPA.” They were typically used to help people from a specific country in the wake of a disaster, or to help immigrants move from one legal status to another.The Supreme Court confronted the DAPA case in the wake of Antonin Scalia’s death, split 4–4, and thereby let the appeals-court ruling be the final word. The Court has moved to the right since then, so the four votes supporting the appeals-court ruling likely represent the views of the new five-justice conservative majority.And there’s a big difference between the old DAPA case and the new DACA one: In the previous case, the courts were asked to stop the executive branch from acting illegally, raising the age-old quandary of how aggressive the judicial branch should be when it comes to reining in the abuses of the executive. This time, the courts are asked to refuse to let the executive branch end the illegal program on its own, on the idea that the administration failed to adequately explain and defend its reasons for doing so. Such i-dotting and t-crossing is required under the Administrative Procedures Act.As Josh Blackman and Ilya Shapiro — who both support DACA as a policy — explained in a recent brief for the Cato Institute, the argument just doesn’t hold water. Even if the short letter laying out the administration’s objections wasn’t a “model of clarity,” it explained that DACA lacked “proper statutory authority” and suffered from the same problems that had gotten DAPA killed in court on “multiple legal grounds.” The letter also alluded to a deeper constitutional problem: If current immigration law does allow the executive branch to change policy so drastically on its own, it’s arguably an illegal delegation of Congress’s lawmaking power, and the executive branch can and should avoid this problem by winding down the policy.But most to the point, Blackman and Shapiro write that “the Administrative Procedure Act (APA) cannot be read to force the executive branch to continue implementing a policy that is contrary to law, regardless of how it chooses to rescind the policy.”Something like DACA will almost certainly be part of any long-term compromise on immigration policy. I’m sure most congressional Republicans would be happy to preserve it in exchange for a smarter immigration system. But the executive had no right to enact DACA on its own, and the courts have no right to stop the Trump administration from correcting course.",http://l1.yimg.com/uu/api/res/1.2/Zo3439T_YD9HcnTVxOQcbw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/99f778b59c4318e137b1700d28478d94,The Supreme Court Should Kill DACA +"House Democrats face question: Impeach Pence, or make him president?","Thu, 31 Oct 2019 05:00:38 -0400",https://news.yahoo.com/house-democrats-face-question-impeach-pence-or-make-him-president-090012685.html,"If the House approves impeachment, and if the Senate votes to remove Trump, Pence would become president. Would he make a better president?",http://l1.yimg.com/uu/api/res/1.2/Z3VG5Hx16YaZq2pevUBETg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-images/2019-10/deb28d30-fb5b-11e9-bfef-ef163d511377,"House Democrats face question: Impeach Pence, or make him president?" +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong +She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community","Thu, 31 Oct 2019 07:01:10 -0400",https://news.yahoo.com/photos-show-paradise-california-one-110110569.html,"The cleanup in Paradise, California, shows no sign of ending. 18,000 buildings were razed by the Camp Fire, and residents must start from scratch.",http://l1.yimg.com/uu/api/res/1.2/PCMbfOGgiQrP9wsDr6LBRw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/09fe4ea1b28d747b58b045d99bbd1dee,"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community" +"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia","Thu, 31 Oct 2019 07:37:46 -0400",https://news.yahoo.com/1-body-believed-missing-british-113746232.html,"Cambodian authorities found a body floating near the Thai border on Thursday that is believed to be a 21-year-old British woman who went missing last week from a beach party in a coastal area popular with backpackers, police said. Amelia Bambridge's disappearance prompted a search with divers, land-based teams and police drones after her purse was found on a beach with her mobile phone and watch inside. Cambodian maritime authorities located the body in waters near the Thai border, about 100 kilometres (62 miles) away from where she had disappeared last week, said Chuon Narin, police chief of the Preah Sihanouk province.",,"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia" +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +"2 new California fires burn homes, send residents fleeing","Thu, 31 Oct 2019 10:37:54 -0400",https://news.yahoo.com/california-not-fire-danger-lingering-052524893.html,"Strong winds fanned new fires in Southern California on Thursday, burning homes and forcing residents to flee in a repeat of a frightening scenario already faced by tens of thousands across the state. The latest blazes erupted in the heavily populated inland region east of Los Angeles as strong, seasonal Santa Ana winds continued to blow with gusts of up to 60 mph (96 kph) predicted to last until the evening before they fade away. A fast-moving fire spread into the northern neighborhoods of the city of San Bernardino, forcing the evacuation of 490 homes — approximately 1,300 people, the San Bernardino County Fire Department said.",http://l.yimg.com/uu/api/res/1.2/EgvcbkR5TS0030iTKqMFUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/50bdfeb160fad4ba28ac5cc0abe6c7d8,"2 new California fires burn homes, send residents fleeing" +Indian Kashmir formally ceases to be a state,"Thu, 31 Oct 2019 03:49:33 -0400",https://news.yahoo.com/indian-kashmir-formally-ceases-state-074702472.html,"India's Muslim-majority region of Kashmir was formally divided on Thursday, almost three months after losing its autonomy in a move that triggered violence and stoked tensions with arch-rival Pakistan. The move, announced in early August when India imposed a lockdown and sent in tens of thousands of extra troops, saw Jammu and Kashmir cease to be a state and split into two new administrative territories ruled directly from New Delhi. Speaking next to a colossal statue of independence hero Sardar Vallabhbhai Patel in his home state of Gujarat, Prime Minister Narendra Modi on Thursday hailed a ""bright future"" for the blood-soaked Himalayan region.",http://l2.yimg.com/uu/api/res/1.2/tgmQ6cfdT1T5lXFkGvD8Cg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/6ca8b167fc5782c61c479d4a7165db5861e924af.jpg,Indian Kashmir formally ceases to be a state +The Supreme Court Should Kill DACA,"Thu, 31 Oct 2019 06:30:31 -0400",https://news.yahoo.com/supreme-court-end-daca-103031297.html,"President Obama created an illegal policy for the executive branch to follow. President Trump decided to stop that policy. And in a bizarre case the Supreme Court will be hearing November 12, activist groups are suing to force the executive branch to keep acting illegally.At the heart of the case is the Deferred Action for Childhood Arrivals (DACA) program, through which Obama made legal status and work authorization available to more than a million illegal-immigrant “Dreamers” who arrived in this country as minors. Trump decided to end the program and was, unsurprisingly, promptly sued.If the year were 2016 and the lawsuit were about whether the Court itself should strike down DACA — instead of whether it should stop the executive from ending it — you could at least have a sliver of a debate. Federal immigration laws do grant the executive branch broad enforcement discretion, and the executive branch has used deferred action, albeit on a much narrower basis, to avoid deporting sensitive groups in the past.However, even in that hypothetical case, the program would not have much of a chance before a conservative Court. A similar program for the illegal-immigrant parents of citizen children (“DAPA”) was enjoined in court and never implemented, and the appeals-court ruling against the program spelled out an argument that would obviously apply to DACA as well.The appeals court pointed out that, as vague as U.S. immigration laws can be, they lay out an elaborate process for granting legal status to immigrants. In lieu of that system, the Obama administration’s interpretation of the law would allow the executive “to grant lawful presence and work authorization to any illegal alien in the United States — an untenable position in light of the [law’s] intricate system of immigration classifications and employment eligibility.”The court also stressed that “previous deferred-action programs are not analogous to DAPA.” They were typically used to help people from a specific country in the wake of a disaster, or to help immigrants move from one legal status to another.The Supreme Court confronted the DAPA case in the wake of Antonin Scalia’s death, split 4–4, and thereby let the appeals-court ruling be the final word. The Court has moved to the right since then, so the four votes supporting the appeals-court ruling likely represent the views of the new five-justice conservative majority.And there’s a big difference between the old DAPA case and the new DACA one: In the previous case, the courts were asked to stop the executive branch from acting illegally, raising the age-old quandary of how aggressive the judicial branch should be when it comes to reining in the abuses of the executive. This time, the courts are asked to refuse to let the executive branch end the illegal program on its own, on the idea that the administration failed to adequately explain and defend its reasons for doing so. Such i-dotting and t-crossing is required under the Administrative Procedures Act.As Josh Blackman and Ilya Shapiro — who both support DACA as a policy — explained in a recent brief for the Cato Institute, the argument just doesn’t hold water. Even if the short letter laying out the administration’s objections wasn’t a “model of clarity,” it explained that DACA lacked “proper statutory authority” and suffered from the same problems that had gotten DAPA killed in court on “multiple legal grounds.” The letter also alluded to a deeper constitutional problem: If current immigration law does allow the executive branch to change policy so drastically on its own, it’s arguably an illegal delegation of Congress’s lawmaking power, and the executive branch can and should avoid this problem by winding down the policy.But most to the point, Blackman and Shapiro write that “the Administrative Procedure Act (APA) cannot be read to force the executive branch to continue implementing a policy that is contrary to law, regardless of how it chooses to rescind the policy.”Something like DACA will almost certainly be part of any long-term compromise on immigration policy. I’m sure most congressional Republicans would be happy to preserve it in exchange for a smarter immigration system. But the executive had no right to enact DACA on its own, and the courts have no right to stop the Trump administration from correcting course.",http://l1.yimg.com/uu/api/res/1.2/Zo3439T_YD9HcnTVxOQcbw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/99f778b59c4318e137b1700d28478d94,The Supreme Court Should Kill DACA +Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump.,http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +Pompeo: Trump–Zelensky Phone Conversation ‘Consistent’ With Administration’s Anti-Corruption Policy Goals,"Thu, 31 Oct 2019 08:05:39 -0400",https://news.yahoo.com/pompeo-trump-zelensky-phone-conversation-120539062.html,"Secretary of State Mike Pompeo on Wednesday evening defended President Trump from accusations of corruption based on the contents of a phone conversation between Trump and Ukrainian President Volodymyr Zelensky.""The call was consistent with what I had a long set of conversations with President Trump on our policy for an awfully long time,"" Pompeo said in an interview with Fox News. ""Our policy has been very clear all along with respect to Ukraine.""House Democrats are conducting an impeachment inquiry into whether Trump withheld military aid marked for Ukraine to pressure the country to investigate corruption allegations against political rival Joe Biden and his son. The inquiry is based in part on a July 25 conversation between Trump and Zelensky in which Trump repeatedly urges his Ukrainian counterpart to investigate the Bidens.""I heard the President very clearly on that call talking about making sure that corruption – whether that corruption took place in the 2016 election, whether that corruption was continuing to take place, that the monies that were being provided would be used appropriately,"" he continued. ""It was very consistent with what I’d understood President Trump and our administration to be doing all along.""Pompeo asserted that State Department officials who have given testimony detrimental to Trump during House Democrats' impeachment inquiry were in fact on the same page as the President in regards to policy on Ukraine.""My understanding is that every one of these individuals had the same Ukrainian policy that President Trump had,"" Pompeo said.The House is due to vote on formalizing the inquiry on Thursday.On Wednesday, National Security Council Ukraine expert Alexander Vindman, who listened to the call between Trump and Zelensky, testified to Congress that the transcript of the conversation released by the White House had been altered.",http://l1.yimg.com/uu/api/res/1.2/ach0B6AmtTpbiQhKLKSwWw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/1963769d6e33edd2a9e4003a6813da81,Pompeo: Trump–Zelensky Phone Conversation ‘Consistent’ With Administration’s Anti-Corruption Policy Goals +Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal +She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Striking Chicago teachers: We'll return if classes made up,"Thu, 31 Oct 2019 10:50:59 -0400",https://news.yahoo.com/striking-chicago-teachers-well-return-132350719.html,"The union representing 25,000 striking Chicago teachers voted to approve a tentative contract agreement with city officials but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Elected delegates for the Chicago Teachers Union voted Wednesday night to accept a tentative agreement with the nation's third-largest school district but say they won't come back without Mayor Lori Lightfoot's commitment. The union also encouraged members to fill the streets outside City Hall on Thursday, hoping to pressure Lightfoot into accepting its terms.",http://l2.yimg.com/uu/api/res/1.2/wHNKF.spntsmd2dxw8BNyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/80c07a1af9294f6ce1b88a5874ebb122,Striking Chicago teachers: We'll return if classes made up +Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky +"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia","Thu, 31 Oct 2019 07:37:46 -0400",https://news.yahoo.com/1-body-believed-missing-british-113746232.html,"Cambodian authorities found a body floating near the Thai border on Thursday that is believed to be a 21-year-old British woman who went missing last week from a beach party in a coastal area popular with backpackers, police said. Amelia Bambridge's disappearance prompted a search with divers, land-based teams and police drones after her purse was found on a beach with her mobile phone and watch inside. Cambodian maritime authorities located the body in waters near the Thai border, about 100 kilometres (62 miles) away from where she had disappeared last week, said Chuon Narin, police chief of the Preah Sihanouk province.",,"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia" +"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community","Thu, 31 Oct 2019 07:01:10 -0400",https://news.yahoo.com/photos-show-paradise-california-one-110110569.html,"The cleanup in Paradise, California, shows no sign of ending. 18,000 buildings were razed by the Camp Fire, and residents must start from scratch.",http://l1.yimg.com/uu/api/res/1.2/PCMbfOGgiQrP9wsDr6LBRw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/09fe4ea1b28d747b58b045d99bbd1dee,"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community" +"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump.,http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +Pompeo: Trump–Zelensky Phone Conversation ‘Consistent’ With Administration’s Anti-Corruption Policy Goals,"Thu, 31 Oct 2019 08:05:39 -0400",https://news.yahoo.com/pompeo-trump-zelensky-phone-conversation-120539062.html,"Secretary of State Mike Pompeo on Wednesday evening defended President Trump from accusations of corruption based on the contents of a phone conversation between Trump and Ukrainian President Volodymyr Zelensky.""The call was consistent with what I had a long set of conversations with President Trump on our policy for an awfully long time,"" Pompeo said in an interview with Fox News. ""Our policy has been very clear all along with respect to Ukraine.""House Democrats are conducting an impeachment inquiry into whether Trump withheld military aid marked for Ukraine to pressure the country to investigate corruption allegations against political rival Joe Biden and his son. The inquiry is based in part on a July 25 conversation between Trump and Zelensky in which Trump repeatedly urges his Ukrainian counterpart to investigate the Bidens.""I heard the President very clearly on that call talking about making sure that corruption – whether that corruption took place in the 2016 election, whether that corruption was continuing to take place, that the monies that were being provided would be used appropriately,"" he continued. ""It was very consistent with what I’d understood President Trump and our administration to be doing all along.""Pompeo asserted that State Department officials who have given testimony detrimental to Trump during House Democrats' impeachment inquiry were in fact on the same page as the President in regards to policy on Ukraine.""My understanding is that every one of these individuals had the same Ukrainian policy that President Trump had,"" Pompeo said.The House is due to vote on formalizing the inquiry on Thursday.On Wednesday, National Security Council Ukraine expert Alexander Vindman, who listened to the call between Trump and Zelensky, testified to Congress that the transcript of the conversation released by the White House had been altered.",http://l1.yimg.com/uu/api/res/1.2/ach0B6AmtTpbiQhKLKSwWw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/1963769d6e33edd2a9e4003a6813da81,Pompeo: Trump–Zelensky Phone Conversation ‘Consistent’ With Administration’s Anti-Corruption Policy Goals +Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal +She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Striking Chicago teachers: We'll return if classes made up,"Thu, 31 Oct 2019 10:50:59 -0400",https://news.yahoo.com/striking-chicago-teachers-well-return-132350719.html,"The union representing 25,000 striking Chicago teachers voted to approve a tentative contract agreement with city officials but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Elected delegates for the Chicago Teachers Union voted Wednesday night to accept a tentative agreement with the nation's third-largest school district but say they won't come back without Mayor Lori Lightfoot's commitment. The union also encouraged members to fill the streets outside City Hall on Thursday, hoping to pressure Lightfoot into accepting its terms.",http://l2.yimg.com/uu/api/res/1.2/wHNKF.spntsmd2dxw8BNyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/80c07a1af9294f6ce1b88a5874ebb122,Striking Chicago teachers: We'll return if classes made up +Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky +"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia","Thu, 31 Oct 2019 07:37:46 -0400",https://news.yahoo.com/1-body-believed-missing-british-113746232.html,"Cambodian authorities found a body floating near the Thai border on Thursday that is believed to be a 21-year-old British woman who went missing last week from a beach party in a coastal area popular with backpackers, police said. Amelia Bambridge's disappearance prompted a search with divers, land-based teams and police drones after her purse was found on a beach with her mobile phone and watch inside. Cambodian maritime authorities located the body in waters near the Thai border, about 100 kilometres (62 miles) away from where she had disappeared last week, said Chuon Narin, police chief of the Preah Sihanouk province.",,"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia" +"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community","Thu, 31 Oct 2019 07:01:10 -0400",https://news.yahoo.com/photos-show-paradise-california-one-110110569.html,"The cleanup in Paradise, California, shows no sign of ending. 18,000 buildings were razed by the Camp Fire, and residents must start from scratch.",http://l1.yimg.com/uu/api/res/1.2/PCMbfOGgiQrP9wsDr6LBRw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/09fe4ea1b28d747b58b045d99bbd1dee,"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community" +"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +"House Democrats face question: Impeach Pence, or make him president?","Thu, 31 Oct 2019 05:00:38 -0400",https://news.yahoo.com/house-democrats-face-question-impeach-pence-or-make-him-president-090012685.html,"If the House approves impeachment, and if the Senate votes to remove Trump, Pence would become president. Would he make a better president?",http://l1.yimg.com/uu/api/res/1.2/Z3VG5Hx16YaZq2pevUBETg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-images/2019-10/deb28d30-fb5b-11e9-bfef-ef163d511377,"House Democrats face question: Impeach Pence, or make him president?" +Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community","Thu, 31 Oct 2019 07:01:10 -0400",https://news.yahoo.com/photos-show-paradise-california-one-110110569.html,"The cleanup in Paradise, California, shows no sign of ending. 18,000 buildings were razed by the Camp Fire, and residents must start from scratch.",http://l1.yimg.com/uu/api/res/1.2/PCMbfOGgiQrP9wsDr6LBRw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/09fe4ea1b28d747b58b045d99bbd1dee,"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community" +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +North's Kim sends condolences to Moon over mother's death,"Thu, 31 Oct 2019 02:47:42 -0400",https://news.yahoo.com/norths-kim-sends-condolences-moon-053257821.html,"North Korean leader Kim Jong Un has sent a message of condolence to South Korean President Moon Jae-in over his mother's recent death, Moon's office said Thursday. It was later in the day handed over to Moon, who was staying in the southeastern city of Busan where his mother's mourning station was located, Moon's spokeswoman Ko Min-jung said. Ko said Kim expressed his ""deep commemorating (of Moon's mother) and condolence"" over her death.",http://l.yimg.com/uu/api/res/1.2/Nd_6NQf6metYLZMpwHPWhA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e21ad084c8dd5ba9a641cb427dadacfc,North's Kim sends condolences to Moon over mother's death +A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 10:48:40 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l1.yimg.com/uu/api/res/1.2/ImENIU.Ta7D8QwcH7wWueg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/c4a3982d1571388965d58973523bf48f,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,"The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump. The 232-196 vote fell mostly along party lines, with two moderate Democrats voting against the measure.",http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution +North's Kim sends condolences to Moon over mother's death,"Thu, 31 Oct 2019 02:47:42 -0400",https://news.yahoo.com/norths-kim-sends-condolences-moon-053257821.html,"North Korean leader Kim Jong Un has sent a message of condolence to South Korean President Moon Jae-in over his mother's recent death, Moon's office said Thursday. It was later in the day handed over to Moon, who was staying in the southeastern city of Busan where his mother's mourning station was located, Moon's spokeswoman Ko Min-jung said. Ko said Kim expressed his ""deep commemorating (of Moon's mother) and condolence"" over her death.",http://l.yimg.com/uu/api/res/1.2/Nd_6NQf6metYLZMpwHPWhA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e21ad084c8dd5ba9a641cb427dadacfc,North's Kim sends condolences to Moon over mother's death +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong +She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border,"Thu, 31 Oct 2019 09:25:55 -0400",https://news.yahoo.com/1-u-forces-seen-near-132555886.html,"U.S. armoured vehicles were seen on Thursday near the Syria-Turkey border in a part of northeastern Syria where they had not been observed since early October when Washington announced the withdrawal of American forces, according to a witness and Reuters video footage. A military source from the Kurdish-led Syrian Democratic Forces (SDF) described the movement as a patrol running between the towns of Rmeilan and Qahtaniyah, which is 20 km (12 miles) to the west. The witness saw the U.S. military vehicles outside the town of Qahtaniyah, roughly 6 km (4 miles) south of the border.",,UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 10:48:40 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l1.yimg.com/uu/api/res/1.2/ImENIU.Ta7D8QwcH7wWueg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/c4a3982d1571388965d58973523bf48f,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. +Striking Chicago teachers: We'll return if classes made up,"Thu, 31 Oct 2019 10:50:59 -0400",https://news.yahoo.com/striking-chicago-teachers-well-return-132350719.html,"The union representing 25,000 striking Chicago teachers voted to approve a tentative contract agreement with city officials but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Elected delegates for the Chicago Teachers Union voted Wednesday night to accept a tentative agreement with the nation's third-largest school district but say they won't come back without Mayor Lori Lightfoot's commitment. The union also encouraged members to fill the streets outside City Hall on Thursday, hoping to pressure Lightfoot into accepting its terms.",http://l2.yimg.com/uu/api/res/1.2/wHNKF.spntsmd2dxw8BNyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/80c07a1af9294f6ce1b88a5874ebb122,Striking Chicago teachers: We'll return if classes made up +Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,"The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump. The 232-196 vote fell mostly along party lines, with two moderate Democrats voting against the measure.",http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution +North's Kim sends condolences to Moon over mother's death,"Thu, 31 Oct 2019 02:47:42 -0400",https://news.yahoo.com/norths-kim-sends-condolences-moon-053257821.html,"North Korean leader Kim Jong Un has sent a message of condolence to South Korean President Moon Jae-in over his mother's recent death, Moon's office said Thursday. It was later in the day handed over to Moon, who was staying in the southeastern city of Busan where his mother's mourning station was located, Moon's spokeswoman Ko Min-jung said. Ko said Kim expressed his ""deep commemorating (of Moon's mother) and condolence"" over her death.",http://l.yimg.com/uu/api/res/1.2/Nd_6NQf6metYLZMpwHPWhA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e21ad084c8dd5ba9a641cb427dadacfc,North's Kim sends condolences to Moon over mother's death +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong +She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border,"Thu, 31 Oct 2019 09:25:55 -0400",https://news.yahoo.com/1-u-forces-seen-near-132555886.html,"U.S. armoured vehicles were seen on Thursday near the Syria-Turkey border in a part of northeastern Syria where they had not been observed since early October when Washington announced the withdrawal of American forces, according to a witness and Reuters video footage. A military source from the Kurdish-led Syrian Democratic Forces (SDF) described the movement as a patrol running between the towns of Rmeilan and Qahtaniyah, which is 20 km (12 miles) to the west. The witness saw the U.S. military vehicles outside the town of Qahtaniyah, roughly 6 km (4 miles) south of the border.",,UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 10:48:40 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l1.yimg.com/uu/api/res/1.2/ImENIU.Ta7D8QwcH7wWueg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/c4a3982d1571388965d58973523bf48f,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. +Striking Chicago teachers: We'll return if classes made up,"Thu, 31 Oct 2019 10:50:59 -0400",https://news.yahoo.com/striking-chicago-teachers-well-return-132350719.html,"The union representing 25,000 striking Chicago teachers voted to approve a tentative contract agreement with city officials but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Elected delegates for the Chicago Teachers Union voted Wednesday night to accept a tentative agreement with the nation's third-largest school district but say they won't come back without Mayor Lori Lightfoot's commitment. The union also encouraged members to fill the streets outside City Hall on Thursday, hoping to pressure Lightfoot into accepting its terms.",http://l2.yimg.com/uu/api/res/1.2/wHNKF.spntsmd2dxw8BNyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/80c07a1af9294f6ce1b88a5874ebb122,Striking Chicago teachers: We'll return if classes made up +Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,"The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump. The 232-196 vote fell mostly along party lines, with two moderate Democrats voting against the measure.",http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution +North's Kim sends condolences to Moon over mother's death,"Thu, 31 Oct 2019 02:47:42 -0400",https://news.yahoo.com/norths-kim-sends-condolences-moon-053257821.html,"North Korean leader Kim Jong Un has sent a message of condolence to South Korean President Moon Jae-in over his mother's recent death, Moon's office said Thursday. It was later in the day handed over to Moon, who was staying in the southeastern city of Busan where his mother's mourning station was located, Moon's spokeswoman Ko Min-jung said. Ko said Kim expressed his ""deep commemorating (of Moon's mother) and condolence"" over her death.",http://l.yimg.com/uu/api/res/1.2/Nd_6NQf6metYLZMpwHPWhA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e21ad084c8dd5ba9a641cb427dadacfc,North's Kim sends condolences to Moon over mother's death +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong +She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border,"Thu, 31 Oct 2019 09:25:55 -0400",https://news.yahoo.com/1-u-forces-seen-near-132555886.html,"U.S. armoured vehicles were seen on Thursday near the Syria-Turkey border in a part of northeastern Syria where they had not been observed since early October when Washington announced the withdrawal of American forces, according to a witness and Reuters video footage. A military source from the Kurdish-led Syrian Democratic Forces (SDF) described the movement as a patrol running between the towns of Rmeilan and Qahtaniyah, which is 20 km (12 miles) to the west. The witness saw the U.S. military vehicles outside the town of Qahtaniyah, roughly 6 km (4 miles) south of the border.",,UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 10:48:40 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l1.yimg.com/uu/api/res/1.2/ImENIU.Ta7D8QwcH7wWueg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/c4a3982d1571388965d58973523bf48f,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. +Striking Chicago teachers: We'll return if classes made up,"Thu, 31 Oct 2019 10:50:59 -0400",https://news.yahoo.com/striking-chicago-teachers-well-return-132350719.html,"The union representing 25,000 striking Chicago teachers voted to approve a tentative contract agreement with city officials but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Elected delegates for the Chicago Teachers Union voted Wednesday night to accept a tentative agreement with the nation's third-largest school district but say they won't come back without Mayor Lori Lightfoot's commitment. The union also encouraged members to fill the streets outside City Hall on Thursday, hoping to pressure Lightfoot into accepting its terms.",http://l2.yimg.com/uu/api/res/1.2/wHNKF.spntsmd2dxw8BNyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/80c07a1af9294f6ce1b88a5874ebb122,Striking Chicago teachers: We'll return if classes made up +Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,"The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump. The 232-196 vote fell mostly along party lines, with two moderate Democrats voting against the measure.",http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution +North's Kim sends condolences to Moon over mother's death,"Thu, 31 Oct 2019 02:47:42 -0400",https://news.yahoo.com/norths-kim-sends-condolences-moon-053257821.html,"North Korean leader Kim Jong Un has sent a message of condolence to South Korean President Moon Jae-in over his mother's recent death, Moon's office said Thursday. It was later in the day handed over to Moon, who was staying in the southeastern city of Busan where his mother's mourning station was located, Moon's spokeswoman Ko Min-jung said. Ko said Kim expressed his ""deep commemorating (of Moon's mother) and condolence"" over her death.",http://l.yimg.com/uu/api/res/1.2/Nd_6NQf6metYLZMpwHPWhA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e21ad084c8dd5ba9a641cb427dadacfc,North's Kim sends condolences to Moon over mother's death +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong +She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border,"Thu, 31 Oct 2019 09:25:55 -0400",https://news.yahoo.com/1-u-forces-seen-near-132555886.html,"U.S. armoured vehicles were seen on Thursday near the Syria-Turkey border in a part of northeastern Syria where they had not been observed since early October when Washington announced the withdrawal of American forces, according to a witness and Reuters video footage. A military source from the Kurdish-led Syrian Democratic Forces (SDF) described the movement as a patrol running between the towns of Rmeilan and Qahtaniyah, which is 20 km (12 miles) to the west. The witness saw the U.S. military vehicles outside the town of Qahtaniyah, roughly 6 km (4 miles) south of the border.",,UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 10:48:40 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l1.yimg.com/uu/api/res/1.2/ImENIU.Ta7D8QwcH7wWueg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/c4a3982d1571388965d58973523bf48f,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. +Striking Chicago teachers: We'll return if classes made up,"Thu, 31 Oct 2019 10:50:59 -0400",https://news.yahoo.com/striking-chicago-teachers-well-return-132350719.html,"The union representing 25,000 striking Chicago teachers voted to approve a tentative contract agreement with city officials but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Elected delegates for the Chicago Teachers Union voted Wednesday night to accept a tentative agreement with the nation's third-largest school district but say they won't come back without Mayor Lori Lightfoot's commitment. The union also encouraged members to fill the streets outside City Hall on Thursday, hoping to pressure Lightfoot into accepting its terms.",http://l2.yimg.com/uu/api/res/1.2/wHNKF.spntsmd2dxw8BNyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/80c07a1af9294f6ce1b88a5874ebb122,Striking Chicago teachers: We'll return if classes made up +Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,"The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump. The 232-196 vote fell mostly along party lines, with two moderate Democrats voting against the measure.",http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution +North's Kim sends condolences to Moon over mother's death,"Thu, 31 Oct 2019 02:47:42 -0400",https://news.yahoo.com/norths-kim-sends-condolences-moon-053257821.html,"North Korean leader Kim Jong Un has sent a message of condolence to South Korean President Moon Jae-in over his mother's recent death, Moon's office said Thursday. It was later in the day handed over to Moon, who was staying in the southeastern city of Busan where his mother's mourning station was located, Moon's spokeswoman Ko Min-jung said. Ko said Kim expressed his ""deep commemorating (of Moon's mother) and condolence"" over her death.",http://l.yimg.com/uu/api/res/1.2/Nd_6NQf6metYLZMpwHPWhA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e21ad084c8dd5ba9a641cb427dadacfc,North's Kim sends condolences to Moon over mother's death +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong +She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border,"Thu, 31 Oct 2019 09:25:55 -0400",https://news.yahoo.com/1-u-forces-seen-near-132555886.html,"U.S. armoured vehicles were seen on Thursday near the Syria-Turkey border in a part of northeastern Syria where they had not been observed since early October when Washington announced the withdrawal of American forces, according to a witness and Reuters video footage. A military source from the Kurdish-led Syrian Democratic Forces (SDF) described the movement as a patrol running between the towns of Rmeilan and Qahtaniyah, which is 20 km (12 miles) to the west. The witness saw the U.S. military vehicles outside the town of Qahtaniyah, roughly 6 km (4 miles) south of the border.",,UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 10:48:40 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l1.yimg.com/uu/api/res/1.2/ImENIU.Ta7D8QwcH7wWueg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/c4a3982d1571388965d58973523bf48f,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. +Striking Chicago teachers: We'll return if classes made up,"Thu, 31 Oct 2019 10:50:59 -0400",https://news.yahoo.com/striking-chicago-teachers-well-return-132350719.html,"The union representing 25,000 striking Chicago teachers voted to approve a tentative contract agreement with city officials but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Elected delegates for the Chicago Teachers Union voted Wednesday night to accept a tentative agreement with the nation's third-largest school district but say they won't come back without Mayor Lori Lightfoot's commitment. The union also encouraged members to fill the streets outside City Hall on Thursday, hoping to pressure Lightfoot into accepting its terms.",http://l2.yimg.com/uu/api/res/1.2/wHNKF.spntsmd2dxw8BNyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/80c07a1af9294f6ce1b88a5874ebb122,Striking Chicago teachers: We'll return if classes made up +Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,"The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump. The 232-196 vote fell mostly along party lines, with two moderate Democrats voting against the measure.",http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution +North's Kim sends condolences to Moon over mother's death,"Thu, 31 Oct 2019 02:47:42 -0400",https://news.yahoo.com/norths-kim-sends-condolences-moon-053257821.html,"North Korean leader Kim Jong Un has sent a message of condolence to South Korean President Moon Jae-in over his mother's recent death, Moon's office said Thursday. It was later in the day handed over to Moon, who was staying in the southeastern city of Busan where his mother's mourning station was located, Moon's spokeswoman Ko Min-jung said. Ko said Kim expressed his ""deep commemorating (of Moon's mother) and condolence"" over her death.",http://l.yimg.com/uu/api/res/1.2/Nd_6NQf6metYLZMpwHPWhA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e21ad084c8dd5ba9a641cb427dadacfc,North's Kim sends condolences to Moon over mother's death +Alexandria Ocasio-Cortez says the revenge porn campaign targeting Rep. Katie Hill is a 'major crime' that wouldn't happen to a male member of Congress,"Thu, 31 Oct 2019 10:36:42 -0400",https://news.yahoo.com/alexandria-ocasio-cortez-says-revenge-143642245.html,"Rep. Alexandria Ocasio-Cortez decried the publication of nude photos of Rep. Katie Hill, who announced her resignation from Congress this week.",http://l2.yimg.com/uu/api/res/1.2/Fr2UZHbKq8xmmxAY3AwuuQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/8e7523e8a3b3c297f63efe28eba0cc74,Alexandria Ocasio-Cortez says the revenge porn campaign targeting Rep. Katie Hill is a 'major crime' that wouldn't happen to a male member of Congress +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +"House Democrats face question: Impeach Pence, or make him president?","Thu, 31 Oct 2019 05:00:38 -0400",https://news.yahoo.com/house-democrats-face-question-impeach-pence-or-make-him-president-090012685.html,"If the House approves impeachment, and if the Senate votes to remove Trump, Pence would become president. Would he make a better president?",http://l1.yimg.com/uu/api/res/1.2/Z3VG5Hx16YaZq2pevUBETg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-images/2019-10/deb28d30-fb5b-11e9-bfef-ef163d511377,"House Democrats face question: Impeach Pence, or make him president?" +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal +Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong +Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky +She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border,"Thu, 31 Oct 2019 09:25:55 -0400",https://news.yahoo.com/1-u-forces-seen-near-132555886.html,"U.S. armoured vehicles were seen on Thursday near the Syria-Turkey border in a part of northeastern Syria where they had not been observed since early October when Washington announced the withdrawal of American forces, according to a witness and Reuters video footage. A military source from the Kurdish-led Syrian Democratic Forces (SDF) described the movement as a patrol running between the towns of Rmeilan and Qahtaniyah, which is 20 km (12 miles) to the west. The witness saw the U.S. military vehicles outside the town of Qahtaniyah, roughly 6 km (4 miles) south of the border.",,UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border +Striking Chicago teachers: We'll return if classes made up,"Thu, 31 Oct 2019 10:50:59 -0400",https://news.yahoo.com/striking-chicago-teachers-well-return-132350719.html,"The union representing 25,000 striking Chicago teachers voted to approve a tentative contract agreement with city officials but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Elected delegates for the Chicago Teachers Union voted Wednesday night to accept a tentative agreement with the nation's third-largest school district but say they won't come back without Mayor Lori Lightfoot's commitment. The union also encouraged members to fill the streets outside City Hall on Thursday, hoping to pressure Lightfoot into accepting its terms.",http://l2.yimg.com/uu/api/res/1.2/wHNKF.spntsmd2dxw8BNyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/80c07a1af9294f6ce1b88a5874ebb122,Striking Chicago teachers: We'll return if classes made up +A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. +Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,"The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump. The 232-196 vote fell mostly along party lines, with two moderate Democrats voting against the measure.",http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution +North's Kim sends condolences to Moon over mother's death,"Thu, 31 Oct 2019 02:47:42 -0400",https://news.yahoo.com/norths-kim-sends-condolences-moon-053257821.html,"North Korean leader Kim Jong Un has sent a message of condolence to South Korean President Moon Jae-in over his mother's recent death, Moon's office said Thursday. It was later in the day handed over to Moon, who was staying in the southeastern city of Busan where his mother's mourning station was located, Moon's spokeswoman Ko Min-jung said. Ko said Kim expressed his ""deep commemorating (of Moon's mother) and condolence"" over her death.",http://l.yimg.com/uu/api/res/1.2/Nd_6NQf6metYLZMpwHPWhA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e21ad084c8dd5ba9a641cb427dadacfc,North's Kim sends condolences to Moon over mother's death +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong +She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border,"Thu, 31 Oct 2019 09:25:55 -0400",https://news.yahoo.com/1-u-forces-seen-near-132555886.html,"U.S. armoured vehicles were seen on Thursday near the Syria-Turkey border in a part of northeastern Syria where they had not been observed since early October when Washington announced the withdrawal of American forces, according to a witness and Reuters video footage. A military source from the Kurdish-led Syrian Democratic Forces (SDF) described the movement as a patrol running between the towns of Rmeilan and Qahtaniyah, which is 20 km (12 miles) to the west. The witness saw the U.S. military vehicles outside the town of Qahtaniyah, roughly 6 km (4 miles) south of the border.",,UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 10:48:40 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l1.yimg.com/uu/api/res/1.2/ImENIU.Ta7D8QwcH7wWueg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/c4a3982d1571388965d58973523bf48f,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. +Striking Chicago teachers: We'll return if classes made up,"Thu, 31 Oct 2019 10:50:59 -0400",https://news.yahoo.com/striking-chicago-teachers-well-return-132350719.html,"The union representing 25,000 striking Chicago teachers voted to approve a tentative contract agreement with city officials but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Elected delegates for the Chicago Teachers Union voted Wednesday night to accept a tentative agreement with the nation's third-largest school district but say they won't come back without Mayor Lori Lightfoot's commitment. The union also encouraged members to fill the streets outside City Hall on Thursday, hoping to pressure Lightfoot into accepting its terms.",http://l2.yimg.com/uu/api/res/1.2/wHNKF.spntsmd2dxw8BNyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/80c07a1af9294f6ce1b88a5874ebb122,Striking Chicago teachers: We'll return if classes made up +Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +History shows Democrats are being fair to Republicans on Trump impeachment: Ex-Starr aide,"Thu, 31 Oct 2019 11:57:55 -0400",https://news.yahoo.com/history-shows-democrats-being-fair-090015707.html,This partisan vote will be a sad commentary on the degradation of a once noble party. Republicans need to stop carping about process and face reality.,http://l1.yimg.com/uu/api/res/1.2/IN8fAp5j4uZ6EpyCar3w2A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/6fa38e32ec540828f431ac5481d3dfdf,History shows Democrats are being fair to Republicans on Trump impeachment: Ex-Starr aide +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +Disabled California seniors in complex left behind in outage,"Thu, 31 Oct 2019 11:46:55 -0400",https://news.yahoo.com/disabled-infirm-senior-complex-were-053217257.html,"One woman in her 80s tripped over another resident who had fallen on the landing in a steep stairwell. At least 20 seniors with wheelchairs and walkers were essentially trapped, in the dark, in a low-income apartment complex in Northern California during a two-day power shut-off aimed at warding off wildfires. Residents of the Villas at Hamilton in Novato, north of San Francisco, say they were without guidance from their property management company or the utility behind the blackout as they faced pitch-black stairwells and hallways and elevators that shut down.",http://l2.yimg.com/uu/api/res/1.2/.xKHuIObpdYlT3_yB5QM3A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/7f8f42e64999a72c508bee8ac1cce9a2,Disabled California seniors in complex left behind in outage +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. +The Latest: Northern California wildfire now 60% contained,"Thu, 31 Oct 2019 11:43:01 -0400",https://news.yahoo.com/latest-fire-erupts-san-bernardino-112830955.html,"Officials say a wildfire burning in Northern California's wine country that forced the evacuation of more than 180,000 people is now 60% contained and has not increased in size since Wednesday. California Department of Forestry and Fire Protection officials said Thursday that firefighting crews working through the night increased their control of the fire from 45% containment. The fire started last week near the town of Geyserville in Sonoma County north of San Francisco and has scorched about 120 square miles (311 square kilometers).",http://l1.yimg.com/uu/api/res/1.2/2sptUHoUhwVZ3QxYtYAMfg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e59db5b3d01481e820049f6a2a08ae46,The Latest: Northern California wildfire now 60% contained +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +History shows Democrats are being fair to Republicans on Trump impeachment: Ex-Starr aide,"Thu, 31 Oct 2019 11:57:55 -0400",https://news.yahoo.com/history-shows-democrats-being-fair-090015707.html,This partisan vote will be a sad commentary on the degradation of a once noble party. Republicans need to stop carping about process and face reality.,http://l1.yimg.com/uu/api/res/1.2/IN8fAp5j4uZ6EpyCar3w2A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/6fa38e32ec540828f431ac5481d3dfdf,History shows Democrats are being fair to Republicans on Trump impeachment: Ex-Starr aide +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +Disabled California seniors in complex left behind in outage,"Thu, 31 Oct 2019 11:46:55 -0400",https://news.yahoo.com/disabled-infirm-senior-complex-were-053217257.html,"One woman in her 80s tripped over another resident who had fallen on the landing in a steep stairwell. At least 20 seniors with wheelchairs and walkers were essentially trapped, in the dark, in a low-income apartment complex in Northern California during a two-day power shut-off aimed at warding off wildfires. Residents of the Villas at Hamilton in Novato, north of San Francisco, say they were without guidance from their property management company or the utility behind the blackout as they faced pitch-black stairwells and hallways and elevators that shut down.",http://l2.yimg.com/uu/api/res/1.2/.xKHuIObpdYlT3_yB5QM3A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/7f8f42e64999a72c508bee8ac1cce9a2,Disabled California seniors in complex left behind in outage +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. +The Latest: Northern California wildfire now 60% contained,"Thu, 31 Oct 2019 11:43:01 -0400",https://news.yahoo.com/latest-fire-erupts-san-bernardino-112830955.html,"Officials say a wildfire burning in Northern California's wine country that forced the evacuation of more than 180,000 people is now 60% contained and has not increased in size since Wednesday. California Department of Forestry and Fire Protection officials said Thursday that firefighting crews working through the night increased their control of the fire from 45% containment. The fire started last week near the town of Geyserville in Sonoma County north of San Francisco and has scorched about 120 square miles (311 square kilometers).",http://l1.yimg.com/uu/api/res/1.2/2sptUHoUhwVZ3QxYtYAMfg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e59db5b3d01481e820049f6a2a08ae46,The Latest: Northern California wildfire now 60% contained +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +The Latest: Northern California wildfire now 60% contained,"Thu, 31 Oct 2019 11:43:01 -0400",https://news.yahoo.com/latest-fire-erupts-san-bernardino-112830955.html,"Officials say a wildfire burning in Northern California's wine country that forced the evacuation of more than 180,000 people is now 60% contained and has not increased in size since Wednesday. California Department of Forestry and Fire Protection officials said Thursday that firefighting crews working through the night increased their control of the fire from 45% containment. The fire started last week near the town of Geyserville in Sonoma County north of San Francisco and has scorched about 120 square miles (311 square kilometers).",http://l1.yimg.com/uu/api/res/1.2/2sptUHoUhwVZ3QxYtYAMfg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e59db5b3d01481e820049f6a2a08ae46,The Latest: Northern California wildfire now 60% contained +"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" +"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" +The Latest: Video shows US forces in Syria border area,"Thu, 31 Oct 2019 12:15:44 -0400",https://news.yahoo.com/latest-turkey-says-captured-18-135616944.html,"New video shows U.S. armored vehicles patrolling near oil facilities in an area of northern Syria that saw recent heavy fighting between Turkey and Syrian Kurdish forces, and from which American troops had withdrawn. The video, aired by Kurdistan 24, an Iraqi Kurdish network, showed what appeared to be U.S. special operations forces visiting oil facilities east of the city of Qamishli on Thursday. A witness says aircraft overhead provided cover as the patrol visited six small oil facilities.",,The Latest: Video shows US forces in Syria border area +History shows Democrats are being fair to Republicans on Trump impeachment: Ex-Starr aide,"Thu, 31 Oct 2019 11:57:55 -0400",https://news.yahoo.com/history-shows-democrats-being-fair-090015707.html,This partisan vote will be a sad commentary on the degradation of a once noble party. Republicans need to stop carping about process and face reality.,http://l1.yimg.com/uu/api/res/1.2/IN8fAp5j4uZ6EpyCar3w2A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/6fa38e32ec540828f431ac5481d3dfdf,History shows Democrats are being fair to Republicans on Trump impeachment: Ex-Starr aide +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +Disabled California seniors in complex left behind in outage,"Thu, 31 Oct 2019 11:46:55 -0400",https://news.yahoo.com/disabled-infirm-senior-complex-were-053217257.html,"One woman in her 80s tripped over another resident who had fallen on the landing in a steep stairwell. At least 20 seniors with wheelchairs and walkers were essentially trapped, in the dark, in a low-income apartment complex in Northern California during a two-day power shut-off aimed at warding off wildfires. Residents of the Villas at Hamilton in Novato, north of San Francisco, say they were without guidance from their property management company or the utility behind the blackout as they faced pitch-black stairwells and hallways and elevators that shut down.",http://l2.yimg.com/uu/api/res/1.2/.xKHuIObpdYlT3_yB5QM3A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/7f8f42e64999a72c508bee8ac1cce9a2,Disabled California seniors in complex left behind in outage +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. +The Latest: Northern California wildfire now 60% contained,"Thu, 31 Oct 2019 11:43:01 -0400",https://news.yahoo.com/latest-fire-erupts-san-bernardino-112830955.html,"Officials say a wildfire burning in Northern California's wine country that forced the evacuation of more than 180,000 people is now 60% contained and has not increased in size since Wednesday. California Department of Forestry and Fire Protection officials said Thursday that firefighting crews working through the night increased their control of the fire from 45% containment. The fire started last week near the town of Geyserville in Sonoma County north of San Francisco and has scorched about 120 square miles (311 square kilometers).",http://l1.yimg.com/uu/api/res/1.2/2sptUHoUhwVZ3QxYtYAMfg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e59db5b3d01481e820049f6a2a08ae46,The Latest: Northern California wildfire now 60% contained +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +History shows Democrats are being fair to Republicans on Trump impeachment: Ex-Starr aide,"Thu, 31 Oct 2019 11:57:55 -0400",https://news.yahoo.com/history-shows-democrats-being-fair-090015707.html,This partisan vote will be a sad commentary on the degradation of a once noble party. Republicans need to stop carping about process and face reality.,http://l1.yimg.com/uu/api/res/1.2/IN8fAp5j4uZ6EpyCar3w2A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/6fa38e32ec540828f431ac5481d3dfdf,History shows Democrats are being fair to Republicans on Trump impeachment: Ex-Starr aide +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +Disabled California seniors in complex left behind in outage,"Thu, 31 Oct 2019 11:46:55 -0400",https://news.yahoo.com/disabled-infirm-senior-complex-were-053217257.html,"One woman in her 80s tripped over another resident who had fallen on the landing in a steep stairwell. At least 20 seniors with wheelchairs and walkers were essentially trapped, in the dark, in a low-income apartment complex in Northern California during a two-day power shut-off aimed at warding off wildfires. Residents of the Villas at Hamilton in Novato, north of San Francisco, say they were without guidance from their property management company or the utility behind the blackout as they faced pitch-black stairwells and hallways and elevators that shut down.",http://l2.yimg.com/uu/api/res/1.2/.xKHuIObpdYlT3_yB5QM3A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/7f8f42e64999a72c508bee8ac1cce9a2,Disabled California seniors in complex left behind in outage +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. +The Latest: Northern California wildfire now 60% contained,"Thu, 31 Oct 2019 11:43:01 -0400",https://news.yahoo.com/latest-fire-erupts-san-bernardino-112830955.html,"Officials say a wildfire burning in Northern California's wine country that forced the evacuation of more than 180,000 people is now 60% contained and has not increased in size since Wednesday. California Department of Forestry and Fire Protection officials said Thursday that firefighting crews working through the night increased their control of the fire from 45% containment. The fire started last week near the town of Geyserville in Sonoma County north of San Francisco and has scorched about 120 square miles (311 square kilometers).",http://l1.yimg.com/uu/api/res/1.2/2sptUHoUhwVZ3QxYtYAMfg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e59db5b3d01481e820049f6a2a08ae46,The Latest: Northern California wildfire now 60% contained +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +'That's not bringing about change': Obama advises 'woke' young people not to be so judgmental,"Thu, 31 Oct 2019 08:11:34 -0400",https://news.yahoo.com/thats-not-bringing-change-obama-161906797.html,"""That's not bringing about change. If all you're doing is casting stones, you're probably not going to get that far,"" the former president said.",http://l2.yimg.com/uu/api/res/1.2/AEN8wJEL8250wF1A.y67.g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/20fc21a139a8b853711f5cc8117a86b2,'That's not bringing about change': Obama advises 'woke' young people not to be so judgmental +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" +"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:44:29 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +The Latest: Ex-Trump adviser arrives for impeachment session,"Thu, 31 Oct 2019 08:29:07 -0400",https://news.yahoo.com/latest-ex-trump-adviser-arrives-114430236.html,A former top national security adviser to President Donald Trump has arrived on Capitol Hill to testify in the House impeachment inquiry. Tim Morrison handled Russian and European affairs at the White House's National Security Council before resigning his position a day before Thursday's hearing.,http://l1.yimg.com/uu/api/res/1.2/IyCmU8y0hmK.3k9oJ9_aHw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/7cb49101cca0e76b3a9503ab4d5ea3de,The Latest: Ex-Trump adviser arrives for impeachment session +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +'That's not bringing about change': Obama advises 'woke' young people not to be so judgmental,"Thu, 31 Oct 2019 08:11:34 -0400",https://news.yahoo.com/thats-not-bringing-change-obama-161906797.html,"""That's not bringing about change. If all you're doing is casting stones, you're probably not going to get that far,"" the former president said.",http://l2.yimg.com/uu/api/res/1.2/AEN8wJEL8250wF1A.y67.g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/20fc21a139a8b853711f5cc8117a86b2,'That's not bringing about change': Obama advises 'woke' young people not to be so judgmental +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" +"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:44:29 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +The Latest: Ex-Trump adviser arrives for impeachment session,"Thu, 31 Oct 2019 08:29:07 -0400",https://news.yahoo.com/latest-ex-trump-adviser-arrives-114430236.html,A former top national security adviser to President Donald Trump has arrived on Capitol Hill to testify in the House impeachment inquiry. Tim Morrison handled Russian and European affairs at the White House's National Security Council before resigning his position a day before Thursday's hearing.,http://l1.yimg.com/uu/api/res/1.2/IyCmU8y0hmK.3k9oJ9_aHw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/7cb49101cca0e76b3a9503ab4d5ea3de,The Latest: Ex-Trump adviser arrives for impeachment session +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +'That's not bringing about change': Obama advises 'woke' young people not to be so judgmental,"Thu, 31 Oct 2019 08:11:34 -0400",https://news.yahoo.com/thats-not-bringing-change-obama-161906797.html,"""That's not bringing about change. If all you're doing is casting stones, you're probably not going to get that far,"" the former president said.",http://l2.yimg.com/uu/api/res/1.2/AEN8wJEL8250wF1A.y67.g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/20fc21a139a8b853711f5cc8117a86b2,'That's not bringing about change': Obama advises 'woke' young people not to be so judgmental +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" +"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" +Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:44:29 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta +The Latest: Ex-Trump adviser arrives for impeachment session,"Thu, 31 Oct 2019 08:29:07 -0400",https://news.yahoo.com/latest-ex-trump-adviser-arrives-114430236.html,A former top national security adviser to President Donald Trump has arrived on Capitol Hill to testify in the House impeachment inquiry. Tim Morrison handled Russian and European affairs at the White House's National Security Council before resigning his position a day before Thursday's hearing.,http://l1.yimg.com/uu/api/res/1.2/IyCmU8y0hmK.3k9oJ9_aHw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/7cb49101cca0e76b3a9503ab4d5ea3de,The Latest: Ex-Trump adviser arrives for impeachment session +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" +Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,"The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump. The 232-196 vote fell mostly along party lines, with two moderate Democrats voting against the measure.",http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution +"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +Donald Trump Jr: I Wish I Was Like Hunter Biden So I Could ‘Make Millions Off of My Father’s Presidency’,"Thu, 31 Oct 2019 07:22:50 -0400",https://news.yahoo.com/donald-trump-jr-wish-hunter-034516851.html,"Donald Trump Jr., a man who shares the same name as the President of the United States and is currently the executive vice president of the Trump Organization, said with a straight face on Wednesday night that he wished his name was Hunter Biden so he could “make millions off my father's presidency.”During an appearance on Fox News’ Hannity to hawk his upcoming book Triggered, Trump Jr. quickly turned his sights on the impeachment inquiry his father is currently facing. After Trump Jr. called it a “sham” and claimed “the reasonable people in the middle” support his dad, Sean Hannity asked the presidential scion about former Vice President Joe Biden and his son Hunter. The president is facing impeachment largely due to his efforts to pressure Ukraine to open investigations into the Democratic presidential nominee and his family.Insisting the media protects Biden and doesn’t report on unsubstantiated claims that the former veep forced Ukrainian leaders to drop investigations into his son, Hannity then wondered aloud what would happen if Trump Jr.’s name was Hunter Biden.“I wish my name was Hunter Biden,” the president’s eldest son said without a hint of irony. “I could go abroad, make millions off of my father’s presidency—I’d be a really rich guy! It would be incredible!”Trump Jr. then brought up unfounded allegations that Hunter Biden got a sweetheart $1.5 billion deal from China thanks to a desire by Beijing to curry favor with the then-vice president, claiming that if he got “$1.5 from China” the media’s “heads would explode.”“They would have an aneurysm—we’d end the fake news problem,” he concluded. “That is the double standard that we are living under right now. That is the double standard the American people are sick and tired of.”While the lack of self-awareness should be apparent, it should also be noted that while his father has been president, Trump Jr. has opened himself and his dad up to a whole host of conflict of interest issues. For example, a trip to India Trump Jr. took to sell his family’s condominium projects cost American taxpayers roughly $100,000.Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/vypoOIdHZqPTuyClu9C_Ig--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/0a13e97fac312f151608d8bf81deece6,Donald Trump Jr: I Wish I Was Like Hunter Biden So I Could ‘Make Millions Off of My Father’s Presidency’ +"Homes destroyed, hundreds more evacuated as Los Angeles wildfires spread","Thu, 31 Oct 2019 08:59:58 -0400",https://news.yahoo.com/desert-winds-fuel-twin-wildfires-125958841.html,"More wildfires ignited near Los Angeles on Thursday, destroying homes and forcing evacuations, as the region faced a second day of gusting desert winds that have fanned flames and displaced thousands of people. The fast-moving Hillside Fire grew to 200 acres (80 hectares) and was starting to consume homes near scrub-covered slopes in San Bernardino, east of Los Angeles, according to the San Bernardino County Fire Department. A helicopter and a small plane dropped water and retardant on the flames, according to Chris Prater, a fire department spokesman.",http://l1.yimg.com/uu/api/res/1.2/As0Alga6NdnqgVgKSwm0sA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/7b13d9ec06bc690d60c21f3db52c21f1,"Homes destroyed, hundreds more evacuated as Los Angeles wildfires spread" +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" +Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,"The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump. The 232-196 vote fell mostly along party lines, with two moderate Democrats voting against the measure.",http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution +"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +Donald Trump Jr: I Wish I Was Like Hunter Biden So I Could ‘Make Millions Off of My Father’s Presidency’,"Thu, 31 Oct 2019 07:22:50 -0400",https://news.yahoo.com/donald-trump-jr-wish-hunter-034516851.html,"Donald Trump Jr., a man who shares the same name as the President of the United States and is currently the executive vice president of the Trump Organization, said with a straight face on Wednesday night that he wished his name was Hunter Biden so he could “make millions off my father's presidency.”During an appearance on Fox News’ Hannity to hawk his upcoming book Triggered, Trump Jr. quickly turned his sights on the impeachment inquiry his father is currently facing. After Trump Jr. called it a “sham” and claimed “the reasonable people in the middle” support his dad, Sean Hannity asked the presidential scion about former Vice President Joe Biden and his son Hunter. The president is facing impeachment largely due to his efforts to pressure Ukraine to open investigations into the Democratic presidential nominee and his family.Insisting the media protects Biden and doesn’t report on unsubstantiated claims that the former veep forced Ukrainian leaders to drop investigations into his son, Hannity then wondered aloud what would happen if Trump Jr.’s name was Hunter Biden.“I wish my name was Hunter Biden,” the president’s eldest son said without a hint of irony. “I could go abroad, make millions off of my father’s presidency—I’d be a really rich guy! It would be incredible!”Trump Jr. then brought up unfounded allegations that Hunter Biden got a sweetheart $1.5 billion deal from China thanks to a desire by Beijing to curry favor with the then-vice president, claiming that if he got “$1.5 from China” the media’s “heads would explode.”“They would have an aneurysm—we’d end the fake news problem,” he concluded. “That is the double standard that we are living under right now. That is the double standard the American people are sick and tired of.”While the lack of self-awareness should be apparent, it should also be noted that while his father has been president, Trump Jr. has opened himself and his dad up to a whole host of conflict of interest issues. For example, a trip to India Trump Jr. took to sell his family’s condominium projects cost American taxpayers roughly $100,000.Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/vypoOIdHZqPTuyClu9C_Ig--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/0a13e97fac312f151608d8bf81deece6,Donald Trump Jr: I Wish I Was Like Hunter Biden So I Could ‘Make Millions Off of My Father’s Presidency’ +"Homes destroyed, hundreds more evacuated as Los Angeles wildfires spread","Thu, 31 Oct 2019 08:59:58 -0400",https://news.yahoo.com/desert-winds-fuel-twin-wildfires-125958841.html,"More wildfires ignited near Los Angeles on Thursday, destroying homes and forcing evacuations, as the region faced a second day of gusting desert winds that have fanned flames and displaced thousands of people. The fast-moving Hillside Fire grew to 200 acres (80 hectares) and was starting to consume homes near scrub-covered slopes in San Bernardino, east of Los Angeles, according to the San Bernardino County Fire Department. A helicopter and a small plane dropped water and retardant on the flames, according to Chris Prater, a fire department spokesman.",http://l1.yimg.com/uu/api/res/1.2/As0Alga6NdnqgVgKSwm0sA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/7b13d9ec06bc690d60c21f3db52c21f1,"Homes destroyed, hundreds more evacuated as Los Angeles wildfires spread" +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" +"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +The Latest: Northern California wildfire now 60% contained,"Thu, 31 Oct 2019 11:43:01 -0400",https://news.yahoo.com/latest-fire-erupts-san-bernardino-112830955.html,"Officials say a wildfire burning in Northern California's wine country that forced the evacuation of more than 180,000 people is now 60% contained and has not increased in size since Wednesday. California Department of Forestry and Fire Protection officials said Thursday that firefighting crews working through the night increased their control of the fire from 45% containment. The fire started last week near the town of Geyserville in Sonoma County north of San Francisco and has scorched about 120 square miles (311 square kilometers).",http://l1.yimg.com/uu/api/res/1.2/2sptUHoUhwVZ3QxYtYAMfg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e59db5b3d01481e820049f6a2a08ae46,The Latest: Northern California wildfire now 60% contained +Impeachment trial could complicate Democratic senators' U.S. presidential bids,"Thu, 31 Oct 2019 06:06:04 -0400",https://news.yahoo.com/impeachment-trial-could-complicate-democratic-100604502.html,"Democratic U.S. senators vying for the party's 2020 presidential nomination face the increasing likelihood of being tethered to Washington for President Donald Trump's impeachment trial just as they need to ramp up efforts in early-voting states. With the U.S. House of Representatives set to vote on Thursday on next steps in the impeachment probe, lawmakers there anticipate the investigation could wrap up by year's end or early 2020, at which point the process will move to the Senate. Senate Majority Leader Mitch McConnell, a Republican, has said a trial requiring the presence of the full Senate could take place six days a week.",http://l1.yimg.com/uu/api/res/1.2/NBP5ObIps5m5Czjd4rcFZA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/91e91d747543a06790c063c82047aae0,Impeachment trial could complicate Democratic senators' U.S. presidential bids +"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" +Netflix Drops Horrifying Camp Fire Documentary ‘Fire in Paradise’ as California Burns,"Thu, 31 Oct 2019 05:39:58 -0400",https://news.yahoo.com/netflix-drops-horrifying-camp-fire-093958850.html,"Karl Mondon/GettyLike people, wildfires aren’t born coherent or fully formed. They rarely have one direction or one goal. Fires are fluid and disparate, made up of smaller blazes and embers, some of which might merge into irrational explosions or veer off in different directions. (Scientists have dubbed this odd meandering, not “fire movement” or “fire patterns,” but “fire behavior”). Today, Los Angeles, like Sonoma County, is on fire. The city smells like everyone is having a cookout. On maps, the evacuation zone is drawn in hard lines, starting just five miles from where I’m writing this—a box framed by Mulholland Drive in the north, the 405 in the east, Sunset Boulevard in the south and Temescal Canyon Road in the west. But with hurricane-like winds predicted this week, there remains some uncertainty about just where, exactly, the blaze might go. Unlike actual flames, the stories of fire have a predictable arc: low humidity, dry fuel, some small ignition (a cigarette, a powerline), ferocious wind, dispatch calls, mobile alerts, confused evacuators, missing heirlooms, lost lives, thousands of tired firefighters, and later, aerial photos of the earth, burnt into a scar. The familiarity makes the worst fire stories the hardest to tell. How do you capture the chaos of a place like Paradise—leveled last year by the Camp Fire, California’s deadliest in a century—when we all know the end? One hundred and fifty thousand acres burned. Nineteen thousand structures were destroyed. Eighty-five people, most of them disabled or elderly, dead. In that sense, Fire in Paradise, a new documentary directed by Drea Cooper and Zackary Canepari which streams on Netflix this Friday, doesn’t break ground. The tight, 40-minute film isn’t an exercise in narrative form. There’s no narration at all. It’s a time capsule—a minute-by-minute replay, told by the people who lived it and spliced with source footage: dispatch calls, cellphone videos, and clips from an eerily upbeat weatherman. But it’s also a forecast, both for what the state will undergo these next few weeks, and what will replay in fire seasons to come. Inside L.A.’s High-End Getty Fire Evacuation CenterThe Weird Weather Fanning the Flames in CaliforniaFire in Paradise opens with an omen—at once self-conscious and effective. The camera pans on a forest, dry but unburned. An answering machine beeps in the background and a robocall sets the scene. “This is an important safety alert from Pacific Gas & Electric Company,” the monotone voice says. “Extreme weather conditions and high fire danger are forecasted in Butte County, starting Thursday, November 8, 2018.” Months after that morning, investigators would find the utility company responsible for as many as 10 of the fires which scorched the state last year. It’s another reminder of the film as forecast—this season, PG&E; has already taken heat for at least one inferno, and cutting power to millions across the state, leaving some to escape in the dark with little warning. As the voiceover continues, a square screen appears over the forest, playing a montage of home videos. Families bowl; a man fishes; couples dance and swim; kids dressed as cowboys hop a potato-sack race. “To protect public safety,” the robovoice goes on, “PG&E; may temporarily turn off power in your neighborhood or community.” The screen goes black. “Please have your emergency plan ready.”The account of the following hours unfold through interviews with residents and first responders—when they heard about the fire, when they got scared, when they fled. The most powerful moments don’t come from the speakers describing the fire. One of the unnerving things about extreme natural disasters is how language fails to keep pace with their severity: “It got bad real quick,” one dispatcher says. Another resident echoes: “It felt unreal.” Instead, the strongest scenes emerge from people describing people. At one point, an auburn-haired teacher named Mary Ludwig recalls boarding a bus filled with students, watching them yawn from the low-oxygen air, and making impromptu masks from the driver’s shirt and the sole water bottle on board. She hoped they wouldn’t work: “We prayed that we would die of smoke inhalation.” Later, resident Joy Beeson, a wry elderly woman with blue nail polish and a pink fleece, describes escaping with her son. “I ran out in my Skechers and my pajamas,” she says. “I was running out of breath, and my son put his hand on my back and said, ‘You’ve got to run now, Mama.’” When Beeson pushed ahead, a burning tree fell where she stood just seconds before: “My son saved my life.” A third survivor, a Cal Fire captain named Sean Norman, remembers evacuating a family that didn’t want to leave. If you don’t go, he told them, you will die. As the fire bore down, Norman couldn’t keep convincing them. He fled. “They survived,” he says, choking up. “They don’t like me very much. But at least they’re around to not like me.” Still, what makes Fire in Paradise essential viewing isn’t anything the subjects said or the directors captured. It comes from the amateurs, from the cellphone videos filmed from inside cars or while fleeing on foot. Near the end of the movie, the inevitable aerial shot arrives, revealing city blocks reduced to black squares. In the background, newscasters list unthinkable numbers: 77 deaths so far, 1,000 missing people. Then, the camera cuts to a stunning recording. It’s shot by an anonymous man walking through his old town. The landscape is so scorched the tape looks sepia. Only a few faint colors (a fleck of car paint, a blue flame) prove otherwise. The man pans toward the remains of a few cars, narrating in a squeaky voice. “Now this is the poor guy,” he says, “came down to get my crippled friend out.” He zooms in on the front car. It could be a Honda or a Dodge or a Geo or really any smallish, average car. Identifying markers have all been burned away. “He didn’t make it. None of these people made it down here. These people all got burnt up. I was right down below them here.” The man approaches the shattered windshield, focusing on the hollowed-out front seats. “My friend, you can see he’s dead.” In fact, you can’t see it. The images are unintelligible, all abstract lumps and black lines. But then he pans to a window, and something comes into focus: a blackened skull, and beneath it, bones. Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/33hwbB28ORhRhZQMKMgv9Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/b918ec5adac82db62f87f4da32698588,Netflix Drops Horrifying Camp Fire Documentary ‘Fire in Paradise’ as California Burns +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" +"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" +"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" +China responds to reports of U.S. grounding its fleet of Chinese-made drones,"Thu, 31 Oct 2019 10:33:59 -0400",https://news.yahoo.com/china-responds-reports-u-grounding-143359231.html,"China's foreign ministry said on Thursday after reports that the United States Department of the Interior had grounded its fleet of Chinese-made drones that it hoped Washington would ""stop abusing the concept of national security"" and provide a nondiscriminatory atmosphere for Chinese companies.",http://l2.yimg.com/uu/api/res/1.2/7PQM1BUYpSL9xxiFkSHKDQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314557-1572532267028.jpg,China responds to reports of U.S. grounding its fleet of Chinese-made drones +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +"House Democrats face question: Impeach Pence, or make him president?","Thu, 31 Oct 2019 05:00:38 -0400",https://news.yahoo.com/house-democrats-face-question-impeach-pence-or-make-him-president-090012685.html,"If the House approves impeachment, and if the Senate votes to remove Trump, Pence would become president. Would he make a better president?",http://l1.yimg.com/uu/api/res/1.2/Z3VG5Hx16YaZq2pevUBETg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-images/2019-10/deb28d30-fb5b-11e9-bfef-ef163d511377,"House Democrats face question: Impeach Pence, or make him president?" +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Islamic State group announces successor to al-Baghdadi,"Thu, 31 Oct 2019 12:37:25 -0400",https://news.yahoo.com/islamic-state-group-announces-successor-153846160.html,"The Islamic State group declared a new leader Thursday after it confirmed the death of its leader Abu Bakr al-Baghdadi days earlier in a U.S raid in Syria. In its audio release by the IS central media arm, al-Furqan Foundation, a new spokesman for IS identifies the successor as Abu Ibrahim al-Hashimi al-Qurayshi — tracing his lineage, like al-Baghdadi, to the Prophet Muhammad's Quraysh tribe. The speaker in the audio also confirmed the death of Abu Hassan al-Muhajir, a close aide of al-Baghdadi and a spokesman for the group since 2016.",http://l1.yimg.com/uu/api/res/1.2/fivXDH2rwHyqVQcwyhaFIw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/dfbeabe545288a1916e6d2fb2fb1776b,Islamic State group announces successor to al-Baghdadi +"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +"House Democrats face question: Impeach Pence, or make him president?","Thu, 31 Oct 2019 05:00:38 -0400",https://news.yahoo.com/house-democrats-face-question-impeach-pence-or-make-him-president-090012685.html,"If the House approves impeachment, and if the Senate votes to remove Trump, Pence would become president. Would he make a better president?",http://l1.yimg.com/uu/api/res/1.2/Z3VG5Hx16YaZq2pevUBETg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-images/2019-10/deb28d30-fb5b-11e9-bfef-ef163d511377,"House Democrats face question: Impeach Pence, or make him president?" +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Islamic State group announces successor to al-Baghdadi,"Thu, 31 Oct 2019 12:37:25 -0400",https://news.yahoo.com/islamic-state-group-announces-successor-153846160.html,"The Islamic State group declared a new leader Thursday after it confirmed the death of its leader Abu Bakr al-Baghdadi days earlier in a U.S raid in Syria. In its audio release by the IS central media arm, al-Furqan Foundation, a new spokesman for IS identifies the successor as Abu Ibrahim al-Hashimi al-Qurayshi — tracing his lineage, like al-Baghdadi, to the Prophet Muhammad's Quraysh tribe. The speaker in the audio also confirmed the death of Abu Hassan al-Muhajir, a close aide of al-Baghdadi and a spokesman for the group since 2016.",http://l1.yimg.com/uu/api/res/1.2/fivXDH2rwHyqVQcwyhaFIw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/dfbeabe545288a1916e6d2fb2fb1776b,Islamic State group announces successor to al-Baghdadi +"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +China responds to reports of U.S. grounding its fleet of Chinese-made drones,"Thu, 31 Oct 2019 10:33:59 -0400",https://news.yahoo.com/china-responds-reports-u-grounding-143359231.html,"China's foreign ministry said on Thursday after reports that the United States Department of the Interior had grounded its fleet of Chinese-made drones that it hoped Washington would ""stop abusing the concept of national security"" and provide a nondiscriminatory atmosphere for Chinese companies.",http://l2.yimg.com/uu/api/res/1.2/7PQM1BUYpSL9xxiFkSHKDQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314557-1572532267028.jpg,China responds to reports of U.S. grounding its fleet of Chinese-made drones +"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +China responds to reports of U.S. grounding its fleet of Chinese-made drones,"Thu, 31 Oct 2019 10:33:59 -0400",https://news.yahoo.com/china-responds-reports-u-grounding-143359231.html,"China's foreign ministry said on Thursday after reports that the United States Department of the Interior had grounded its fleet of Chinese-made drones that it hoped Washington would ""stop abusing the concept of national security"" and provide a nondiscriminatory atmosphere for Chinese companies.",http://l2.yimg.com/uu/api/res/1.2/7PQM1BUYpSL9xxiFkSHKDQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314557-1572532267028.jpg,China responds to reports of U.S. grounding its fleet of Chinese-made drones +"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +China responds to reports of U.S. grounding its fleet of Chinese-made drones,"Thu, 31 Oct 2019 10:33:59 -0400",https://news.yahoo.com/china-responds-reports-u-grounding-143359231.html,"China's foreign ministry said on Thursday after reports that the United States Department of the Interior had grounded its fleet of Chinese-made drones that it hoped Washington would ""stop abusing the concept of national security"" and provide a nondiscriminatory atmosphere for Chinese companies.",http://l2.yimg.com/uu/api/res/1.2/7PQM1BUYpSL9xxiFkSHKDQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314557-1572532267028.jpg,China responds to reports of U.S. grounding its fleet of Chinese-made drones +"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +China responds to reports of U.S. grounding its fleet of Chinese-made drones,"Thu, 31 Oct 2019 10:33:59 -0400",https://news.yahoo.com/china-responds-reports-u-grounding-143359231.html,"China's foreign ministry said on Thursday after reports that the United States Department of the Interior had grounded its fleet of Chinese-made drones that it hoped Washington would ""stop abusing the concept of national security"" and provide a nondiscriminatory atmosphere for Chinese companies.",http://l2.yimg.com/uu/api/res/1.2/7PQM1BUYpSL9xxiFkSHKDQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314557-1572532267028.jpg,China responds to reports of U.S. grounding its fleet of Chinese-made drones +"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +China responds to reports of U.S. grounding its fleet of Chinese-made drones,"Thu, 31 Oct 2019 10:33:59 -0400",https://news.yahoo.com/china-responds-reports-u-grounding-143359231.html,"China's foreign ministry said on Thursday after reports that the United States Department of the Interior had grounded its fleet of Chinese-made drones that it hoped Washington would ""stop abusing the concept of national security"" and provide a nondiscriminatory atmosphere for Chinese companies.",http://l2.yimg.com/uu/api/res/1.2/7PQM1BUYpSL9xxiFkSHKDQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314557-1572532267028.jpg,China responds to reports of U.S. grounding its fleet of Chinese-made drones +"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +China responds to reports of U.S. grounding its fleet of Chinese-made drones,"Thu, 31 Oct 2019 10:33:59 -0400",https://news.yahoo.com/china-responds-reports-u-grounding-143359231.html,"China's foreign ministry said on Thursday after reports that the United States Department of the Interior had grounded its fleet of Chinese-made drones that it hoped Washington would ""stop abusing the concept of national security"" and provide a nondiscriminatory atmosphere for Chinese companies.",http://l2.yimg.com/uu/api/res/1.2/7PQM1BUYpSL9xxiFkSHKDQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314557-1572532267028.jpg,China responds to reports of U.S. grounding its fleet of Chinese-made drones +"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" +Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days +"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" +Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain +Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders +Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact +Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit +Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge +U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic +India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal +Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start +Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines +Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day +China responds to reports of U.S. grounding its fleet of Chinese-made drones,"Thu, 31 Oct 2019 10:33:59 -0400",https://news.yahoo.com/china-responds-reports-u-grounding-143359231.html,"China's foreign ministry said on Thursday after reports that the United States Department of the Interior had grounded its fleet of Chinese-made drones that it hoped Washington would ""stop abusing the concept of national security"" and provide a nondiscriminatory atmosphere for Chinese companies.",http://l2.yimg.com/uu/api/res/1.2/7PQM1BUYpSL9xxiFkSHKDQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314557-1572532267028.jpg,China responds to reports of U.S. grounding its fleet of Chinese-made drones +"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" diff --git a/news_feed/rss_reader.py b/news_feed/rss_reader.py index 8867a02..ecf4337 100644 --- a/news_feed/rss_reader.py +++ b/news_feed/rss_reader.py @@ -1,5 +1,4 @@ import requests -import re import os import datetime @@ -16,11 +15,15 @@ PROJECT_DESCRIPTION = '' +class NewsNotFoundError(FileNotFoundError): + pass + + class NewsReader: """ Class for reading news from rss-format files. - @Input: url + :param: url """ def __init__(self, url, limit=None, verbose=False, cashing=False): @@ -52,7 +55,6 @@ def get_news(self): result = request.text tree = ET.fromstring(result) - print(result) items = dict() items.setdefault('title', ' ') @@ -72,6 +74,11 @@ def get_news(self): news_description = dict() # TODO: set useful_tags as default tags! + news_description.setdefault('title', 'no title') + news_description.setdefault('pubDate', str(datetime.datetime.today().date())) + news_description.setdefault('link', 'no link') + news_description.setdefault('description', 'no description') + for description in item: if description.tag in useful_tags: news_description[description.tag] = description.text @@ -114,7 +121,6 @@ def _cash_news(news, dir='news_cash'): if os.path.getsize(path) == 0: csv_writer.writerow(news.keys()) - print(news.values()) csv_writer.writerow(news.values()) @staticmethod @@ -160,7 +166,6 @@ def get_date(news): :return: date of news publication """ - print(news) news_date = news['pubDate'] # news_date = datetime.datetime.strptime(date, '%a, %d %b %Y %H:%M:%S %Z') @@ -282,8 +287,10 @@ def to_json(self): return json_result -feed = NewsReader(' http://rss.cnn.com/rss/edition_world.rss', limit=None, cashing=True) -print(feed.read_by_date('20191028')) +# feed = NewsReader(' http://rss.cnn.com/rss/edition_world.rss', limit=None, cashing=True) +# print(feed.read_by_date('20191028')) +# it = feed.items + # date = datetime.datetime.strptime(date, '%a, %d %b %Y %H:%M:%S %Z') From a5f065e63155005a5dcb605b682e8a041f67b8d6 Mon Sep 17 00:00:00 2001 From: vadbeg Date: Sun, 3 Nov 2019 16:32:13 +0300 Subject: [PATCH 08/11] New converter into html was added. --- news_feed/format_converter.py | 136 ++++++++++++- news_feed/news.html | 360 ++++++++++++++++++++++++++++++++++ news_feed/news.pdf | Bin 203322 -> 187735 bytes 3 files changed, 491 insertions(+), 5 deletions(-) create mode 100644 news_feed/news.html diff --git a/news_feed/format_converter.py b/news_feed/format_converter.py index 343b3f9..a15e052 100644 --- a/news_feed/format_converter.py +++ b/news_feed/format_converter.py @@ -21,13 +21,14 @@ def silent_remove(path): except OSError: pass + class PdfNewsConverter(FPDF): """ Easy-to-use pdf rss news converter """ - def __init__(self, items, asd): + def __init__(self, items): """ :param items: Rss in dictionary @@ -126,6 +127,7 @@ def add_news_page(self, item): image_link = item['imageLink'] image_description = item['imageDescription'] + print(image_link) self.set_font('Times', 'I', 14) self.multi_cell(w=0, h=10, txt=title, align='C') @@ -165,12 +167,136 @@ def add_all_news(self): self.add_news_page(plot) +class HTMLNewsConverter: + """ + Easy-to-use html rss news-converter + + """ + + def __init__(self, items): + """ + + :param items: Rss in dictionary + """ + + self.items = items + + one_news_template = """ +

{title}

+

Date: {pubDate}

+
News link +

{description}

+ No image +

Image description: {imageDescription}

+ """ + + def add_one_news(self, item): + """ + Add one news info into html + + :param item: one news info + :return: one news info into html + """ + + title = item['title'] + pub_date = item['pubDate'] + link = item['link'] + description = item['description'] + image_link = item['imageLink'] + image_description = item['imageDescription'] + + template = self.one_news_template.format( + title=title, + pubDate=pub_date, + link=link, + description=description, + imageLink=image_link, + imageDescription=image_description + ) + + return template + + @staticmethod + def create_res_html_template(): + """ + Creates outer tags for whole html. + + :return: outer opening tags, outer closing tags + """ + + res_html_start = """ + + + + """ + + res_html_end = """ + + + """ + + return res_html_start, res_html_end + + @staticmethod + def create_title(title): + """ + Create tag for title of rss source + + :param title: title of rss source + :return: title of rss source in html + """ + + title = f""" +

{title}

+ """ + + return title + + def add_all_news(self): + """ + Add all news into html between outer + opening tags and outer closing tags + + :return: resulting html file + """ + + res_html_start, res_html_end = self.create_res_html_template() + + for el, plot in self.items.items(): + if el == 'title': + res_html_start += self.create_title(plot) + else: + res_html_start += self.add_one_news(plot) + + res_html = res_html_start + res_html_end + + return res_html + + def output(self, path): + """ + Outputs resulting html into file + + :param path: path into which we should add res html + :return: None + """ + + res_html = self.add_all_news() + + with open(path, 'w') as file: + file.write(res_html) + + feed = NewsReader('https://news.yahoo.com/rss/', limit=None, cashing=False) it = feed.items it = it -pdf = PdfNewsConverter(it) +# pdf = PdfNewsConverter(it) +# +# pdf.add_all_news() +# pdf.output('news.pdf', 'F') +# print(pdf.items) + +html = HTMLNewsConverter(it) + +html.output('news.html') -pdf.add_all_news() -pdf.output('news.pdf', 'F') -print(pdf.items) diff --git a/news_feed/news.html b/news_feed/news.html new file mode 100644 index 0000000..b2a770b --- /dev/null +++ b/news_feed/news.html @@ -0,0 +1,360 @@ + + + + + +

Yahoo News - Latest News & Headlines

+ +

Court ruling could throw impeachment timeline into disarray

+

Date: Fri, 01 Nov 2019 17:22:05 -0400

+ News link +

Even as House Democrats on Thursday ratified an impeachment resolution against President Trump, a federal judge has potentially slowed the brisk pace of the inquiry by declining to rule on whether a key witness needed to testify before the House of Representatives.

+ No image +

Image description: Court ruling could throw impeachment timeline into disarray

+ +

2020 Vision: If a single speech can shake up the Democratic race, it might happen in Iowa

+

Date: Fri, 01 Nov 2019 15:07:03 -0400

+ News link +

Will any of this year’s candidates pull an Obama at the newly named Liberty and Justice Celebration?

+ No image +

Image description: 2020 Vision: If a single speech can shake up the Democratic race, it might happen in Iowa

+ +

Ex-officer gets 12 years in naked man's fatal shooting

+

Date: Fri, 01 Nov 2019 19:04:14 -0400

+ News link +

A former Georgia police officer convicted of aggravated assault and other crimes in the fatal shooting of an unarmed, naked man was sentenced Friday to 12 years in prison. Robert "Chip" Olsen was responding to a call of a naked man behaving erratically at an Atlanta-area apartment complex in March 2015 when he killed 26-year-old Anthony Hill, a black Air Force veteran who'd been diagnosed with bipolar disorder and PTSD. Olsen, who is white, was convicted of one count of aggravated assault, two counts of violating his oath of office and one count of making a false statement.

+ No image +

Image description: Ex-officer gets 12 years in naked man's fatal shooting

+ +

California wildfires: Climate change driving ‘horror and the terror’ of devastating blazes, say scientists

+

Date: Sat, 02 Nov 2019 12:52:49 -0400

+ News link +

The words from California’s former governor could barely have been more stark.“I said it was the new normal a few years ago,’’ said Jerry Brown. “This is serious, but this is only the beginning. This is only a taste of the horror and the terror that will occur in decades.”

+ No image +

Image description: California wildfires: Climate change driving ‘horror and the terror’ of devastating blazes, say scientists

+ +

Maria Fire broke out minutes after utility company re-energized high-voltage power line

+

Date: Sat, 02 Nov 2019 14:51:27 -0400

+ News link +

Southern California Edison says it turned power back on minutes before the Maria Fire erupted nearby in Ventura County

+ No image +

Image description: Maria Fire broke out minutes after utility company re-energized high-voltage power line

+ +

Hollow building becomes center of Iraq's uprising

+

Date: Sat, 02 Nov 2019 15:41:37 -0400

+ News link +

The skeleton of a high-rise building overlooking Baghdad's central Tahrir Square known as the Turkish Restaurant has become a temporary home and a bustling center for protesters staging demonstrations against Iraq's ruling elites. Dressed in combat trousers and wearing an Iraqi flag as a cape, the 35-year-old is the leader of the group, made up of 20-odd young men who occupy a corner of the building's base. Groups of young men have occupied all 18 floors of the building, with its cramped unlit narrow staircases.

+ No image +

Image description: Hollow building becomes center of Iraq's uprising

+ +

Who Wore It Better? 10 Names Shared by Automakers

+

Date: Sat, 02 Nov 2019 08:20:00 -0400

+ News link +

+ No image +

Image description: Who Wore It Better? 10 Names Shared by Automakers

+ +

Toll in Philippine quakes climbs to 21

+

Date: Sun, 03 Nov 2019 02:07:41 -0500

+ News link +

The death toll in two powerful quakes that struck the southern Philippines in the past week has risen to 21, authorities said Sunday, as survivors struggled to access food and water. The 6.6-magnitude and 6.5-magnitude quakes hit the island of Mindanao two days apart, destroying buildings and displacing tens of thousands of residents. The quakes also left 432 residents injured with two people still missing, it added.

+ No image +

Image description: Toll in Philippine quakes climbs to 21

+ +

A Louisiana woman has been arrested for selling $20 fake doctor's notes to students trying to skip class

+

Date: Fri, 01 Nov 2019 09:55:04 -0400

+ News link +

The woman's master plan unraveled once the physician whose name was being used to sign off on the notes received complaints from the school board.

+ No image +

Image description: A Louisiana woman has been arrested for selling $20 fake doctor's notes to students trying to skip class

+ +

Have Kentuckians finally had enough of Mitch McConnell?

+

Date: Fri, 01 Nov 2019 13:40:54 -0400

+ News link +

A recent poll shows that Senate Majority Leader Mitch McConnell, the president’s most stolid defender, is down to an 18 percent job approval rating in Kentucky. Only 37 percent in a recent Public Policy Poll said they would vote for him again next year.

+ No image +

Image description: Have Kentuckians finally had enough of Mitch McConnell?

+ +

Thanks to Trump, the U.S. hasn't admitted a single refugee since September

+

Date: Fri, 01 Nov 2019 20:10:06 -0400

+ News link +

October was the first full month in at least 18 years in which the United States did not admit any refugees.

+ No image +

Image description: Thanks to Trump, the U.S. hasn't admitted a single refugee since September

+ +

Louisiana man gets probation in whooping crane death

+

Date: Fri, 01 Nov 2019 19:08:32 -0400

+ News link +

A Louisiana man was sentenced to probation Friday for killing one of the state's oldest whooping cranes . Gilvin P. Aucoin Jr., of Ville Platte, shot the endangered whooping crane in July 2018 in Evangeline Parish. In a hearing before U.S. Magistrate Judge Carol B. Whitehurst, Aucoin changed his plea to guilty for a misdemeanor violation of the International Migratory Bird Treaty Act.

+ No image +

Image description: Louisiana man gets probation in whooping crane death

+ +

Ken Cuccinelli Calls Debbie Wasserman Schultz a Witch: She ‘Got on Her Broom and Left’

+

Date: Fri, 01 Nov 2019 11:37:16 -0400

+ News link +

A day after a contentious congressional hearing in which he was accused by Rep. Debbie Wasserman Schultz (D-FL) of pushing a “heinous white supremacist ideology,” acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli essentially called the congresswoman a witch.Appearing on Fox & Friends on Friday morning, Cuccinelli brushed off questions about whether he’s still being considered to head up the Department of Homeland Security by saying he will keep doing his current job “in the face of some people who would rather we are not as successful.”“Are you referring to Debbie Wasserman Schultz by chance,” co-host Ainsley Earhardt asked, prompting Cuccinelli to say she was “among them.”The hosts went on to play a video clip from Thursday’s contentious hearing in which the Florida lawmaker claimed the Cuccinelli and President Donald Trump were pursuing a white supremacist policy by denying public benefits to legal immigrants, including children.“That’s one of those things that politicians can say things because they are protected,” co-host Steve Doocy remarked. “However, you are—as somebody who is serving in the public interests—you have to give facts.”Cuccinelli insisted that while he was under oath, Wasserman Schultz was “literally protected to lie,” citing the speech and debate clause in the Constitution. He then asserted that she only came into the hearing to make a speech before making his witch allusion.“She wasn’t at much of the committee hearing,” he said. “She came in, laid on her smears on both me and the president, all completely false. And then wasn’t there much longer, got on her broom and left. It was a fly-by for her and to get a little sound bite.”The hosts, meanwhile, rather than push back on Cuccinelli’s not-so-veiled sexist insult of a female lawmaker, instead expressed sympathy for the Trump immigration chief.“She didn’t want you to interrupt her,” Earhardt declared. “And I guess the rules prevent you from doing but she is smearing your reputation and character and saying something you don’t feel like it is true. You have to defend yourself.”Following Cuccinelli’s Fox & Friends remarks, Wasserman Schultz took to Twitter to respond, calling out the Trump official for trying to “silence outspoken women who speak truth to power.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.

+ No image +

Image description: Ken Cuccinelli Calls Debbie Wasserman Schultz a Witch: She ‘Got on Her Broom and Left’

+ +

This time, Southern California was prepared for wildfires. Here's how countless homes were saved

+

Date: Sat, 02 Nov 2019 12:47:36 -0400

+ News link +

The winds roared again but Los Angeles and other Southern California cities were prepared as firefighters saved thousands of homes.

+ No image +

Image description: This time, Southern California was prepared for wildfires. Here's how countless homes were saved

+ +

Teachers strike taught Chicago's new mayor tough lessons -analysts

+

Date: Fri, 01 Nov 2019 15:27:56 -0400

+ News link +

Chicago Mayor Lori Lightfoot made strategic errors in the first major fight of her tenure, an 11-day teachers' strike, but may have learned lessons that will prove useful as she confronts immense city budget challenges, political observers said. Lightfoot, 57, was elected in convincing fashion to become Chicago's first black woman mayor in April, when she vaulted to victory on promises to dismantle the city's corrupt political machine and reform the city's school district.

+ No image +

Image description: Teachers strike taught Chicago's new mayor tough lessons -analysts

+ +

Low-Yield Nuclear Weapons Won’t End the World

+

Date: Fri, 01 Nov 2019 20:00:00 -0400

+ News link +

A recent video by Princeton University’s Program on Science and Global Security, Plan A, suggests that the use of one low-yield non-strategic nuclear weapon, in a NATO-Russia conflict, would lead to the large scale use of strategic nuclear weapons and the death of more than 90 million people. While the video’s makers deserve credit for its production quality and very ominous background music, the scenario they offer, while always possible, is highly unlikely.

+ No image +

Image description: Low-Yield Nuclear Weapons Won’t End the World

+ +

Exxon, Chevron Begin Pushing Back Against Warren’s Fracking Ban

+

Date: Fri, 01 Nov 2019 15:53:48 -0400

+ News link +

(Bloomberg) -- America’s two biggest oil companies are starting to push back against the fracking ban touted by the leading candidates for the Democratic presidential nomination, which may become one of the most consequential flashpoints for energy markets during the election campaign.Exxon Mobil Corp. and Chevron Corp. executives spoke out publicly against the proposals for the first time on Friday, saying they would shift profits from crude production from the U.S. to other countries, and may increase prices for consumers while doing nothing to reduce oil demand or greenhouse-gas emissions.It’s a line of attack that’s likely to feature heavily in debates in the year ahead as the energy industry and Republicans seek to counter the Democratic Party’s green wing. To be sure, whoever gets elected next year will find it difficult to end fracking. Presidential powers to enact a ban only extend to federal lands, something that would be certain to face immediate legal challenges. A wider restriction would need to go through Congress.“Any efforts to ban fracking or restrict supply will not remove demand for the resource,” Neil Hansen, Exxon’s vice president of investor relations, said on a conference call with analysts. “If anything it will shift the economic benefit away from the U.S. to another country, and a potentially impact the price of that commodity here and globally.”Elizabeth Warren and Bernie Sanders, two front-runners in the race to be the Democratic candidate, are keen to stop America’s reliance on fossil fuels, and they also want to end what they say is Washington’s subservience to corporate interests. They also know how to hit Exxon and Chevron where it hurts. Five years ago, both companies produced little crude from fracking and might have even have benefited from a ban if it led to higher oil prices. But now fracking is the fastest-growing part of their global businesses and a key profit driver.Hydraulic fracturing of shale rock is pushing U.S. oil production to record highs, touching 12.4 million barrels a day in August. Exxon said Friday its output from the Permian Basin in West Texas and New Mexico had boomed by more than 70% in the third quarter from a year earlier. Chevron, a bigger Permian producer, saw its output there climb 35%.That wave of supply has ensured lower gasoline and energy prices for domestic consumers, bolstered economic growth for states such as Texas and North Dakota, and restored the country to ranks of the world’s major crude exporters.“It’s really unlocked an economic huge economic benefit for the country, as well as for the companies involved,” Jay Johnson, the boss of Chevron’s upstream business, said during the company’s earnings conference call.But fracking also has costs, particularly in terms of the climate. Cheap fossil fuels typically mean people use more of them, causing higher emissions. Hansen said that while Exxon shares concerns about climate change, “there are more effective policies” such as a revenue-neutral carbon tax and technology initiatives.To contact the reporter on this story: Kevin Crowley in Houston at kcrowley1@bloomberg.netTo contact the editors responsible for this story: Simon Casey at scasey4@bloomberg.net, Joe CarrollFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.

+ No image +

Image description: Exxon, Chevron Begin Pushing Back Against Warren’s Fracking Ban

+ +

Chasing shadows in China: Detained lawyer's wife battles on

+

Date: Fri, 01 Nov 2019 14:14:13 -0400

+ News link +

With winter approaching, Xu Yan brought some warm clothes and money for her husband to a detention centre in eastern China, though she's not even sure the arrested human rights lawyer is still being held there. Xu, 37, has travelled some 20 times from Beijing to Xuzhou in Jiangsu province in a vain struggle to get any information about Yu Wensheng after he was taken into custody last year. Xu returned again this week, joining the line at the Xuzhou City Detention Centre with other people bringing plastic bags bulging with thick duvets and sweaters for inmates.

+ No image +

Image description: Chasing shadows in China: Detained lawyer's wife battles on

+ +

Distressing photos show glaciers that are disappearing or on the brink of collapse around the world

+

Date: Fri, 01 Nov 2019 16:27:20 -0400

+ News link +

The future of glaciers around the world is shaky. Here are photos showing some of the glaciers that might not be around for much longer.

+ No image +

Image description: Distressing photos show glaciers that are disappearing or on the brink of collapse around the world

+ +

Greta Thunberg says meeting with Trump 'would be a waste of time'

+

Date: Fri, 01 Nov 2019 10:58:43 -0400

+ News link +

The Swedish teenage climate activist says she wouldn’t want to meet with the president even if given the opportunity.

+ No image +

Image description: Greta Thunberg says meeting with Trump 'would be a waste of time'

+ +

Brazil authorities zero in on ship suspected of oil spill

+

Date: Fri, 01 Nov 2019 16:39:33 -0400

+ News link +

After oil mysteriously washed ashore on some 2,100 kilometers (1,300 miles) of Brazil's coastline for two months, authorities on Friday identified a suspect: a Greek-flagged ship belonging to Delta Tankers Ltd. Brazil's government has been striving to investigate the cause of the spill that has hit 286 beaches along the northeast coast and hurt fishing and tourism. The specific source of the oil has remained unclear since it began appearing in early September.

+ No image +

Image description: Brazil authorities zero in on ship suspected of oil spill

+ +

Aniah Blanchard's UFC Fighter Stepdad Says Missing Alabama Teen Is 'Amazing'

+

Date: Fri, 01 Nov 2019 19:12:53 -0400

+ News link +

Aniah Haley Blanchard, 19, was reported missing by her family on Oct 24. The last time she was heard from was by a friend the night before, according to authorities. 

+ No image +

Image description: Aniah Blanchard's UFC Fighter Stepdad Says Missing Alabama Teen Is 'Amazing'

+ +

23 ISIS wives start repatriation case in Netherlands

+

Date: Fri, 01 Nov 2019 14:13:35 -0400

+ News link +

Lawyers for 23 women who joined the Islamic State group from the Netherlands asked a judge on Friday to order the Netherlands to repatriate them and their 56 young children from camps in Syria. The women and children were living in "deplorable conditions" in the al-Hol camp in northern Syria, lawyer Andre Seebregts said in court.

+ No image +

Image description: 23 ISIS wives start repatriation case in Netherlands

+ +

UAW union president takes leave of absence under cloud of U.S. federal probe

+

Date: Sat, 02 Nov 2019 10:31:31 -0400

+ News link +

The president of the United Auto Workers union, who has been linked https://www.reuters.com/article/us-autos-corruption-labor/federal-corruption-probe-hits-home-for-uaw-boss-contract-talks-under-storm-cloud-idUSKCN1VI229 to an ongoing corruption probe by U.S. federal officials, has taken a leave of absence, the union said on Saturday in a statement. Gary Jones' leave of absence, which follows a vote by the executive board, will be effective beginning Sunday, the UAW said. "The UAW is fighting tooth and nail to ensure our members have a brighter future.

+ No image +

Image description: UAW union president takes leave of absence under cloud of U.S. federal probe

+ +

Iran, Please Don't Develop a Stealth Fighter

+

Date: Sat, 02 Nov 2019 05:01:00 -0400

+ News link +

It might be nice to have one, but it'll bring nothing but trouble.

+ No image +

Image description: Iran, Please Don't Develop a Stealth Fighter

+ +

Bad news for Boeing: Company says more 737 NGs found to have wing cracks

+

Date: Fri, 01 Nov 2019 19:36:32 -0400

+ News link +

The FAA ordered the inspections in 737 NG's that have flown many thousands of flghts

+ No image +

Image description: Bad news for Boeing: Company says more 737 NGs found to have wing cracks

+ +

US military calls on Kurdish forces in northeast Syria

+

Date: Sat, 02 Nov 2019 10:42:13 -0400

+ News link +

US military vehicles Saturday entered a Kurdish-held area in northeastern Syria and met with officials, AFP correspondents and a local source said, in the second such visit since an announced US pullout from the Turkish border area. Beige-coloured armoured vehicles flying the American flag pulled up at the headquarters of the Kurdish-led Syrian Democratic Forces outside the city of Qamishli. A US-led coalition has for years backed the SDF in fighting the Islamic State group, but the announcement of an American withdrawal triggered a deadly Turkish invasion against the Kurds on October 9.

+ No image +

Image description: US military calls on Kurdish forces in northeast Syria

+ +

British teenager was suffering from PTSD when she withdrew Cyprus gang rape claim, court hears

+

Date: Fri, 01 Nov 2019 14:26:49 -0400

+ News link +

A British teenager accused of lying about being gang raped in Cyprus may have retracted her claims because she was suffering from post-traumatic stress disorder, her lawyer said at a hearing on Friday. The woman, 19, is charged with public mischief for allegedly inventing the attack at an Ayia Napa hotel on July 17. She maintains she was raped by up to a dozen Israeli tourists, but pressured by Cypriot police to make a retraction statement 10 days later. Prosecutors say the teenager willingly wrote and signed the document. On Friday, chartered consultant psychologist Dr Christine Tizzard gave evidence by videolink from Portsmouth Crown Court. Speaking after the hearing in Larnaca, lawyer Michael Polak, director of the group Justice Abroad - which is assisting the teenager - said she was diagnosed as having underlying PTSD, which was reignited by the alleged attack. Lawyer Michael Polak of Justice Abroad is supporting the teengaer Credit: KATIA CHRISTODOULOU/EPA-EFE/REX "We were pleased with the evidence from Dr Tizzard, which confirms what we have been saying," he said. "She explained in simple words to the court the ways in which PTSD affects someone who is put in a difficult situation... Their fight or flight reflex would kick in and they would do anything to get out of that situation... "We look forward to the rest of the evidence, which we say supports the teenager's case that she was put under enormous pressure to sign the retraction statement." The case was adjourned following the psychologist's evidence and a date for forensic linguist Dr Andrea Nini to give evidence is expected to be set on Monday. He is expected to say it was "highly unlikely" that the retraction statement was written by a native English speaker, supporting the teenager's case that it was dictated to her by a Cypriot police officer. The incident allegedly took place in the resort town of Ayia Napa Credit: Amir MAKAR / AFP Her lawyers want Judge Michalis Papathanasiou to rule the statement is inadmissible as evidence. The teenager was a week into a working holiday before she was due to start university when she alleged she was raped by the group of young Israeli men, but was then herself accused of making it up. She spent more than a month in prison before she was granted bail at the end of August, but cannot leave the island, having surrendered her passport. She could face up to a year in jail and a 1,700 euro (£1,500) fine if she is found guilty. The 12 Israelis arrested over the alleged attack returned home after they were released. The teenager's family have set up a crowdfunding page asking for money for legal costs, which has raised more than £40,000.

+ No image +

Image description: British teenager was suffering from PTSD when she withdrew Cyprus gang rape claim, court hears

+ +

For the Best Three-Row Mid-Size Crossovers and SUVs, See These Full Rankings!

+

Date: Fri, 01 Nov 2019 18:21:00 -0400

+ News link +

+ No image +

Image description: For the Best Three-Row Mid-Size Crossovers and SUVs, See These Full Rankings!

+ +

To Shake Up Trump, Kim Jong Un Gets All Mystical—Then Launches Missiles

+

Date: Sat, 02 Nov 2019 05:09:53 -0400

+ News link +

Photo Illustration by The Daily Beast/Korean Central News Agency/APFrom sacred Mount Paektu, the Korean peninsula’s highest peak on the North’s border with China, to the 10,000 spire-like pinnacles of Mount Kumgang just above the line with South Korea, Kim Jong Un has cast himself of late as the bold, fearless, iconic leader literally daring to ascend the highest peaks in pursuit of power over the divided country.There’s nothing remotely subtle about the campaign that has pictured him on a white stallion riding through the early snows of another frigid winter on Mt. Paektu or striding up the slopes of Kumgang.It’s all about projecting the image of a hero in a campaign of intimidation aimed at both the U.S. and South Korea in a climactic drive to get President Donald Trump and the South’s President Moon Jae-in to yield at last to his demands. North Koreans Think Trump Admin Talks Are ‘Sickening.’ So Should You.And now Kim had added some very important missile tests to his message. In a sequence that clearly had been pre-scripted as the second act after those daring ascents, North Korean gunners test-fired what the North’s Academy of Defense Science proudly described as “super-large multiple rocket launchers.”Kim, having already appeared as a fit if somewhat portly outdoorsman, did not have to be standing by to press the button. While that image of the brave warrior dominated the state media, the academy reported “the perfection of the continuous fire system” as “verified through the test-fire to totally destroy with super-power the group target of the enemy and designated target area by surprise strike of the weapon system of super-large multiple rocket launchers.”The ferocity of the test, at least as claimed, carried one especially disturbing message. That kind of firepower isn’t for use against American or Japanese soil, but could devastate America’s largest overseas base at Camp Humphreys, 40 miles south of Seoul, 60 miles below the Demilitarized Zone between the two Koreas.The base, no doubt shielded by all manner of sensors, missiles and other wizardry, has got to be a sitting duck for the North’s increasingly advanced weaponry. Most of America’s 28,500 troops in Korea, plus families and civilian employees, are now there after the closure of U.S. bases below the DMZ and withdrawal of the central headquarters for U.S. Forces Korea from the historic Yongsan base in Seoul. Nearby Osan Air Base is headquarters for the Seventh Air Force, also an easy target.“Megabase in Korea’s Danger Zone,” is the cover story in this week’s Army Times magazine. The North Koreans “said they’ve been developing these weapons to be able to strike a ‘fat target,’” David Maxwell, senior fellow at the Foundation for Defense of Democracies, who spent years in Korea as an army officer, is quoted as saying. “We assume that the ‘fat target’ is Camp Humphreys as well as Osan Air Base.”Even as U.S. forces were moving into Humphreys, writes Kyle Rempfer, “North Korea has developed large caliber rockets and ballistic missiles as well as a nuclear capability” within range of the expanded 3,500-acre base. “North Korea’s 300-millimeter multiple rocket launchers and new KN-23 short-range ballistic missiles both have an advertised capability to reach Camp Humphreys.”Not-to-worry is, nonetheless, the soothing message from Moon and his aides. Echoing Trump’s earlier expressions of non-concern about the North’s short-range missile tests, South Korea’s national security adviser, Chung Eui-yong, said the latest shots, the 12th this year but the first in a month, were not “very grave threats.” In fact, he argued, “our missile defense and intercept capabilities” are “absolutely superior.”With two months to go before the end-of-year “deadline” set by the North for the U.S. to propose a new deal, however, the testing assumes seriously intimidating overtones. At the top of the North’s demands are an end to sanctions and a “peace declaration”– but no real end to its nuclear program, long since sanctified in the North’s constitution.As for Moon, Kim has come up with a bargaining tool that demonstrates the futility of any deal with North Korea. He’s demanding South Korea demolish or remove an entire tourist resort at the foot of Mount Kumgang, aka Diamond Mountain, heaping scorn on what was once the most visible showcase for promoting North-South rapprochement.North Korea’s state media is dressing up the demand with images of Kim, sporty in a white shirt tailored to fit his contours, appearing to conquer Kumgang on foot just as he rode up the slopes of Paektu on a white horse. Whether he got to the top of Paektu on the horse as claimed, the imagery from Kumgang leaves no doubt he trudged only far enough for a photo-op that provided the setting for his message to Moon.Packing 290 pounds on his rotund five-foot seven-inch frame, Kim was not at all fit for the hike. Missing are photographs showing him at the majestic Kuryong waterfall, which tumbles 84 meters down granite cliffs. Only four kilometers up the trail, it’s the destination for just about everyone else who’s been there.Also further up the trail, a special wooden bench, lovingly painted and repainted a sparkling dark blue, is said to be exactly where Kim Il Sung sat to gaze on Mount Kumgang, some of whose many pinnacles are often lost in the clouds far above. A low-lying chain link fence keeps disrespectful tourists from sitting where the late “Great Leader” once sat. No doubt Kim Jong Un would love to plant his ample posterior on granddad’s bench, but he got nowhere near it.Rather than at the falls or on the bench, Kim is seen with imagery selected and edited to give an impression of an indomitable figure conquering the mountain. Shots show him with a stout walking stick standing on a footbridge, smiling with aides in a clearing, edging by large boulders, his coyly smiling wife, Ri Sol Ju, close behind. Viewers don’t need to know all these photos were staged where the trail begins.The scenic setting provides the backdrop for a shocking message to South Korea—and the U.S, too. In a devastating setback to South Korea’s efforts at reconciliation, Kim declared the facilities built by South Korea’s largest construction firm, Hyundai Engineering and Construction, were “ugly” and “unpleasant” to look at. North Korea has demanded South Korea set a date in writing for removal or demolition of all of them, including 10 hotels, sports and entertainment facilities, a duty-free shopping center and dozens of individual structures to accommodate tour groups.Kim’s denunciation of the facilities at Kumgang, which also include an 18-hole golf course and a hot springs spa, is a calculated rebuff to President Moon, who still fantasizes about reopening the resort to South Koreans. Seoul has barred them from going there ever since a South Korean woman was shot and killed by a North Korean soldier in July 2008 while wandering outside the tourist area to gaze at the sunrise. Another problem is how to get around sanctions blocking commercial transactions with the North.It was as though Kim wanted to portray himself as a daring sportsman, a larger-than-life character afraid of nothing before getting down to the serious business of dissing the South as punishment for Moon’s failure to stand up to U.S demands for the North to give up its nuclear program.As for the U.S., Kim’s heroics provided the window-dressing for a series of intimidating messages for his friend President Trump. After the North’s state media put out photos showing Kim as a virile figure fit to climb any mountain, subordinates came out almost daily with threats against the U.S. for dithering on a deal.“The Korean peninsula is at a critical crossroads,” said the country’s second ranking leader, Choe Ryong-hae, at a confab of the so-called non-aligned movement in Azerbaijan. The choice was “either moving towards durable peace along with the trend of detente, or facing again a touch-and-go crisis.”That warning came after another top leader, Kim Yong Chol, resurgent after having been reported in May to have been executed for the failure of the Trump-Kim summit in Hanoi, said Trump had better not count on his friendship with Kim to keep the North from testing nukes and missiles."The U.S. is seriously mistaken if it has the idea of exploiting the close personal relations” between Trump and Kim, said Kim Yong Chol, vice chairman of the Workers’ Party Central Committee, in a statement carried by Pyongyang’s official news agency. The U.S., he said, is now “more desperately resorting to the hostile policy” toward North Korea. Those stern words, coming right after Kim’s shows on Kumgang and Paektu, left the South Koreans with no convincing response.South Korea’s unification ministry called for “creative solutions” to the entire problem of dismantling the resort complex and keeping Kim happy. North Korea turned a cold shoulder to the South’s suggestions for “individual” tours that might avoid sanctions.Kim’s current observations from the bottom of Kumgang were meant to show how South Koreans desecrated this scenic wonderland when they opened it to tourism in deals made by South Korea’s Kim Dae-jung, the country’s president from 1998 to 2003.“Mt. Kumgang is our land of blood,” Kim Jong Un is quoted as saying. “We have our own sovereignty and dignity on the cliffs and trees.” Those hideous South-made structures, he said, were “severely damaging the landscape” and “neglecting the management of cultural tourism.”While Trump Shrugs, North Korea’s Building Better MissilesRead more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.

+ No image +

Image description: To Shake Up Trump, Kim Jong Un Gets All Mystical—Then Launches Missiles

+ +

Groups ask California governor to deter parolee deportations

+

Date: Fri, 01 Nov 2019 19:59:41 -0400

+ News link +

Immigrant rights groups called Friday for Gov. Gavin Newsom to end policies they say ease the transfer of prison inmates to federal authorities despite California's efforts to provide a sanctuary to those who are in the country illegally. The groups asked Newsom to stop prison officials from holding parolees until they can be picked up by federal immigration officials. California passed a law in 2017 barring local and state agencies from cooperating with federal immigration authorities over those who have committed certain crimes, mostly misdemeanors, but critics said it doesn't apply to the state prison system.

+ No image +

Image description: Groups ask California governor to deter parolee deportations

+ +

Andrew Yang's campaign has gone 'mainstream'

+

Date: Sat, 02 Nov 2019 13:09:00 -0400

+ News link +

While some Democratic presidential candidates are cutting back on their campaigns, entrepreneur Andrew Yang is going all in, Politico reports.Yang, who as recently as April had fewer than 20 staff members on his campaign's payroll, now has 73 people running the show. "It's been like a startup but this startup has gone mainstream, about to go public, if you want to keep using the analogy," said Zach Graumann, Yang's campaign manager. "And frankly and I tell the team, 'we're just getting started.'"There's some big names now involved with the campaign, as well, lending more credence to Graumann's words. Devine, Mulvey, and Longabaugh -- a media consulting firm which worked for the 2016 campaign for Sen. Bernie Sanders (I-Vt.) but opted not to join forces again for 2020 over "differences in a creative vision" -- has shifted its services to the Yang campaign because he's "offering the most progressive ideas" among the Democratic candidates. They also don't think he's a flash in the pan."We wouldn't have signed on with somebody we didn't think was a serious candidate," Mark Longabaugh said. "Yang has a good deal of momentum and there's a great deal of grassroots enthusiasm for his candidacy and that's what's driven it this far." Yang still faces numerous hurdles to really get back in the running, but the campaign surely thinks it's possible. Read more at Politico.

+ No image +

Image description: Andrew Yang's campaign has gone 'mainstream'

+ +

Brazil police arrest man said to be one of world's most prolific human traffickers

+

Date: Fri, 01 Nov 2019 18:22:27 -0400

+ News link +

Brazilian federal police said they have arrested Saifullah Al-Mamun, born in Bangladesh and considered by authorities one of the world's most prolific human traffickers. In an operation conducted on Thursday after collaboration with U.S. Immigration and Customs Enforcement (ICE), Brazilian police arrested members of a group allegedly implicated in a large scheme of smuggling people into the United States. Several arrests were made in Sao Paulo, where Al-Mamun was living, and in three other Brazilian cities.

+ No image +

Image description: Brazil police arrest man said to be one of world's most prolific human traffickers

+ +

China Thinks a Nuclear Submarine Can Sink Half of An Aircraft Carrier Battle Group

+

Date: Fri, 01 Nov 2019 19:00:00 -0400

+ News link +

Beijing is trying to find out how to sink U.S. aircraft carriers. France might know how to stop them.

+ No image +

Image description: China Thinks a Nuclear Submarine Can Sink Half of An Aircraft Carrier Battle Group

+ +

Southwest Airlines flight attendant tells why she sued: 'This was not a joke'

+

Date: Fri, 01 Nov 2019 21:06:29 -0400

+ News link +

Renee Steinaker of Scottsdale, a 21-year veteran flight attendant with Southwest Airlines, speaks out about her lawsuit over a bathroom video.

+ No image +

Image description: Southwest Airlines flight attendant tells why she sued: 'This was not a joke'

+ +

Threat or chance? Israel eyes Lebanon protests closely

+

Date: Sat, 02 Nov 2019 12:39:39 -0400

+ News link +

Looking down on Lebanon from the Israeli-occupied Golan Heights, soldiers wonder whether the political turmoil in the neighbouring country will weaken arch-enemy Hezbollah or make it more dangerous. "There, Hezbollah is very, very strong," said Samuel Boujenah of the Israeli military, gazing at a valley where calm was recently shattered by clashes with the Iran-backed Shiite group.

+ No image +

Image description: Threat or chance? Israel eyes Lebanon protests closely

+ +

For Vietnam's 'Box People,' a Treacherous Journey

+

Date: Fri, 01 Nov 2019 15:20:33 -0400

+ News link +

LONDON -- Vietnamese smugglers call it the "CO2" route: a poorly ventilated, oxygen-deficient trip across the English Channel in shipping containers or trailers piled high with pallets of merchandise, the last leg of a perilous, 6,000-mile trek across Asia and into Western Europe.Compared to the other path -- the "VIP route," with its brief hotel stay and seat in a truck driver's cab -- the trip in a stuffy container can be brutal for what some Vietnamese refer to as "box people," successors to the "boat people" who left after the Vietnam War ended in 1975.Vietnamese migrants often wait for months in roadside camps in northern France before being sneaked into a truck trailer. Snakeheads, as the smugglers are known, beat men and sexually assault women, aid groups, lawyers and the migrants themselves say. People cocoon themselves in aluminum bags and endure hours in refrigerated units to reduce the risk of detection.That journey proved fatal last week for 39 people, many of them believed to be Vietnamese, who were found dead in a refrigerated truck container in southeastern England.As dangerous as the last leg of the migrant journey to Britain often is, those petrifying hours in a trailer are sometimes only a sliver of months if not years of harsh treatment -- first at the hands of organized trafficking gangs, and then under imperious bosses at nail salons and cannabis factories in Britain.But still they come, an estimated 18,000 Vietnamese paying smugglers for the journey to Europe every year at prices between 8,000 and 40,000 pounds, around $10,000 to $50,000.In Britain, where Brexit has discouraged the flow of labor from Eastern Europe, migrants see a country thirsty for low-wage workers, paying easily five times what they could earn at home and free of the onerous identity checks that make other European countries inhospitable.Vietnamese smugglers, for the most part, get their clients across to France and the Netherlands, where other gangs, often Kurdish and Albanian, or, as in the recent case, apparently Irish or Northern Irish, finish the job.Many come from Ha Tinh and Nghe An, two impoverished provinces in north-central Vietnam, and leave for Britain with their eyes wide open to the risks, analysts say. Having watched their neighbors suddenly refurbish their homes with pricier materials, or buy better cars, they crave the same sense of security for their family, whatever it might cost them.But when Britain fails to deliver on that promise, migrants can end up in a dreadful limbo, kept from seeking help by the country's harsh immigration system and living in the grip of a shadowy system of traffickers and the employers who rely on them."I always encourage them, 'Stay at home,'" the Rev. Simon Thang Duc Nguyen, the parish priest at a Catholic church in East London attended by many migrant parishioners, said this week. "Even though you are poor, you have your life. Here, you have money, but you lose your life."Not all the 20,000 to 35,000 undocumented Vietnamese migrants estimated to be living in Britain have horror stories to tell. Many migrants, some experts say, put up with the travails of working in Britain for the real chance of a payday."My research has shown stories of migrants are not all about exploitation and not all about being trafficked," said Tamsin Barber, a lecturer at Oxford Brookes University. "People are usually coming here agreeing to take high risks to work illegally and potentially earn large amounts of money in the cannabis trade."But more vulnerable Vietnamese are also being trafficked to Britain, with the authorities receiving five times as many referrals last year as in 2012.Once family and friends have scraped together enough money, the odyssey may begin with a trip to China to pick up forged travel documents. That is how many of the dozens of people who died in the truck began their journey, said Anthony Dang Huu Nam, a Catholic priest serving a church in the town of Yen Thanh, where he said dozens of the victims were from.On the way from China to Russia to Western Europe, one of the most punishing stretches is the walk through Belarusian forests to the Polish border. In a 2017 French survey of Vietnamese migrants, a man identified as Anh, 24, told researchers that he and five other men, led by a smuggler, were repeatedly arrested in Belarus, only to be released at the Russian border to try again. When they finally succeeded, they were met by a truck waiting on the Polish side."We were cold," the survey quoted him as saying. "We didn't eat anything for two days. We drank water from melted snow."Other routes, choreographed down to the minute, land migrants in European airports with recycled visas and travel documents, according to "Precarious Journeys," a recent report from ECPAT, an anti-child-trafficking organization, and other groups. As a precaution, smugglers in Vietnam often tell people to arrive at airport check-in desks 10 minutes before they close, for instance, so agents do not have enough time to inspect paperwork.The trip can take months, even years. Nguyen Dinh Luong, 20, one of the migrants believed to have died last week, wanted to go to France to find work and support his siblings, seven of them in all, his father, Nguyen Dinh Gia, said. But in Russia, he overstayed his tourist visa and was confined to his house for six months. Then he moved to Ukraine and France, where he found a job as a waiter, before deciding to go to Britain for work in a nail salon.Trips are frequently interrupted when migrants are detained or run out of money. Some migrants are forced to work along the way, in garment factories in Russia or in restaurants across Europe. Some women sell sex, researchers say.Smugglers often keep people in the dark about where they are as a way of exerting total control. In a 2017 case, 16 Vietnamese people picked up by the Ukrainian authorities in Odessa thought they were in France.When migrants disobey their smugglers, the blowback can be fierce."They cannot be discovered by the police, so they have to keep the discipline," said Nguyen, the priest in London. "If you do not behave, you can be punished by beatings, or for women be abused sexually."And once they arrive in Britain, they are often in for a rude awakening. Sulaiha Ali, a human rights lawyer, said migrants were sometimes promised legitimate work in a restaurant or on a construction site, only to be forced to work as "gardeners" in a house converted into illegal cannabis growing operations. Locked inside the house for days at a time and often living 15 to a room, workers face the risk of fire from tampered electrical wiring and health problems from noxious chemicals.In the nail salons where many Vietnamese find work, salon bosses can control every aspect of workers' lives, a power that can breed exploitation, though researchers said some bosses also become migrants' surrogate parents, cooking for them and providing a place to stay.When the police raid places housing migrants, they can often ignore signs of forced work or human trafficking and send migrants into deportation proceedings instead, migrant advocates say. "The emphasis, as soon as it's established someone doesn't have any identification documents, is not trying to establish whether they've been exploited," Ali said. "It's on, 'Can we justify detention? Can we get them removed back to their countries?'"That threat of deportation, whatever someone's circumstances, is a cudgel for trafficking gangs to keep migrants under their sway."There's a serious distrust of authorities, a lot of the time because traffickers have embedded that in victims' minds: 'You don't have official documents,' or, 'You're going to be deported or imprisoned,'" said Firoza Saiyed, a human rights lawyer. "It's another thing that makes disclosure really difficult."Older Vietnamese migrants in Britain, many of whom arrived after the Vietnam War, are separated by a wide cultural gulf from the newer arrivals, but they have still proved to be a crucial support, ever more so in the last week.Nguyen, who left Vietnam in 1984, said he had been fielding calls from families in Vietnam, wanting to know if he could tell them whether their children were in the trailer."The mother, the father, all called me in tears," he said. "I couldn't bear hearing the words. You have to borrow a lot of money for this journey, and now you had hoped your daughter, your son can be successful, and that you can have some money to pay the debt. Now, it's hopeless -- nothing."He went on, "Nothing is OK, as long as they are arrested or in prison. It's OK, they survived. But now they lost two things. They lost hope and they lost their lives. Nothing."This article originally appeared in The New York Times.(C) 2019 The New York Times Company

+ No image +

Image description: For Vietnam's 'Box People,' a Treacherous Journey

+ +

Readers write: A gun owner’s experience with the NRA, and more

+

Date: Sat, 02 Nov 2019 02:00:04 -0400

+ News link +

Assault rifles, bump stocks, the Second Amendment, and more: Readers discuss their opinions on the NRA and the state of gun ownership in America.

+ No image +

Image description: Readers write: A gun owner’s experience with the NRA, and more

+ +

Trump says he knows all about the new Isis leader - but experts insist 'The Scholar' remains a mystery

+

Date: Fri, 01 Nov 2019 18:21:49 -0400

+ News link +

Days after Isis leader Abu Bakr Al-Baghdadi was killed in a raid by US special forces at a compound in Syria, Donald Trump tweeted that “we know exactly” who the replacement is as head of the terrorist group.Abu Ibrahim al-Hashimi al-Qurashi has been named as Baghdadi’s successor in an audio message released by the group on Thursday.

+ No image +

Image description: Trump says he knows all about the new Isis leader - but experts insist 'The Scholar' remains a mystery

+ +

New execution date set for Georgia inmate

+

Date: Fri, 01 Nov 2019 18:04:08 -0400

+ News link +

Georgia officials set a new execution date Friday for a death row inmate two days after he was granted a temporary reprieve because of a legal technicality. Ray Jefferson Cromartie, 52, is scheduled to die by lethal injection Nov. 13 at the state prison in Jackson. Georgia Corrections Commissioner Timothy Ward set the execution for the first date of a seven-day window ordered Friday by a Superior Court judge in Thomas County.

+ No image +

Image description: New execution date set for Georgia inmate

+ +

Iraq’s Top Cleric Warns Iran to Stay Out

+

Date: Sat, 02 Nov 2019 02:00:02 -0400

+ News link +

(Bloomberg Opinion) -- To understand what Iraq’s Grand Ayatollah Ali al-Sistani is saying, you have to translate him twice: first from Arabic to English, then from politesse to plain-speak. In the first translation, a key passage from his Friday sermon in the holy city of Karbala went like this: “No person or group, no side with a particular view, no regional or international actor may seize the will of the Iraqi people and impose its will on them.”The second translation: “Back off, Khamenei!”That is how it would have sounded to Sistani’s audience in Karbala, where it was read out for the ailing octogenarian by an aide; in the streets of Baghdad and other Iraqi cities, where a bloody crackdown on largely peaceful protesters has taken more than 200 lives; in the Iraqi parliament, where lawmakers are negotiating a response to the demonstrations; and in Tehran, where Supreme Leader Ali Khamenei has been struggling to respond to the rising anti-Iran sentiment that undergirds uprisings in Iraq and Lebanon.Khamenei has unleashed Iran’s proxies in the streets — Hezbollah in Lebanon, and Shiite militias in Iraq — to intimidate the protesters. He has also dispatched his chief enforcer, the Iranian Revolutionary Guards Corps commander Qassem Soleimani, to the Iraqi parliament, to rally Shiite parties behind the feckless Prime Minister Adel Abdul-Mahdi.But if anything, these responses will only fan the anger in the streets against Iranian interference in Iraqi and Lebanese politics. Not even Khamenei, who is practiced in the art of ignoring popular resentment, can have failed to notice the anti-Iran slogans echoing through Iraqi cities. Nor will it have escaped his attention that the loudest chanting comes from Iraqi Shiites, a community he expects to favor his Islamic Republic.  The Supreme Leader’s anxiety was palpable in his tweets on Thursday, when he tried to blame Tehran’s usual suspects — “the U.S., the Zionist regime, some Western countries, and the money of some reactionary countries” — for the protests.Sistani’s sermon was a riposte, designed to set Khamenei right. Although born in Iran, he is no fan of Khamenei and other hardliners in Tehran, preferring the likes of President Hassan Rouhani.Iraq’s Grand Ayatollah has been in a quandary over the protests. Every Iraqi government since 2005 has had his personal imprimatur: His word has united factions among the Shiite majority. Prime Minister Abdul-Mahdi, too, has his blessing. As such, Sistani is complicit in the corruption and ineptitude that have brought the Iraqis into the streets.His early pronouncements on the protests vacillated between bromides against corruption and calls on the protesters to abjure violence. But as the demonstrations have persisted, Sistani has grown progressively more critical of the government, blaming it for the violence.His Friday sermon puts him squarely on the protesters’ side. In addition to interfering Iranians, the leaders who have long benefited from his validation came under attack. As the politicians in Baghdad struggle to devise a response that will satisfy angry Iraqis, the so-called sage of Najaf warned that Iraqis have a right to a “referendum on the constitution” to change how they are governed. By invoking the prospect of a referendum, Sistani may have given the protesters a new focus for their energies, and Iraqi politicians a way to break the toxic pattern of inconclusive elections and compromise prime ministers. Much will depend on the reaction of another cleric, Moqtada al-Sadr, who has also taken the protesters’ side — even joining them in the streets — and has called for Abdul-Mahdi’s removal.Sadr, frequently described as a firebrand, has little in common with the preternaturally placid Sistani. But the prospect of the protests being led by one and backed by the other is certain to rattle turbaned heads in Tehran. And if Sistani and Sadr were to throw their combined weight behind demands for a referendum — and who knows, maybe even inspire emulation by the Lebanese — that might be the stuff of Khamenei’s nightmares.To contact the author of this story: Bobby Ghosh at aghosh73@bloomberg.netTo contact the editor responsible for this story: James Gibney at jgibney5@bloomberg.netThis column does not necessarily reflect the opinion of the editorial board or Bloomberg LP and its owners.Bobby Ghosh is a columnist and member of the Bloomberg Opinion editorial board. He writes on foreign affairs, with a special focus on the Middle East and the wider Islamic world.For more articles like this, please visit us at bloomberg.com/opinion©2019 Bloomberg L.P.

+ No image +

Image description: Iraq’s Top Cleric Warns Iran to Stay Out

+ +

UPDATE 1-El Salvador expels Venezuelan diplomats from the country

+

Date: Sun, 03 Nov 2019 01:01:06 -0500

+ News link +

El Salvador said on Saturday it had ordered Venezuela's diplomats to leave the Central American country within 48 hours, arguing that the decision was in line with its position that Venezuelan President Nicolas Maduro is illegitimate. In a statement, the government said President Nayib Bukele recognized opposition leader Juan Guaido as Venezuela's interim president until free elections were held in the South American country.

+ No image +

Image description: UPDATE 1-El Salvador expels Venezuelan diplomats from the country

+ +

Trump's Naval Dream Seems Sunk: America Can't Afford a 355 Ship Navy

+

Date: Sat, 02 Nov 2019 15:30:00 -0400

+ News link +

Like a Christmas wish list, the Navy wants a fleet of 355 ships. It just can’t afford it.

+ No image +

Image description: Trump's Naval Dream Seems Sunk: America Can't Afford a 355 Ship Navy

+ +

Jury finds Chicago gang member guilty in the murder of 9-year-old Tyshawn Lee

+

Date: Fri, 01 Nov 2019 11:20:49 -0400

+ News link +

A jury found gang member Drwight Boone-Doty guilty Thursday in the murder of Tyshawn Lee, a 9-year-old boy was shot and killed.

+ No image +

Image description: Jury finds Chicago gang member guilty in the murder of 9-year-old Tyshawn Lee

+ +

Airbnb bans 'party houses' after deadly US shooting

+

Date: Sat, 02 Nov 2019 20:52:21 -0400

+ News link +

Airbnb's boss announced Saturday that the online platform, which offers private homes for rent for short periods, is banning "party houses" after a deadly shooting at a Halloween event in California. Five people were killed and others wounded in a Thursday night shooting in Orinda, California, in a house that had been rented on Airbnb. "Starting today, we are banning 'party houses' and we are redoubling our efforts to combat unauthorized parties and get rid of abusive host and guest conduct, including conduct that leads to the terrible events we saw in Orinda," Airbnb co-founder and CEO Brian Chesky said on Twitter.

+ No image +

Image description: Airbnb bans 'party houses' after deadly US shooting

+ +

House Intel Chair Schiff says impeachment transcripts could come next week

+

Date: Fri, 01 Nov 2019 19:52:44 -0400

+ News link +

Adam Schiff, the chairman of the House Intelligence Committee, said Friday that the panels investigating impeachment could begin releasing transcripts of closed-door witness depositions early next week, part of an effort to move the investigation into public view and allow Americans to evaluate the evidence against President Trump.

+ No image +

Image description: House Intel Chair Schiff says impeachment transcripts could come next week

+ +

The Most Cringe-Worthy 90s Internet Guides That We Can't Stop Watching

+

Date: Sat, 02 Nov 2019 12:00:00 -0400

+ News link +

+ No image +

Image description: The Most Cringe-Worthy 90s Internet Guides That We Can't Stop Watching

+ +

Experts on Trump's conduct: 'Plainly an abuse of power, plainly impeachable'

+

Date: Sat, 02 Nov 2019 00:00:11 -0400

+ News link +

Republicans may argue Trump’s actions were not impeachable – but scholars say it’s a solid example of a high crimeDonald Trump at the White House in Washington DC this week. Photograph: Jim Lo Scalzo/EPAWas what he did really so bad? And even if it was bad – was it truly impeachable?As Democrats hit the gas on impeachment this week, Donald Trump exhorted Republicans to defend him on the substance of his actions in the Ukraine scandal, instead of sniping about the process.“Rupublicans [sic],” Trump tweeted “go with Substance and close it out!”Trump’s misconduct, critics say, includes using the power of the presidency to solicit foreign intervention in the 2020 US election, by trying to force Ukraine to help conduct a political hit on Joe Biden.Trump denies all wrongdoing and most of his defenders do too. But there is a (slightly) subtler version of Trump defense that Republicans are trying out which says that while Trump’s conduct has not been irreproachable, neither has it been impeachable.The argument, according to constitutional experts and historians of impeachment, is not a strong one. In fact, Trump’s conduct, according to analysts interviewed by the Guardian, hews more closely than any previous conduct by any other president to what scholars conceive as a concrete example of impeachable behavior.Frank O Bowman III, author of High Crimes and Misdemeanors: A History of Impeachment for the Age of Trump and a professor at the University of Missouri school of law, said that Trump’s having extorted actions with no legitimate US national purpose from a foreign country that is “literally at risk of losing its political and territorial independence” without US support was impeachable.“It’s plainly an abuse of power, and it’s plainly impeachable,” Bowman said.“I think these are quite clearly, precisely the type of high crimes and misdemeanors that the founders not only feared but actually discussed at the constitutional convention,” said Jeffrey A Engel, co-author of Impeachment: An American History and director of the center for presidential history at Southern Methodist University.“The high crime is the trade – give me dirt on Joe Biden and his son, and I’ll give you in return military aid and help with your economy – I think that is certainly impeachable,” said Corey Brettschneider, author of The Oath and the Office: A Guide to the Constitution for Future Presidents and a professor of constitutional law at Brown University. Many are finding defending Trump difficult at the moment. Republican lawmakers spent Thursday fleeing reporters trying to ask the question, “Do you think it’s OK for the president to pressure foreign governments to interfere in our elections?”. One lawmaker even headbutted a camera rather than reply.The reason Trump’s alleged conduct is plainly impeachable, historians say, has to do with US impeachment precedent and with what the authors of the US constitution meant when they provisioned impeachment for “high crimes and misdemeanors”.“If we look at history both British and American – and it’s important to look at British history, because our Framers were of course rebel Englishmen and they adopted the phrase ‘high crimes and misdemeanors’ in full recognition of the fact that that was a parliamentary term of art, and that therefore they were adopting to some degree, by reference, previous usages of that term – all of that leads to really the inescapable conclusion that one of the grounds for impeachment has always been abuse of power,” said Bowman.While Trump and his defenders reject the allegation that he has any divided loyalties, critics have pointed out that his actions in office, including his withholding of military aid from Ukraine, have advanced Russian interests – and his own personal interests, when it comes to soliciting election assistance.The founders drafted the impeachment clause specifically with problematic foreign loyalties in mind, Engel said.“Having just gone through the process of a divisive revolution, where it was literally neighbor against neighbor and sometimes even brother against brother split over loyalty,” Engel said, “there was a great deal of concern about just simply making sure that the people who were in charge generally had America’s best interests at heart. Because people had so many friends over the course of their lives that did not – or at least that chose France or that chose Britain.”In an Oval Office interview on Thursday, Trump compared his conduct favorably with the last two presidents to face impeachment proceedings, Richard Nixon and Bill Clinton.“Everybody knows I did nothing wrong,” Trump told the Washington Examiner. “Bill Clinton did things wrong; Richard Nixon did things wrong. I won’t go back to [Andrew] Johnson because that was a little before my time. But they did things wrong. I did nothing wrong.”Trump’s analysis of his own behavior does not stand up to scrutiny, scholars said.“Obviously the degree of severity is almost immeasurably different,” said Bowman. “With respect to Clinton, yes you had a violation of law, in the sense of his having committed perjury, but he committed perjury in order to conceal a private, consensual sexual affair. Now that’s discreditable, it’s also criminal – he got disbarred as a result of doing it.“But in terms of the interests of the nation, not even remotely comparable.“In this case, Trump is literally holding the independence of another country hostage to his own political interests. Not only is that contemptible, and in many ways more contemptible than what Nixon did, but I think it’s also true, and we’ve heard a lot of testimony about this over the past couple of weeks, that what he was doing is endangering an American policy objective, the whole framework of containment of Russian expansionism, the bedrock of our policy in eastern Europe for the last 70 years.“It’s far worse, in that regard, I think, than what Nixon did.”Engel said the “Nixon case is very instructive” in judging the integrity of Trump’s defensive wall in the Republican members of Congress.“The Republicans by and large backed Nixon right up until the moment they didn’t,” Engel said. “Which is to say, when new information came out, in his case specifically the smoking gun tape, that nobody in good conscience could refute, his support eroded literally overnight.“And I think we will see potentially a similar dynamic, at least that dynamic is set up, that there’s no particular reason at this moment that Republicans feel a need to break with their party.“But history suggests that they may at some point open the newspaper and realize they have no choice but to switch sides.”

+ No image +

Image description: Experts on Trump's conduct: 'Plainly an abuse of power, plainly impeachable'

+ +

Oklahoma parole board OKs largest-ever US mass commutation

+

Date: Fri, 01 Nov 2019 17:15:10 -0400

+ News link +

Oklahoma will release more than 400 inmates after a state panel on Friday approved what officials say is the largest single-day mass commutation in U.S. history. The Oklahoma Pardon and Parole Board unanimously approved the commutations, and Gov. Kevin Stitt said his office would process the recommendations for final approval. The board considered 814 cases and recommended 527 inmates for commutation.

+ No image +

Image description: Oklahoma parole board OKs largest-ever US mass commutation

+ +

Iran unveils new anti-US murals at former embassy

+

Date: Sat, 02 Nov 2019 07:58:09 -0400

+ News link +

Iran on Saturday unveiled new anti-American murals on the walls of the former US embassy as Tehran prepares to celebrate the 40th anniversary of the storming of what it labels the "den of spies". The new murals -- mainly painted in white, red and blue, the colours of the US flag -- were unveiled by Major General Hossein Salami, the head of Iran's Revolutionary Guards, at the former mission turned museum. A third showed the American Global Hawk drone that was shot down by Iran in June over the Strait of Hormuz, with bats flying out of it.

+ No image +

Image description: Iran unveils new anti-US murals at former embassy

+ + + + \ No newline at end of file diff --git a/news_feed/news.pdf b/news_feed/news.pdf index c4037e099877825d95d60417a99c92bd441b95f4..085b3843c8518ad4068c4e8dba7e641454957925 100644 GIT binary patch delta 102781 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 delta 117314 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≺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

lvc1>gnRR(z13cq{x~PCD5O(!3$YDTmj?uRZkYy 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 XY#glg^a;R+!4W6|Mn(}CQG)*m4GAje From 9f2a05c8eb8ec3396c101ef7442446c4bee83645 Mon Sep 17 00:00:00 2001 From: vadbeg Date: Mon, 4 Nov 2019 16:08:49 +0300 Subject: [PATCH 09/11] Simple unittests where added. Minor expressions where catched. --- news_feed/format_converter.py | 12 +- news_feed/news.html | 534 +++++++------- news_feed/news.pdf | Bin 187735 -> 187841 bytes news_feed/news_cash/20190607.csv | 20 - news_feed/news_cash/20190712.csv | 39 - news_feed/news_cash/20190731.csv | 20 - news_feed/news_cash/20190918.csv | 17 - news_feed/news_cash/20190924.csv | 20 - news_feed/news_cash/20191015.csv | 58 -- news_feed/news_cash/20191021.csv | 39 - news_feed/news_cash/20191022.csv | 20 - news_feed/news_cash/20191026.csv | 20 - news_feed/news_cash/20191029.csv | 477 ------------- news_feed/news_cash/20191030.csv | 1136 +----------------------------- news_feed/news_cash/20191031.csv | 745 -------------------- news_feed/news_cash/20191101.csv | 5 + news_feed/news_cash/20191104.csv | 13 + news_feed/rss_reader.py | 83 ++- news_feed/rss_reader_unittest.py | 54 ++ setup.py | 2 +- 20 files changed, 399 insertions(+), 2915 deletions(-) delete mode 100644 news_feed/news_cash/20190607.csv delete mode 100644 news_feed/news_cash/20190712.csv delete mode 100644 news_feed/news_cash/20190731.csv delete mode 100644 news_feed/news_cash/20190924.csv delete mode 100644 news_feed/news_cash/20191015.csv delete mode 100644 news_feed/news_cash/20191021.csv delete mode 100644 news_feed/news_cash/20191022.csv delete mode 100644 news_feed/news_cash/20191026.csv delete mode 100644 news_feed/news_cash/20191029.csv delete mode 100644 news_feed/news_cash/20191031.csv create mode 100644 news_feed/news_cash/20191101.csv create mode 100644 news_feed/news_cash/20191104.csv create mode 100644 news_feed/rss_reader_unittest.py diff --git a/news_feed/format_converter.py b/news_feed/format_converter.py index a15e052..dfab543 100644 --- a/news_feed/format_converter.py +++ b/news_feed/format_converter.py @@ -289,14 +289,14 @@ def output(self, path): feed = NewsReader('https://news.yahoo.com/rss/', limit=None, cashing=False) it = feed.items it = it - +# # pdf = PdfNewsConverter(it) # # pdf.add_all_news() # pdf.output('news.pdf', 'F') -# print(pdf.items) - -html = HTMLNewsConverter(it) - -html.output('news.html') +# +# html = HTMLNewsConverter(it) +# +# html.output('news.html') +feed.fancy_output() \ No newline at end of file diff --git a/news_feed/news.html b/news_feed/news.html index b2a770b..127cc4e 100644 --- a/news_feed/news.html +++ b/news_feed/news.html @@ -5,13 +5,6 @@

Yahoo News - Latest News & Headlines

-

Court ruling could throw impeachment timeline into disarray

-

Date: Fri, 01 Nov 2019 17:22:05 -0400

-
News link -

Even as House Democrats on Thursday ratified an impeachment resolution against President Trump, a federal judge has potentially slowed the brisk pace of the inquiry by declining to rule on whether a key witness needed to testify before the House of Representatives.

- No image -

Image description: Court ruling could throw impeachment timeline into disarray

-

2020 Vision: If a single speech can shake up the Democratic race, it might happen in Iowa

Date: Fri, 01 Nov 2019 15:07:03 -0400

News link @@ -19,26 +12,26 @@

2020 Vision: If a single speech can shake up the Democratic race, it might h No image

Image description: 2020 Vision: If a single speech can shake up the Democratic race, it might happen in Iowa

-

Ex-officer gets 12 years in naked man's fatal shooting

-

Date: Fri, 01 Nov 2019 19:04:14 -0400

- News link -

A former Georgia police officer convicted of aggravated assault and other crimes in the fatal shooting of an unarmed, naked man was sentenced Friday to 12 years in prison. Robert "Chip" Olsen was responding to a call of a naked man behaving erratically at an Atlanta-area apartment complex in March 2015 when he killed 26-year-old Anthony Hill, a black Air Force veteran who'd been diagnosed with bipolar disorder and PTSD. Olsen, who is white, was convicted of one count of aggravated assault, two counts of violating his oath of office and one count of making a false statement.

- No image -

Image description: Ex-officer gets 12 years in naked man's fatal shooting

+

Thanks to Trump, the U.S. hasn't admitted a single refugee since September

+

Date: Fri, 01 Nov 2019 20:10:06 -0400

+ News link +

October was the first full month in at least 18 years in which the United States did not admit any refugees.

+ No image +

Image description: Thanks to Trump, the U.S. hasn't admitted a single refugee since September

-

California wildfires: Climate change driving ‘horror and the terror’ of devastating blazes, say scientists

-

Date: Sat, 02 Nov 2019 12:52:49 -0400

- News link -

The words from California’s former governor could barely have been more stark.“I said it was the new normal a few years ago,’’ said Jerry Brown. “This is serious, but this is only the beginning. This is only a taste of the horror and the terror that will occur in decades.”

- No image -

Image description: California wildfires: Climate change driving ‘horror and the terror’ of devastating blazes, say scientists

+

Vietnam arrests two in UK truck death investigation

+

Date: Fri, 01 Nov 2019 11:31:35 -0400

+ News link +

Vietnam police have arrested two people for trafficking in connection with the death of 39 migrants whose bodies were found in a truck in Britain, many of them feared to be Vietnamese. The move comes after British police arrested four people over the tragedy and are now seeking to question two brothers from Northern Ireland who have links to the road-haulage and shipping business. The victims were initially identified by British police as Chinese, but many are now believed to be Vietnamese after families in central Vietnam said their loved ones had not been heard from.

+ No image +

Image description: Vietnam arrests two in UK truck death investigation

-

Maria Fire broke out minutes after utility company re-energized high-voltage power line

-

Date: Sat, 02 Nov 2019 14:51:27 -0400

- News link -

Southern California Edison says it turned power back on minutes before the Maria Fire erupted nearby in Ventura County

- No image -

Image description: Maria Fire broke out minutes after utility company re-energized high-voltage power line

+

Finally, some good news for California: Infamous Diablo and Santa Ana winds will die down soon

+

Date: Fri, 01 Nov 2019 11:54:01 -0400

+ News link +

Santa Ana and Diablo winds, the pattern responsible for frequent and strong wind events in California, are forecast to end soon.

+ No image +

Image description: Finally, some good news for California: Infamous Diablo and Santa Ana winds will die down soon

Hollow building becomes center of Iraq's uprising

Date: Sat, 02 Nov 2019 15:41:37 -0400

@@ -47,6 +40,13 @@

Hollow building becomes center of Iraq's uprising

No image

Image description: Hollow building becomes center of Iraq's uprising

+

Guard linked to beating had been subject of complaints

+

Date: Sat, 02 Nov 2019 15:49:59 -0400

+ News link +

A guard accused in a lawsuit of beating a female inmate so severely she was left paralyzed had previously been accused of trading cigarettes for sex, insubordination, harassing inmates and other actions at a Florida prison, according to a news report. Despite the long history of accusations, the Lowell Correctional Institution in Ocala never fired Keith Turner and he had been promoted to lieutenant a few years ago, The Miami Herald reported . Cheryl Weimar said in a lawsuit that she was nearly beaten to death by four guards in August at the prison.

+ No image +

Image description: Guard linked to beating had been subject of complaints

+

Who Wore It Better? 10 Names Shared by Automakers

Date: Sat, 02 Nov 2019 08:20:00 -0400

News link @@ -54,40 +54,19 @@

Who Wore It Better? 10 Names Shared by Automakers

No image

Image description: Who Wore It Better? 10 Names Shared by Automakers

-

Toll in Philippine quakes climbs to 21

-

Date: Sun, 03 Nov 2019 02:07:41 -0500

- News link -

The death toll in two powerful quakes that struck the southern Philippines in the past week has risen to 21, authorities said Sunday, as survivors struggled to access food and water. The 6.6-magnitude and 6.5-magnitude quakes hit the island of Mindanao two days apart, destroying buildings and displacing tens of thousands of residents. The quakes also left 432 residents injured with two people still missing, it added.

- No image -

Image description: Toll in Philippine quakes climbs to 21

+

Hezbollah TV channel says Twitter accounts suspended

+

Date: Sat, 02 Nov 2019 15:59:46 -0400

+ News link +

The television station of Lebanon's powerful Shiite movement Hezbollah protested Saturday that most of its Twitter accounts had been suspended. Al-Manar accused the US-based social media platform of giving in to "political pressures". "There is no place on Twitter for illegal terrorist organisations and violent extremist groups," a Twitter spokesperson told AFP.

+ No image +

Image description: Hezbollah TV channel says Twitter accounts suspended

-

A Louisiana woman has been arrested for selling $20 fake doctor's notes to students trying to skip class

-

Date: Fri, 01 Nov 2019 09:55:04 -0400

- News link -

The woman's master plan unraveled once the physician whose name was being used to sign off on the notes received complaints from the school board.

- No image -

Image description: A Louisiana woman has been arrested for selling $20 fake doctor's notes to students trying to skip class

- -

Have Kentuckians finally had enough of Mitch McConnell?

-

Date: Fri, 01 Nov 2019 13:40:54 -0400

- News link -

A recent poll shows that Senate Majority Leader Mitch McConnell, the president’s most stolid defender, is down to an 18 percent job approval rating in Kentucky. Only 37 percent in a recent Public Policy Poll said they would vote for him again next year.

- No image -

Image description: Have Kentuckians finally had enough of Mitch McConnell?

- -

Thanks to Trump, the U.S. hasn't admitted a single refugee since September

-

Date: Fri, 01 Nov 2019 20:10:06 -0400

- News link -

October was the first full month in at least 18 years in which the United States did not admit any refugees.

- No image -

Image description: Thanks to Trump, the U.S. hasn't admitted a single refugee since September

- -

Louisiana man gets probation in whooping crane death

-

Date: Fri, 01 Nov 2019 19:08:32 -0400

- News link -

A Louisiana man was sentenced to probation Friday for killing one of the state's oldest whooping cranes . Gilvin P. Aucoin Jr., of Ville Platte, shot the endangered whooping crane in July 2018 in Evangeline Parish. In a hearing before U.S. Magistrate Judge Carol B. Whitehurst, Aucoin changed his plea to guilty for a misdemeanor violation of the International Migratory Bird Treaty Act.

- No image -

Image description: Louisiana man gets probation in whooping crane death

+

Iran, Please Don't Develop a Stealth Fighter

+

Date: Sat, 02 Nov 2019 05:01:00 -0400

+ News link +

It might be nice to have one, but it'll bring nothing but trouble.

+ No image +

Image description: Iran, Please Don't Develop a Stealth Fighter

Ken Cuccinelli Calls Debbie Wasserman Schultz a Witch: She ‘Got on Her Broom and Left’

Date: Fri, 01 Nov 2019 11:37:16 -0400

@@ -96,19 +75,56 @@

Ken Cuccinelli Calls Debbie Wasserman Schultz a Witch: She ‘Got on Her Bro No image

Image description: Ken Cuccinelli Calls Debbie Wasserman Schultz a Witch: She ‘Got on Her Broom and Left’

-

This time, Southern California was prepared for wildfires. Here's how countless homes were saved

-

Date: Sat, 02 Nov 2019 12:47:36 -0400

- News link -

The winds roared again but Los Angeles and other Southern California cities were prepared as firefighters saved thousands of homes.

- No image -

Image description: This time, Southern California was prepared for wildfires. Here's how countless homes were saved

+

Greta Thunberg says meeting with Trump 'would be a waste of time'

+

Date: Fri, 01 Nov 2019 10:58:43 -0400

+ News link +

The Swedish teenage climate activist says she wouldn’t want to meet with the president even if given the opportunity.

+ No image +

Image description: Greta Thunberg says meeting with Trump 'would be a waste of time'

-

Teachers strike taught Chicago's new mayor tough lessons -analysts

-

Date: Fri, 01 Nov 2019 15:27:56 -0400

- News link -

Chicago Mayor Lori Lightfoot made strategic errors in the first major fight of her tenure, an 11-day teachers' strike, but may have learned lessons that will prove useful as she confronts immense city budget challenges, political observers said. Lightfoot, 57, was elected in convincing fashion to become Chicago's first black woman mayor in April, when she vaulted to victory on promises to dismantle the city's corrupt political machine and reform the city's school district.

- No image -

Image description: Teachers strike taught Chicago's new mayor tough lessons -analysts

+

Saudi Aramco: from 'Prosperity Well' to energy behemoth

+

Date: Sun, 03 Nov 2019 04:45:44 -0500

+ News link +

From its beginnings in 1938 when it first struck oil with the aptly named "Prosperity Well", Saudi Arabia's energy giant Aramco has delivered unimaginable riches to the desert kingdom. Aramco's plans to list on the Saudi stock exchange, in what could be the world's largest IPO, represents a "historic moment" in the firm's evolution, its chairman Yasir al-Rumayyan said Sunday. "Aramco will be a source of greater national pride and admiration.

+ No image +

Image description: Saudi Aramco: from 'Prosperity Well' to energy behemoth

+ +

Maria Fire broke out minutes after utility company re-energized high-voltage power line

+

Date: Sat, 02 Nov 2019 14:51:27 -0400

+ News link +

Southern California Edison says it turned power back on minutes before the Maria Fire erupted nearby in Ventura County

+ No image +

Image description: Maria Fire broke out minutes after utility company re-energized high-voltage power line

+ +

Bill O’Reilly: 'If Joe Biden is elected president ... he has to be impeached'

+

Date: Fri, 01 Nov 2019 11:19:45 -0400

+ News link +

Disgraced former Fox News host Bill O’Reilly shared his dream of what should happen if Joe Biden were to win the Democratic nomination and then defeat President Trump in 2020. + +“If Joe Biden is elected president, the day after he’s sworn in, he has to be impeached," said O'Reilly.

+ No image +

Image description: Bill O’Reilly: 'If Joe Biden is elected president ... he has to be impeached'

+ +

Georgia ex-policeman sentenced to 12 years in prison in shooting of unarmed black man

+

Date: Fri, 01 Nov 2019 16:44:31 -0400

+ News link +

A former Georgia police officer was sentenced on Friday to 12 years in prison after his conviction in the fatal shooting of an unarmed black man outside an Atlanta apartment in March 2015. Robert "Chip" Olsen, a 57-year-old white man, was convicted last month of aggravated assault and violating his oath of office but found not guilty of murder in the killing of 26-year-old Anthony Hill. Before the sentencing, members of Hill's family urged Dekalb County Superior Court Judge LaTisha Dear Jackson to sentence Olsen to the maximum penalty of 30 years behind bars.

+ No image +

Image description: Georgia ex-policeman sentenced to 12 years in prison in shooting of unarmed black man

+ +

New execution date set for Georgia inmate

+

Date: Fri, 01 Nov 2019 18:04:08 -0400

+ News link +

Georgia officials set a new execution date Friday for a death row inmate two days after he was granted a temporary reprieve because of a legal technicality. Ray Jefferson Cromartie, 52, is scheduled to die by lethal injection Nov. 13 at the state prison in Jackson. Georgia Corrections Commissioner Timothy Ward set the execution for the first date of a seven-day window ordered Friday by a Superior Court judge in Thomas County.

+ No image +

Image description: New execution date set for Georgia inmate

+ +

California wildfires: Climate change driving ‘horror and the terror’ of devastating blazes, say scientists

+

Date: Sat, 02 Nov 2019 12:52:49 -0400

+ News link +

The words from California’s former governor could barely have been more stark.“I said it was the new normal a few years ago,’’ said Jerry Brown. “This is serious, but this is only the beginning. This is only a taste of the horror and the terror that will occur in decades.”

+ No image +

Image description: California wildfires: Climate change driving ‘horror and the terror’ of devastating blazes, say scientists

Low-Yield Nuclear Weapons Won’t End the World

Date: Fri, 01 Nov 2019 20:00:00 -0400

@@ -117,41 +133,6 @@

Low-Yield Nuclear Weapons Won’t End the World

No image

Image description: Low-Yield Nuclear Weapons Won’t End the World

-

Exxon, Chevron Begin Pushing Back Against Warren’s Fracking Ban

-

Date: Fri, 01 Nov 2019 15:53:48 -0400

- News link -

(Bloomberg) -- America’s two biggest oil companies are starting to push back against the fracking ban touted by the leading candidates for the Democratic presidential nomination, which may become one of the most consequential flashpoints for energy markets during the election campaign.Exxon Mobil Corp. and Chevron Corp. executives spoke out publicly against the proposals for the first time on Friday, saying they would shift profits from crude production from the U.S. to other countries, and may increase prices for consumers while doing nothing to reduce oil demand or greenhouse-gas emissions.It’s a line of attack that’s likely to feature heavily in debates in the year ahead as the energy industry and Republicans seek to counter the Democratic Party’s green wing. To be sure, whoever gets elected next year will find it difficult to end fracking. Presidential powers to enact a ban only extend to federal lands, something that would be certain to face immediate legal challenges. A wider restriction would need to go through Congress.“Any efforts to ban fracking or restrict supply will not remove demand for the resource,” Neil Hansen, Exxon’s vice president of investor relations, said on a conference call with analysts. “If anything it will shift the economic benefit away from the U.S. to another country, and a potentially impact the price of that commodity here and globally.”Elizabeth Warren and Bernie Sanders, two front-runners in the race to be the Democratic candidate, are keen to stop America’s reliance on fossil fuels, and they also want to end what they say is Washington’s subservience to corporate interests. They also know how to hit Exxon and Chevron where it hurts. Five years ago, both companies produced little crude from fracking and might have even have benefited from a ban if it led to higher oil prices. But now fracking is the fastest-growing part of their global businesses and a key profit driver.Hydraulic fracturing of shale rock is pushing U.S. oil production to record highs, touching 12.4 million barrels a day in August. Exxon said Friday its output from the Permian Basin in West Texas and New Mexico had boomed by more than 70% in the third quarter from a year earlier. Chevron, a bigger Permian producer, saw its output there climb 35%.That wave of supply has ensured lower gasoline and energy prices for domestic consumers, bolstered economic growth for states such as Texas and North Dakota, and restored the country to ranks of the world’s major crude exporters.“It’s really unlocked an economic huge economic benefit for the country, as well as for the companies involved,” Jay Johnson, the boss of Chevron’s upstream business, said during the company’s earnings conference call.But fracking also has costs, particularly in terms of the climate. Cheap fossil fuels typically mean people use more of them, causing higher emissions. Hansen said that while Exxon shares concerns about climate change, “there are more effective policies” such as a revenue-neutral carbon tax and technology initiatives.To contact the reporter on this story: Kevin Crowley in Houston at kcrowley1@bloomberg.netTo contact the editors responsible for this story: Simon Casey at scasey4@bloomberg.net, Joe CarrollFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.

- No image -

Image description: Exxon, Chevron Begin Pushing Back Against Warren’s Fracking Ban

- -

Chasing shadows in China: Detained lawyer's wife battles on

-

Date: Fri, 01 Nov 2019 14:14:13 -0400

- News link -

With winter approaching, Xu Yan brought some warm clothes and money for her husband to a detention centre in eastern China, though she's not even sure the arrested human rights lawyer is still being held there. Xu, 37, has travelled some 20 times from Beijing to Xuzhou in Jiangsu province in a vain struggle to get any information about Yu Wensheng after he was taken into custody last year. Xu returned again this week, joining the line at the Xuzhou City Detention Centre with other people bringing plastic bags bulging with thick duvets and sweaters for inmates.

- No image -

Image description: Chasing shadows in China: Detained lawyer's wife battles on

- -

Distressing photos show glaciers that are disappearing or on the brink of collapse around the world

-

Date: Fri, 01 Nov 2019 16:27:20 -0400

- News link -

The future of glaciers around the world is shaky. Here are photos showing some of the glaciers that might not be around for much longer.

- No image -

Image description: Distressing photos show glaciers that are disappearing or on the brink of collapse around the world

- -

Greta Thunberg says meeting with Trump 'would be a waste of time'

-

Date: Fri, 01 Nov 2019 10:58:43 -0400

- News link -

The Swedish teenage climate activist says she wouldn’t want to meet with the president even if given the opportunity.

- No image -

Image description: Greta Thunberg says meeting with Trump 'would be a waste of time'

- -

Brazil authorities zero in on ship suspected of oil spill

-

Date: Fri, 01 Nov 2019 16:39:33 -0400

- News link -

After oil mysteriously washed ashore on some 2,100 kilometers (1,300 miles) of Brazil's coastline for two months, authorities on Friday identified a suspect: a Greek-flagged ship belonging to Delta Tankers Ltd. Brazil's government has been striving to investigate the cause of the spill that has hit 286 beaches along the northeast coast and hurt fishing and tourism. The specific source of the oil has remained unclear since it began appearing in early September.

- No image -

Image description: Brazil authorities zero in on ship suspected of oil spill

-

Aniah Blanchard's UFC Fighter Stepdad Says Missing Alabama Teen Is 'Amazing'

Date: Fri, 01 Nov 2019 19:12:53 -0400

News link @@ -159,55 +140,6 @@

Aniah Blanchard's UFC Fighter Stepdad Says Missing Alabama Teen Is &apo No image

Image description: Aniah Blanchard's UFC Fighter Stepdad Says Missing Alabama Teen Is 'Amazing'

-

23 ISIS wives start repatriation case in Netherlands

-

Date: Fri, 01 Nov 2019 14:13:35 -0400

- News link -

Lawyers for 23 women who joined the Islamic State group from the Netherlands asked a judge on Friday to order the Netherlands to repatriate them and their 56 young children from camps in Syria. The women and children were living in "deplorable conditions" in the al-Hol camp in northern Syria, lawyer Andre Seebregts said in court.

- No image -

Image description: 23 ISIS wives start repatriation case in Netherlands

- -

UAW union president takes leave of absence under cloud of U.S. federal probe

-

Date: Sat, 02 Nov 2019 10:31:31 -0400

- News link -

The president of the United Auto Workers union, who has been linked https://www.reuters.com/article/us-autos-corruption-labor/federal-corruption-probe-hits-home-for-uaw-boss-contract-talks-under-storm-cloud-idUSKCN1VI229 to an ongoing corruption probe by U.S. federal officials, has taken a leave of absence, the union said on Saturday in a statement. Gary Jones' leave of absence, which follows a vote by the executive board, will be effective beginning Sunday, the UAW said. "The UAW is fighting tooth and nail to ensure our members have a brighter future.

- No image -

Image description: UAW union president takes leave of absence under cloud of U.S. federal probe

- -

Iran, Please Don't Develop a Stealth Fighter

-

Date: Sat, 02 Nov 2019 05:01:00 -0400

- News link -

It might be nice to have one, but it'll bring nothing but trouble.

- No image -

Image description: Iran, Please Don't Develop a Stealth Fighter

- -

Bad news for Boeing: Company says more 737 NGs found to have wing cracks

-

Date: Fri, 01 Nov 2019 19:36:32 -0400

- News link -

The FAA ordered the inspections in 737 NG's that have flown many thousands of flghts

- No image -

Image description: Bad news for Boeing: Company says more 737 NGs found to have wing cracks

- -

US military calls on Kurdish forces in northeast Syria

-

Date: Sat, 02 Nov 2019 10:42:13 -0400

- News link -

US military vehicles Saturday entered a Kurdish-held area in northeastern Syria and met with officials, AFP correspondents and a local source said, in the second such visit since an announced US pullout from the Turkish border area. Beige-coloured armoured vehicles flying the American flag pulled up at the headquarters of the Kurdish-led Syrian Democratic Forces outside the city of Qamishli. A US-led coalition has for years backed the SDF in fighting the Islamic State group, but the announcement of an American withdrawal triggered a deadly Turkish invasion against the Kurds on October 9.

- No image -

Image description: US military calls on Kurdish forces in northeast Syria

- -

British teenager was suffering from PTSD when she withdrew Cyprus gang rape claim, court hears

-

Date: Fri, 01 Nov 2019 14:26:49 -0400

- News link -

A British teenager accused of lying about being gang raped in Cyprus may have retracted her claims because she was suffering from post-traumatic stress disorder, her lawyer said at a hearing on Friday. The woman, 19, is charged with public mischief for allegedly inventing the attack at an Ayia Napa hotel on July 17. She maintains she was raped by up to a dozen Israeli tourists, but pressured by Cypriot police to make a retraction statement 10 days later. Prosecutors say the teenager willingly wrote and signed the document. On Friday, chartered consultant psychologist Dr Christine Tizzard gave evidence by videolink from Portsmouth Crown Court. Speaking after the hearing in Larnaca, lawyer Michael Polak, director of the group Justice Abroad - which is assisting the teenager - said she was diagnosed as having underlying PTSD, which was reignited by the alleged attack. Lawyer Michael Polak of Justice Abroad is supporting the teengaer Credit: KATIA CHRISTODOULOU/EPA-EFE/REX "We were pleased with the evidence from Dr Tizzard, which confirms what we have been saying," he said. "She explained in simple words to the court the ways in which PTSD affects someone who is put in a difficult situation... Their fight or flight reflex would kick in and they would do anything to get out of that situation... "We look forward to the rest of the evidence, which we say supports the teenager's case that she was put under enormous pressure to sign the retraction statement." The case was adjourned following the psychologist's evidence and a date for forensic linguist Dr Andrea Nini to give evidence is expected to be set on Monday. He is expected to say it was "highly unlikely" that the retraction statement was written by a native English speaker, supporting the teenager's case that it was dictated to her by a Cypriot police officer. The incident allegedly took place in the resort town of Ayia Napa Credit: Amir MAKAR / AFP Her lawyers want Judge Michalis Papathanasiou to rule the statement is inadmissible as evidence. The teenager was a week into a working holiday before she was due to start university when she alleged she was raped by the group of young Israeli men, but was then herself accused of making it up. She spent more than a month in prison before she was granted bail at the end of August, but cannot leave the island, having surrendered her passport. She could face up to a year in jail and a 1,700 euro (£1,500) fine if she is found guilty. The 12 Israelis arrested over the alleged attack returned home after they were released. The teenager's family have set up a crowdfunding page asking for money for legal costs, which has raised more than £40,000.

- No image -

Image description: British teenager was suffering from PTSD when she withdrew Cyprus gang rape claim, court hears

- -

For the Best Three-Row Mid-Size Crossovers and SUVs, See These Full Rankings!

-

Date: Fri, 01 Nov 2019 18:21:00 -0400

- News link -

- No image -

Image description: For the Best Three-Row Mid-Size Crossovers and SUVs, See These Full Rankings!

-

To Shake Up Trump, Kim Jong Un Gets All Mystical—Then Launches Missiles

Date: Sat, 02 Nov 2019 05:09:53 -0400

News link @@ -215,75 +147,103 @@

To Shake Up Trump, Kim Jong Un Gets All Mystical—Then Launches Missiles

Image description: To Shake Up Trump, Kim Jong Un Gets All Mystical—Then Launches Missiles

-

Groups ask California governor to deter parolee deportations

-

Date: Fri, 01 Nov 2019 19:59:41 -0400

- News link -

Immigrant rights groups called Friday for Gov. Gavin Newsom to end policies they say ease the transfer of prison inmates to federal authorities despite California's efforts to provide a sanctuary to those who are in the country illegally. The groups asked Newsom to stop prison officials from holding parolees until they can be picked up by federal immigration officials. California passed a law in 2017 barring local and state agencies from cooperating with federal immigration authorities over those who have committed certain crimes, mostly misdemeanors, but critics said it doesn't apply to the state prison system.

- No image -

Image description: Groups ask California governor to deter parolee deportations

+

Iran says cooperation plan sent to Gulf neighbours

+

Date: Sat, 02 Nov 2019 13:08:41 -0400

+ News link +

Iran said Saturday it has sent Iraq and Arab states of the Gulf the text of its security and cooperation project first unveiled by President Hassan Rouhani at the UN in September. Rouhani "sent the full text (of the initiative) to the heads" of the Gulf Cooperation Council and Iraq and "asked for their cooperation in processing and implementing it", the foreign ministry said. The GCC is a six-nation bloc that groups Saudi Arabia, the United Arab Emirates, Bahrain, Kuwait, Qatar and Oman.

+ No image +

Image description: Iran says cooperation plan sent to Gulf neighbours

-

Andrew Yang's campaign has gone 'mainstream'

-

Date: Sat, 02 Nov 2019 13:09:00 -0400

- News link -

While some Democratic presidential candidates are cutting back on their campaigns, entrepreneur Andrew Yang is going all in, Politico reports.Yang, who as recently as April had fewer than 20 staff members on his campaign's payroll, now has 73 people running the show. "It's been like a startup but this startup has gone mainstream, about to go public, if you want to keep using the analogy," said Zach Graumann, Yang's campaign manager. "And frankly and I tell the team, 'we're just getting started.'"There's some big names now involved with the campaign, as well, lending more credence to Graumann's words. Devine, Mulvey, and Longabaugh -- a media consulting firm which worked for the 2016 campaign for Sen. Bernie Sanders (I-Vt.) but opted not to join forces again for 2020 over "differences in a creative vision" -- has shifted its services to the Yang campaign because he's "offering the most progressive ideas" among the Democratic candidates. They also don't think he's a flash in the pan."We wouldn't have signed on with somebody we didn't think was a serious candidate," Mark Longabaugh said. "Yang has a good deal of momentum and there's a great deal of grassroots enthusiasm for his candidacy and that's what's driven it this far." Yang still faces numerous hurdles to really get back in the running, but the campaign surely thinks it's possible. Read more at Politico.

- No image -

Image description: Andrew Yang's campaign has gone 'mainstream'

+

23 ISIS wives start repatriation case in Netherlands

+

Date: Fri, 01 Nov 2019 14:13:35 -0400

+ News link +

Lawyers for 23 women who joined the Islamic State group from the Netherlands asked a judge on Friday to order the Netherlands to repatriate them and their 56 young children from camps in Syria. The women and children were living in "deplorable conditions" in the al-Hol camp in northern Syria, lawyer Andre Seebregts said in court.

+ No image +

Image description: 23 ISIS wives start repatriation case in Netherlands

-

Brazil police arrest man said to be one of world's most prolific human traffickers

-

Date: Fri, 01 Nov 2019 18:22:27 -0400

- News link -

Brazilian federal police said they have arrested Saifullah Al-Mamun, born in Bangladesh and considered by authorities one of the world's most prolific human traffickers. In an operation conducted on Thursday after collaboration with U.S. Immigration and Customs Enforcement (ICE), Brazilian police arrested members of a group allegedly implicated in a large scheme of smuggling people into the United States. Several arrests were made in Sao Paulo, where Al-Mamun was living, and in three other Brazilian cities.

+

A woman in Indiana was found dead in a house filled with 140 snakes with an 8-foot-long python wrapped round her neck

+

Date: Fri, 01 Nov 2019 10:41:44 -0400

+ News link +

Laura Hurst, 36, was found dead in a house in Oxford, Indiana, owned by County Sheriff Don Munson, an avid snake collector.

+ No image +

Image description: A woman in Indiana was found dead in a house filled with 140 snakes with an 8-foot-long python wrapped round her neck

+ +

Chicago teen charged in suspected gang shooting that injured girl who was trick-or-treating

+

Date: Sat, 02 Nov 2019 12:34:50 -0400

+ News link +

A 7-year-old girl was trick-or-treating in Chicago when she was hit by a stray bullet. A teenager has now been charged.

+ No image +

Image description: Chicago teen charged in suspected gang shooting that injured girl who was trick-or-treating

+ +

El Salvador expels Venezuelan diplomats from the country

+

Date: Sun, 03 Nov 2019 04:21:06 -0500

+ News link +

El Salvador said on Saturday it had ordered Venezuela's diplomats to leave the Central American country within 48 hours, arguing that the decision was in line with its position that Venezuelan President Nicolas Maduro is illegitimate. In a statement, the government said President Nayib Bukele recognized opposition leader Juan Guaido as Venezuela's interim president until free elections were held in the South American country. El Salvador will receive a new Venezuela diplomatic corps, named by Guaido, the government added.

No image -

Image description: Brazil police arrest man said to be one of world's most prolific human traffickers

- -

China Thinks a Nuclear Submarine Can Sink Half of An Aircraft Carrier Battle Group

-

Date: Fri, 01 Nov 2019 19:00:00 -0400

- News link -

Beijing is trying to find out how to sink U.S. aircraft carriers. France might know how to stop them.

- No image -

Image description: China Thinks a Nuclear Submarine Can Sink Half of An Aircraft Carrier Battle Group

- -

Southwest Airlines flight attendant tells why she sued: 'This was not a joke'

-

Date: Fri, 01 Nov 2019 21:06:29 -0400

- News link -

Renee Steinaker of Scottsdale, a 21-year veteran flight attendant with Southwest Airlines, speaks out about her lawsuit over a bathroom video.

- No image -

Image description: Southwest Airlines flight attendant tells why she sued: 'This was not a joke'

- -

Threat or chance? Israel eyes Lebanon protests closely

-

Date: Sat, 02 Nov 2019 12:39:39 -0400

- News link -

Looking down on Lebanon from the Israeli-occupied Golan Heights, soldiers wonder whether the political turmoil in the neighbouring country will weaken arch-enemy Hezbollah or make it more dangerous. "There, Hezbollah is very, very strong," said Samuel Boujenah of the Israeli military, gazing at a valley where calm was recently shattered by clashes with the Iran-backed Shiite group.

- No image -

Image description: Threat or chance? Israel eyes Lebanon protests closely

+

Image description: El Salvador expels Venezuelan diplomats from the country

-

For Vietnam's 'Box People,' a Treacherous Journey

-

Date: Fri, 01 Nov 2019 15:20:33 -0400

- News link -

LONDON -- Vietnamese smugglers call it the "CO2" route: a poorly ventilated, oxygen-deficient trip across the English Channel in shipping containers or trailers piled high with pallets of merchandise, the last leg of a perilous, 6,000-mile trek across Asia and into Western Europe.Compared to the other path -- the "VIP route," with its brief hotel stay and seat in a truck driver's cab -- the trip in a stuffy container can be brutal for what some Vietnamese refer to as "box people," successors to the "boat people" who left after the Vietnam War ended in 1975.Vietnamese migrants often wait for months in roadside camps in northern France before being sneaked into a truck trailer. Snakeheads, as the smugglers are known, beat men and sexually assault women, aid groups, lawyers and the migrants themselves say. People cocoon themselves in aluminum bags and endure hours in refrigerated units to reduce the risk of detection.That journey proved fatal last week for 39 people, many of them believed to be Vietnamese, who were found dead in a refrigerated truck container in southeastern England.As dangerous as the last leg of the migrant journey to Britain often is, those petrifying hours in a trailer are sometimes only a sliver of months if not years of harsh treatment -- first at the hands of organized trafficking gangs, and then under imperious bosses at nail salons and cannabis factories in Britain.But still they come, an estimated 18,000 Vietnamese paying smugglers for the journey to Europe every year at prices between 8,000 and 40,000 pounds, around $10,000 to $50,000.In Britain, where Brexit has discouraged the flow of labor from Eastern Europe, migrants see a country thirsty for low-wage workers, paying easily five times what they could earn at home and free of the onerous identity checks that make other European countries inhospitable.Vietnamese smugglers, for the most part, get their clients across to France and the Netherlands, where other gangs, often Kurdish and Albanian, or, as in the recent case, apparently Irish or Northern Irish, finish the job.Many come from Ha Tinh and Nghe An, two impoverished provinces in north-central Vietnam, and leave for Britain with their eyes wide open to the risks, analysts say. Having watched their neighbors suddenly refurbish their homes with pricier materials, or buy better cars, they crave the same sense of security for their family, whatever it might cost them.But when Britain fails to deliver on that promise, migrants can end up in a dreadful limbo, kept from seeking help by the country's harsh immigration system and living in the grip of a shadowy system of traffickers and the employers who rely on them."I always encourage them, 'Stay at home,'" the Rev. Simon Thang Duc Nguyen, the parish priest at a Catholic church in East London attended by many migrant parishioners, said this week. "Even though you are poor, you have your life. Here, you have money, but you lose your life."Not all the 20,000 to 35,000 undocumented Vietnamese migrants estimated to be living in Britain have horror stories to tell. Many migrants, some experts say, put up with the travails of working in Britain for the real chance of a payday."My research has shown stories of migrants are not all about exploitation and not all about being trafficked," said Tamsin Barber, a lecturer at Oxford Brookes University. "People are usually coming here agreeing to take high risks to work illegally and potentially earn large amounts of money in the cannabis trade."But more vulnerable Vietnamese are also being trafficked to Britain, with the authorities receiving five times as many referrals last year as in 2012.Once family and friends have scraped together enough money, the odyssey may begin with a trip to China to pick up forged travel documents. That is how many of the dozens of people who died in the truck began their journey, said Anthony Dang Huu Nam, a Catholic priest serving a church in the town of Yen Thanh, where he said dozens of the victims were from.On the way from China to Russia to Western Europe, one of the most punishing stretches is the walk through Belarusian forests to the Polish border. In a 2017 French survey of Vietnamese migrants, a man identified as Anh, 24, told researchers that he and five other men, led by a smuggler, were repeatedly arrested in Belarus, only to be released at the Russian border to try again. When they finally succeeded, they were met by a truck waiting on the Polish side."We were cold," the survey quoted him as saying. "We didn't eat anything for two days. We drank water from melted snow."Other routes, choreographed down to the minute, land migrants in European airports with recycled visas and travel documents, according to "Precarious Journeys," a recent report from ECPAT, an anti-child-trafficking organization, and other groups. As a precaution, smugglers in Vietnam often tell people to arrive at airport check-in desks 10 minutes before they close, for instance, so agents do not have enough time to inspect paperwork.The trip can take months, even years. Nguyen Dinh Luong, 20, one of the migrants believed to have died last week, wanted to go to France to find work and support his siblings, seven of them in all, his father, Nguyen Dinh Gia, said. But in Russia, he overstayed his tourist visa and was confined to his house for six months. Then he moved to Ukraine and France, where he found a job as a waiter, before deciding to go to Britain for work in a nail salon.Trips are frequently interrupted when migrants are detained or run out of money. Some migrants are forced to work along the way, in garment factories in Russia or in restaurants across Europe. Some women sell sex, researchers say.Smugglers often keep people in the dark about where they are as a way of exerting total control. In a 2017 case, 16 Vietnamese people picked up by the Ukrainian authorities in Odessa thought they were in France.When migrants disobey their smugglers, the blowback can be fierce."They cannot be discovered by the police, so they have to keep the discipline," said Nguyen, the priest in London. "If you do not behave, you can be punished by beatings, or for women be abused sexually."And once they arrive in Britain, they are often in for a rude awakening. Sulaiha Ali, a human rights lawyer, said migrants were sometimes promised legitimate work in a restaurant or on a construction site, only to be forced to work as "gardeners" in a house converted into illegal cannabis growing operations. Locked inside the house for days at a time and often living 15 to a room, workers face the risk of fire from tampered electrical wiring and health problems from noxious chemicals.In the nail salons where many Vietnamese find work, salon bosses can control every aspect of workers' lives, a power that can breed exploitation, though researchers said some bosses also become migrants' surrogate parents, cooking for them and providing a place to stay.When the police raid places housing migrants, they can often ignore signs of forced work or human trafficking and send migrants into deportation proceedings instead, migrant advocates say. "The emphasis, as soon as it's established someone doesn't have any identification documents, is not trying to establish whether they've been exploited," Ali said. "It's on, 'Can we justify detention? Can we get them removed back to their countries?'"That threat of deportation, whatever someone's circumstances, is a cudgel for trafficking gangs to keep migrants under their sway."There's a serious distrust of authorities, a lot of the time because traffickers have embedded that in victims' minds: 'You don't have official documents,' or, 'You're going to be deported or imprisoned,'" said Firoza Saiyed, a human rights lawyer. "It's another thing that makes disclosure really difficult."Older Vietnamese migrants in Britain, many of whom arrived after the Vietnam War, are separated by a wide cultural gulf from the newer arrivals, but they have still proved to be a crucial support, ever more so in the last week.Nguyen, who left Vietnam in 1984, said he had been fielding calls from families in Vietnam, wanting to know if he could tell them whether their children were in the trailer."The mother, the father, all called me in tears," he said. "I couldn't bear hearing the words. You have to borrow a lot of money for this journey, and now you had hoped your daughter, your son can be successful, and that you can have some money to pay the debt. Now, it's hopeless -- nothing."He went on, "Nothing is OK, as long as they are arrested or in prison. It's OK, they survived. But now they lost two things. They lost hope and they lost their lives. Nothing."This article originally appeared in The New York Times.(C) 2019 The New York Times Company

- No image -

Image description: For Vietnam's 'Box People,' a Treacherous Journey

+

Blast in Syrian town held by Turkey-backed gunmen kills 13

+

Date: Sat, 02 Nov 2019 14:00:36 -0400

+ News link +

A car bomb exploded in a northern Syrian town along the border with Turkey on Saturday killing 13 people, Turkey's Defense Ministry said. The ministry said about 20 others were wounded when the bomb exploded in central Tal Abyad, which was captured last month by Turkey-backed opposition gunmen from Kurdish-led fighters. A spokesman for the main Kurdish-led force in Syria, Mustafa Bali, blamed Turkey for the blast, saying Turkey and the Syrian fighters it backs "are now creating chaos" in Tal Abyad to displace the Kurds who live in the town.

+ No image +

Image description: Blast in Syrian town held by Turkey-backed gunmen kills 13

-

Readers write: A gun owner’s experience with the NRA, and more

-

Date: Sat, 02 Nov 2019 02:00:04 -0400

- News link -

Assault rifles, bump stocks, the Second Amendment, and more: Readers discuss their opinions on the NRA and the state of gun ownership in America.

- No image -

Image description: Readers write: A gun owner’s experience with the NRA, and more

+

Trump's Naval Dream Seems Sunk: America Can't Afford a 355 Ship Navy

+

Date: Sat, 02 Nov 2019 15:30:00 -0400

+ News link +

Like a Christmas wish list, the Navy wants a fleet of 355 ships. It just can’t afford it.

+ No image +

Image description: Trump's Naval Dream Seems Sunk: America Can't Afford a 355 Ship Navy

-

Trump says he knows all about the new Isis leader - but experts insist 'The Scholar' remains a mystery

-

Date: Fri, 01 Nov 2019 18:21:49 -0400

- News link -

Days after Isis leader Abu Bakr Al-Baghdadi was killed in a raid by US special forces at a compound in Syria, Donald Trump tweeted that “we know exactly” who the replacement is as head of the terrorist group.Abu Ibrahim al-Hashimi al-Qurashi has been named as Baghdadi’s successor in an audio message released by the group on Thursday.

- No image -

Image description: Trump says he knows all about the new Isis leader - but experts insist 'The Scholar' remains a mystery

+

Distressing photos show glaciers that are disappearing or on the brink of collapse around the world

+

Date: Fri, 01 Nov 2019 16:27:20 -0400

+ News link +

The future of glaciers around the world is shaky. Here are photos showing some of the glaciers that might not be around for much longer.

+ No image +

Image description: Distressing photos show glaciers that are disappearing or on the brink of collapse around the world

-

New execution date set for Georgia inmate

-

Date: Fri, 01 Nov 2019 18:04:08 -0400

- News link -

Georgia officials set a new execution date Friday for a death row inmate two days after he was granted a temporary reprieve because of a legal technicality. Ray Jefferson Cromartie, 52, is scheduled to die by lethal injection Nov. 13 at the state prison in Jackson. Georgia Corrections Commissioner Timothy Ward set the execution for the first date of a seven-day window ordered Friday by a Superior Court judge in Thomas County.

- No image -

Image description: New execution date set for Georgia inmate

+

SNL’s Weekend Update Applauds Trump’s ‘Genius Troll Move’ of Leaving New York for Florida

+

Date: Sun, 03 Nov 2019 01:43:19 -0400

+ News link +

NBCAfter a lackluster cold open centered on Kate McKinnon’s Elizabeth Warren, a lazy bit with McKinnon’s Kellyanne Conway and the Baghdadi raid’s hero dog mocking President Trump, and several sketches of the great Kristen Stewart doing her damnedest to elevate some seriously subpar writing, “Weekend Update” returned on Saturday Night Live. And this week, co-hosts Colin Jost and Michael Che took a break from cracking transphobic jokes to focus on Trump’s decision to move from New York City to Florida, where he’ll pay even less taxes than he already does.  SNL’s Kellyanne Conway and the Baghdadi Raid’s Hero Dog Mock TrumpBill Maher’s Show Has Gone Completely Off the Rails“Donald Trump announced that he is changing his permanent residence from New York to Florida, because you know what they say: if you can’t drain the swamp, move to it,” said Colin Jost. “I gotta say, it’s such a genius troll move that Trump raised taxes for New Yorkers and then left New York. It’s like ripping one in an elevator, then pressing all the buttons and running out.” “Trump also said he’s leaving New York because local politicians have been treating him very badly—especially one New York politician who has been actively destroying his life,” he added, before throwing to a picture of Rudy Giuliani. Next came Che: “I don’t blame Trump for moving. He got booed today in New York at the UFC fight, he got booed in D.C. at the World Series, now he’s moving to Florida so he can probably get booed at Disney World. He gets booed everywhere he’s ever lived. I mean, even Cosby can still play Philly.”   Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.

+ No image +

Image description: SNL’s Weekend Update Applauds Trump’s ‘Genius Troll Move’ of Leaving New York for Florida

+ +

Schools, clinics shut as strike hits UN Palestinian agency in Jordan

+

Date: Sun, 03 Nov 2019 08:09:57 -0500

+ News link +

Thousands of employees of the UN agency for Palestinian refugees went on strike in Jordan on Sunday, shutting schools and health centres that provide services for more than two million people. The strike demanding pay rises is being observed by around 7,000 workers, UNRWA spokesman Sami Mshamsha said, and comes as the agency faces an unprecedented financial crisis. It has brought to a standstill work at UNRWA schools, clinics and centres providing social welfare to refugees across Jordan, Mshamsha said.

+ No image +

Image description: Schools, clinics shut as strike hits UN Palestinian agency in Jordan

+ +

View Photos of Honda's SEMA Lineup

+

Date: Fri, 01 Nov 2019 12:00:00 -0400

+ News link +

+ No image +

Image description: View Photos of Honda's SEMA Lineup

+ +

Greta Thunberg seeks lift back across Atlantic to climate meet

+

Date: Fri, 01 Nov 2019 13:05:54 -0400

+ News link +

Teen climate activist Greta Thunberg had made it half-way from Sweden to Chile by boat, train and electric car when next month's UN climate summit was unexpectedly scrapped. "As #COP25 has officially been moved from Santiago to Madrid I'll need some help," Thunberg tweeted from Los Angeles. Thunberg's highly publicized journey has so far involved crossing on a zero-emission sailboat from the coast of England to New York, traveling overland through North America by train and in an electric car borrowed from Arnold Schwarzenegger.

+ No image +

Image description: Greta Thunberg seeks lift back across Atlantic to climate meet

+ +

New Mexico man gets life for killing family as teen

+

Date: Fri, 01 Nov 2019 20:18:33 -0400

+ News link +

A man convicted of fatally shooting his parents and three siblings in New Mexico as a 15-year-old was sentenced Friday to life in prison with the possibility of parole in a case that has tested the limits of mental treatment for juvenile offenders. Judge Alisa Hart sentenced 22-year-old Nehemiah Griego after his attorney sought a sentence that would have let him continue treatment while on probation.

+ No image +

Image description: New Mexico man gets life for killing family as teen

+ +

This time, Southern California was prepared for wildfires. Here's how countless homes were saved

+

Date: Sat, 02 Nov 2019 12:47:36 -0400

+ News link +

The winds roared again but Los Angeles and other Southern California cities were prepared as firefighters saved thousands of homes.

+ No image +

Image description: This time, Southern California was prepared for wildfires. Here's how countless homes were saved

Iraq’s Top Cleric Warns Iran to Stay Out

Date: Sat, 02 Nov 2019 02:00:02 -0400

@@ -292,54 +252,54 @@

Iraq’s Top Cleric Warns Iran to Stay Out

No image

Image description: Iraq’s Top Cleric Warns Iran to Stay Out

-

UPDATE 1-El Salvador expels Venezuelan diplomats from the country

-

Date: Sun, 03 Nov 2019 01:01:06 -0500

- News link -

El Salvador said on Saturday it had ordered Venezuela's diplomats to leave the Central American country within 48 hours, arguing that the decision was in line with its position that Venezuelan President Nicolas Maduro is illegitimate. In a statement, the government said President Nayib Bukele recognized opposition leader Juan Guaido as Venezuela's interim president until free elections were held in the South American country.

- No image -

Image description: UPDATE 1-El Salvador expels Venezuelan diplomats from the country

+

The U.S. Military is Sending Thousands of Troops and Even B-1 Bombers into Saudi Arabia (To Counter Iran)

+

Date: Sun, 03 Nov 2019 03:30:00 -0500

+ News link +

And that is just for starters.

+ No image +

Image description: The U.S. Military is Sending Thousands of Troops and Even B-1 Bombers into Saudi Arabia (To Counter Iran)

-

Trump's Naval Dream Seems Sunk: America Can't Afford a 355 Ship Navy

-

Date: Sat, 02 Nov 2019 15:30:00 -0400

- News link -

Like a Christmas wish list, the Navy wants a fleet of 355 ships. It just can’t afford it.

- No image -

Image description: Trump's Naval Dream Seems Sunk: America Can't Afford a 355 Ship Navy

+

Teachers strike taught Chicago's new mayor tough lessons -analysts

+

Date: Fri, 01 Nov 2019 15:27:56 -0400

+ News link +

Chicago Mayor Lori Lightfoot made strategic errors in the first major fight of her tenure, an 11-day teachers' strike, but may have learned lessons that will prove useful as she confronts immense city budget challenges, political observers said. Lightfoot, 57, was elected in convincing fashion to become Chicago's first black woman mayor in April, when she vaulted to victory on promises to dismantle the city's corrupt political machine and reform the city's school district.

+ No image +

Image description: Teachers strike taught Chicago's new mayor tough lessons -analysts

-

Jury finds Chicago gang member guilty in the murder of 9-year-old Tyshawn Lee

-

Date: Fri, 01 Nov 2019 11:20:49 -0400

- News link -

A jury found gang member Drwight Boone-Doty guilty Thursday in the murder of Tyshawn Lee, a 9-year-old boy was shot and killed.

- No image -

Image description: Jury finds Chicago gang member guilty in the murder of 9-year-old Tyshawn Lee

- -

Airbnb bans 'party houses' after deadly US shooting

-

Date: Sat, 02 Nov 2019 20:52:21 -0400

- News link -

Airbnb's boss announced Saturday that the online platform, which offers private homes for rent for short periods, is banning "party houses" after a deadly shooting at a Halloween event in California. Five people were killed and others wounded in a Thursday night shooting in Orinda, California, in a house that had been rented on Airbnb. "Starting today, we are banning 'party houses' and we are redoubling our efforts to combat unauthorized parties and get rid of abusive host and guest conduct, including conduct that leads to the terrible events we saw in Orinda," Airbnb co-founder and CEO Brian Chesky said on Twitter.

- No image -

Image description: Airbnb bans 'party houses' after deadly US shooting

- -

House Intel Chair Schiff says impeachment transcripts could come next week

-

Date: Fri, 01 Nov 2019 19:52:44 -0400

- News link -

Adam Schiff, the chairman of the House Intelligence Committee, said Friday that the panels investigating impeachment could begin releasing transcripts of closed-door witness depositions early next week, part of an effort to move the investigation into public view and allow Americans to evaluate the evidence against President Trump.

- No image -

Image description: House Intel Chair Schiff says impeachment transcripts could come next week

- -

The Most Cringe-Worthy 90s Internet Guides That We Can't Stop Watching

-

Date: Sat, 02 Nov 2019 12:00:00 -0400

- News link -

+

A 9,000-barrel leak in the Keystone pipeline in North Dakota spilled enough crude oil to fill half an Olympic-sized swimming pool

+

Date: Sat, 02 Nov 2019 14:00:25 -0400

+ News link +

The second large oil spill from the Keystone pipeline in two years provoked outrage because TC Energy told activists that spills were unlikely.

+ No image +

Image description: A 9,000-barrel leak in the Keystone pipeline in North Dakota spilled enough crude oil to fill half an Olympic-sized swimming pool

+ +

Toll in Philippine quakes climbs to 21

+

Date: Sun, 03 Nov 2019 02:07:41 -0500

+ News link +

The death toll in two powerful quakes that struck the southern Philippines in the past week has risen to 21, authorities said Sunday, as survivors struggled to access food and water. The 6.6-magnitude and 6.5-magnitude quakes hit the island of Mindanao two days apart, destroying buildings and displacing tens of thousands of residents. The quakes also left 432 residents injured with two people still missing, it added.

+ No image +

Image description: Toll in Philippine quakes climbs to 21

+ +

For Vietnam's 'Box People,' a Treacherous Journey

+

Date: Fri, 01 Nov 2019 15:20:33 -0400

+ News link +

LONDON -- Vietnamese smugglers call it the "CO2" route: a poorly ventilated, oxygen-deficient trip across the English Channel in shipping containers or trailers piled high with pallets of merchandise, the last leg of a perilous, 6,000-mile trek across Asia and into Western Europe.Compared to the other path -- the "VIP route," with its brief hotel stay and seat in a truck driver's cab -- the trip in a stuffy container can be brutal for what some Vietnamese refer to as "box people," successors to the "boat people" who left after the Vietnam War ended in 1975.Vietnamese migrants often wait for months in roadside camps in northern France before being sneaked into a truck trailer. Snakeheads, as the smugglers are known, beat men and sexually assault women, aid groups, lawyers and the migrants themselves say. People cocoon themselves in aluminum bags and endure hours in refrigerated units to reduce the risk of detection.That journey proved fatal last week for 39 people, many of them believed to be Vietnamese, who were found dead in a refrigerated truck container in southeastern England.As dangerous as the last leg of the migrant journey to Britain often is, those petrifying hours in a trailer are sometimes only a sliver of months if not years of harsh treatment -- first at the hands of organized trafficking gangs, and then under imperious bosses at nail salons and cannabis factories in Britain.But still they come, an estimated 18,000 Vietnamese paying smugglers for the journey to Europe every year at prices between 8,000 and 40,000 pounds, around $10,000 to $50,000.In Britain, where Brexit has discouraged the flow of labor from Eastern Europe, migrants see a country thirsty for low-wage workers, paying easily five times what they could earn at home and free of the onerous identity checks that make other European countries inhospitable.Vietnamese smugglers, for the most part, get their clients across to France and the Netherlands, where other gangs, often Kurdish and Albanian, or, as in the recent case, apparently Irish or Northern Irish, finish the job.Many come from Ha Tinh and Nghe An, two impoverished provinces in north-central Vietnam, and leave for Britain with their eyes wide open to the risks, analysts say. Having watched their neighbors suddenly refurbish their homes with pricier materials, or buy better cars, they crave the same sense of security for their family, whatever it might cost them.But when Britain fails to deliver on that promise, migrants can end up in a dreadful limbo, kept from seeking help by the country's harsh immigration system and living in the grip of a shadowy system of traffickers and the employers who rely on them."I always encourage them, 'Stay at home,'" the Rev. Simon Thang Duc Nguyen, the parish priest at a Catholic church in East London attended by many migrant parishioners, said this week. "Even though you are poor, you have your life. Here, you have money, but you lose your life."Not all the 20,000 to 35,000 undocumented Vietnamese migrants estimated to be living in Britain have horror stories to tell. Many migrants, some experts say, put up with the travails of working in Britain for the real chance of a payday."My research has shown stories of migrants are not all about exploitation and not all about being trafficked," said Tamsin Barber, a lecturer at Oxford Brookes University. "People are usually coming here agreeing to take high risks to work illegally and potentially earn large amounts of money in the cannabis trade."But more vulnerable Vietnamese are also being trafficked to Britain, with the authorities receiving five times as many referrals last year as in 2012.Once family and friends have scraped together enough money, the odyssey may begin with a trip to China to pick up forged travel documents. That is how many of the dozens of people who died in the truck began their journey, said Anthony Dang Huu Nam, a Catholic priest serving a church in the town of Yen Thanh, where he said dozens of the victims were from.On the way from China to Russia to Western Europe, one of the most punishing stretches is the walk through Belarusian forests to the Polish border. In a 2017 French survey of Vietnamese migrants, a man identified as Anh, 24, told researchers that he and five other men, led by a smuggler, were repeatedly arrested in Belarus, only to be released at the Russian border to try again. When they finally succeeded, they were met by a truck waiting on the Polish side."We were cold," the survey quoted him as saying. "We didn't eat anything for two days. We drank water from melted snow."Other routes, choreographed down to the minute, land migrants in European airports with recycled visas and travel documents, according to "Precarious Journeys," a recent report from ECPAT, an anti-child-trafficking organization, and other groups. As a precaution, smugglers in Vietnam often tell people to arrive at airport check-in desks 10 minutes before they close, for instance, so agents do not have enough time to inspect paperwork.The trip can take months, even years. Nguyen Dinh Luong, 20, one of the migrants believed to have died last week, wanted to go to France to find work and support his siblings, seven of them in all, his father, Nguyen Dinh Gia, said. But in Russia, he overstayed his tourist visa and was confined to his house for six months. Then he moved to Ukraine and France, where he found a job as a waiter, before deciding to go to Britain for work in a nail salon.Trips are frequently interrupted when migrants are detained or run out of money. Some migrants are forced to work along the way, in garment factories in Russia or in restaurants across Europe. Some women sell sex, researchers say.Smugglers often keep people in the dark about where they are as a way of exerting total control. In a 2017 case, 16 Vietnamese people picked up by the Ukrainian authorities in Odessa thought they were in France.When migrants disobey their smugglers, the blowback can be fierce."They cannot be discovered by the police, so they have to keep the discipline," said Nguyen, the priest in London. "If you do not behave, you can be punished by beatings, or for women be abused sexually."And once they arrive in Britain, they are often in for a rude awakening. Sulaiha Ali, a human rights lawyer, said migrants were sometimes promised legitimate work in a restaurant or on a construction site, only to be forced to work as "gardeners" in a house converted into illegal cannabis growing operations. Locked inside the house for days at a time and often living 15 to a room, workers face the risk of fire from tampered electrical wiring and health problems from noxious chemicals.In the nail salons where many Vietnamese find work, salon bosses can control every aspect of workers' lives, a power that can breed exploitation, though researchers said some bosses also become migrants' surrogate parents, cooking for them and providing a place to stay.When the police raid places housing migrants, they can often ignore signs of forced work or human trafficking and send migrants into deportation proceedings instead, migrant advocates say. "The emphasis, as soon as it's established someone doesn't have any identification documents, is not trying to establish whether they've been exploited," Ali said. "It's on, 'Can we justify detention? Can we get them removed back to their countries?'"That threat of deportation, whatever someone's circumstances, is a cudgel for trafficking gangs to keep migrants under their sway."There's a serious distrust of authorities, a lot of the time because traffickers have embedded that in victims' minds: 'You don't have official documents,' or, 'You're going to be deported or imprisoned,'" said Firoza Saiyed, a human rights lawyer. "It's another thing that makes disclosure really difficult."Older Vietnamese migrants in Britain, many of whom arrived after the Vietnam War, are separated by a wide cultural gulf from the newer arrivals, but they have still proved to be a crucial support, ever more so in the last week.Nguyen, who left Vietnam in 1984, said he had been fielding calls from families in Vietnam, wanting to know if he could tell them whether their children were in the trailer."The mother, the father, all called me in tears," he said. "I couldn't bear hearing the words. You have to borrow a lot of money for this journey, and now you had hoped your daughter, your son can be successful, and that you can have some money to pay the debt. Now, it's hopeless -- nothing."He went on, "Nothing is OK, as long as they are arrested or in prison. It's OK, they survived. But now they lost two things. They lost hope and they lost their lives. Nothing."This article originally appeared in The New York Times.(C) 2019 The New York Times Company

+ No image +

Image description: For Vietnam's 'Box People,' a Treacherous Journey

+ +

Andrew Yang's campaign has gone 'mainstream'

+

Date: Sat, 02 Nov 2019 13:09:00 -0400

+ News link +

While some Democratic presidential candidates are cutting back on their campaigns, entrepreneur Andrew Yang is going all in, Politico reports.Yang, who as recently as April had fewer than 20 staff members on his campaign's payroll, now has 73 people running the show. "It's been like a startup but this startup has gone mainstream, about to go public, if you want to keep using the analogy," said Zach Graumann, Yang's campaign manager. "And frankly and I tell the team, 'we're just getting started.'"There's some big names now involved with the campaign, as well, lending more credence to Graumann's words. Devine, Mulvey, and Longabaugh -- a media consulting firm which worked for the 2016 campaign for Sen. Bernie Sanders (I-Vt.) but opted not to join forces again for 2020 over "differences in a creative vision" -- has shifted its services to the Yang campaign because he's "offering the most progressive ideas" among the Democratic candidates. They also don't think he's a flash in the pan."We wouldn't have signed on with somebody we didn't think was a serious candidate," Mark Longabaugh said. "Yang has a good deal of momentum and there's a great deal of grassroots enthusiasm for his candidacy and that's what's driven it this far." Yang still faces numerous hurdles to really get back in the running, but the campaign surely thinks it's possible. Read more at Politico.

No image -

Image description: The Most Cringe-Worthy 90s Internet Guides That We Can't Stop Watching

+

Image description: Andrew Yang's campaign has gone 'mainstream'

-

Experts on Trump's conduct: 'Plainly an abuse of power, plainly impeachable'

-

Date: Sat, 02 Nov 2019 00:00:11 -0400

- News link -

Republicans may argue Trump’s actions were not impeachable – but scholars say it’s a solid example of a high crimeDonald Trump at the White House in Washington DC this week. Photograph: Jim Lo Scalzo/EPAWas what he did really so bad? And even if it was bad – was it truly impeachable?As Democrats hit the gas on impeachment this week, Donald Trump exhorted Republicans to defend him on the substance of his actions in the Ukraine scandal, instead of sniping about the process.“Rupublicans [sic],” Trump tweeted “go with Substance and close it out!”Trump’s misconduct, critics say, includes using the power of the presidency to solicit foreign intervention in the 2020 US election, by trying to force Ukraine to help conduct a political hit on Joe Biden.Trump denies all wrongdoing and most of his defenders do too. But there is a (slightly) subtler version of Trump defense that Republicans are trying out which says that while Trump’s conduct has not been irreproachable, neither has it been impeachable.The argument, according to constitutional experts and historians of impeachment, is not a strong one. In fact, Trump’s conduct, according to analysts interviewed by the Guardian, hews more closely than any previous conduct by any other president to what scholars conceive as a concrete example of impeachable behavior.Frank O Bowman III, author of High Crimes and Misdemeanors: A History of Impeachment for the Age of Trump and a professor at the University of Missouri school of law, said that Trump’s having extorted actions with no legitimate US national purpose from a foreign country that is “literally at risk of losing its political and territorial independence” without US support was impeachable.“It’s plainly an abuse of power, and it’s plainly impeachable,” Bowman said.“I think these are quite clearly, precisely the type of high crimes and misdemeanors that the founders not only feared but actually discussed at the constitutional convention,” said Jeffrey A Engel, co-author of Impeachment: An American History and director of the center for presidential history at Southern Methodist University.“The high crime is the trade – give me dirt on Joe Biden and his son, and I’ll give you in return military aid and help with your economy – I think that is certainly impeachable,” said Corey Brettschneider, author of The Oath and the Office: A Guide to the Constitution for Future Presidents and a professor of constitutional law at Brown University. Many are finding defending Trump difficult at the moment. Republican lawmakers spent Thursday fleeing reporters trying to ask the question, “Do you think it’s OK for the president to pressure foreign governments to interfere in our elections?”. One lawmaker even headbutted a camera rather than reply.The reason Trump’s alleged conduct is plainly impeachable, historians say, has to do with US impeachment precedent and with what the authors of the US constitution meant when they provisioned impeachment for “high crimes and misdemeanors”.“If we look at history both British and American – and it’s important to look at British history, because our Framers were of course rebel Englishmen and they adopted the phrase ‘high crimes and misdemeanors’ in full recognition of the fact that that was a parliamentary term of art, and that therefore they were adopting to some degree, by reference, previous usages of that term – all of that leads to really the inescapable conclusion that one of the grounds for impeachment has always been abuse of power,” said Bowman.While Trump and his defenders reject the allegation that he has any divided loyalties, critics have pointed out that his actions in office, including his withholding of military aid from Ukraine, have advanced Russian interests – and his own personal interests, when it comes to soliciting election assistance.The founders drafted the impeachment clause specifically with problematic foreign loyalties in mind, Engel said.“Having just gone through the process of a divisive revolution, where it was literally neighbor against neighbor and sometimes even brother against brother split over loyalty,” Engel said, “there was a great deal of concern about just simply making sure that the people who were in charge generally had America’s best interests at heart. Because people had so many friends over the course of their lives that did not – or at least that chose France or that chose Britain.”In an Oval Office interview on Thursday, Trump compared his conduct favorably with the last two presidents to face impeachment proceedings, Richard Nixon and Bill Clinton.“Everybody knows I did nothing wrong,” Trump told the Washington Examiner. “Bill Clinton did things wrong; Richard Nixon did things wrong. I won’t go back to [Andrew] Johnson because that was a little before my time. But they did things wrong. I did nothing wrong.”Trump’s analysis of his own behavior does not stand up to scrutiny, scholars said.“Obviously the degree of severity is almost immeasurably different,” said Bowman. “With respect to Clinton, yes you had a violation of law, in the sense of his having committed perjury, but he committed perjury in order to conceal a private, consensual sexual affair. Now that’s discreditable, it’s also criminal – he got disbarred as a result of doing it.“But in terms of the interests of the nation, not even remotely comparable.“In this case, Trump is literally holding the independence of another country hostage to his own political interests. Not only is that contemptible, and in many ways more contemptible than what Nixon did, but I think it’s also true, and we’ve heard a lot of testimony about this over the past couple of weeks, that what he was doing is endangering an American policy objective, the whole framework of containment of Russian expansionism, the bedrock of our policy in eastern Europe for the last 70 years.“It’s far worse, in that regard, I think, than what Nixon did.”Engel said the “Nixon case is very instructive” in judging the integrity of Trump’s defensive wall in the Republican members of Congress.“The Republicans by and large backed Nixon right up until the moment they didn’t,” Engel said. “Which is to say, when new information came out, in his case specifically the smoking gun tape, that nobody in good conscience could refute, his support eroded literally overnight.“And I think we will see potentially a similar dynamic, at least that dynamic is set up, that there’s no particular reason at this moment that Republicans feel a need to break with their party.“But history suggests that they may at some point open the newspaper and realize they have no choice but to switch sides.”

- No image -

Image description: Experts on Trump's conduct: 'Plainly an abuse of power, plainly impeachable'

+

Store clerk sentenced to 22 years for killing teen who stole $2 beer

+

Date: Fri, 01 Nov 2019 10:42:39 -0400

+ News link +

A Memphis store clerk was sentenced Thursday to 22 years in prison for fatally shooting a 17-year-old who had shoplifted a beer, authorities said.

+ No image +

Image description: Store clerk sentenced to 22 years for killing teen who stole $2 beer

Oklahoma parole board OKs largest-ever US mass commutation

Date: Fri, 01 Nov 2019 17:15:10 -0400

@@ -348,12 +308,54 @@

Oklahoma parole board OKs largest-ever US mass commutation

No image

Image description: Oklahoma parole board OKs largest-ever US mass commutation

-

Iran unveils new anti-US murals at former embassy

-

Date: Sat, 02 Nov 2019 07:58:09 -0400

- News link -

Iran on Saturday unveiled new anti-American murals on the walls of the former US embassy as Tehran prepares to celebrate the 40th anniversary of the storming of what it labels the "den of spies". The new murals -- mainly painted in white, red and blue, the colours of the US flag -- were unveiled by Major General Hossein Salami, the head of Iran's Revolutionary Guards, at the former mission turned museum. A third showed the American Global Hawk drone that was shot down by Iran in June over the Strait of Hormuz, with bats flying out of it.

- No image -

Image description: Iran unveils new anti-US murals at former embassy

+

PG&E and Southern California Edison have turned off power to minimize fires. It hasn't worked. What will?

+

Date: Fri, 01 Nov 2019 13:59:00 -0400

+ News link +

Pacific Gas & Electric and Southern California Edison have cut off power to minimize wildfire risk. Yet the wildfires haven't stopped. What now?

+ No image +

Image description: PG&E and Southern California Edison have turned off power to minimize fires. It hasn't worked. What will?

+ +

Fact: The United States and Iran Came within Minutes of War Back in June

+

Date: Sat, 02 Nov 2019 00:00:00 -0400

+ News link +

Around 4:30 AM that morning, a U.S. Navy RQ-4N Global Hawk spy drone flying a routine circuit over international airspace in the Persian Gulf was shot down by an Iranian Ra’ad surface-to-air missile system. Later that day, U.S. forces were ostensibly “ten minutes” away from striking three Iranian bases likely with air- and sea-launched missiles

+ No image +

Image description: Fact: The United States and Iran Came within Minutes of War Back in June

+ +

Airbnb bans 'party houses' after Halloween shooting in California

+

Date: Sat, 02 Nov 2019 11:43:41 -0400

+ News link +

Police were still searching for the shooter who opened fire on Thursday night at the costume party, which authorities say was attended by more than 100 people at the house in Orinda, less than 20 miles (30 km) east of San Francisco. The party host rented the home through Airbnb and told its owner she was holding a reunion for only a dozen people, the San Francisco Chronicle reported citing the owner, Michael Wang.

+ No image +

Image description: Airbnb bans 'party houses' after Halloween shooting in California

+ +

Trump impeachment: Energy secretary refuse to cooperate with probe unless he gets ‘open hearing’

+

Date: Sat, 02 Nov 2019 17:11:00 -0400

+ News link +

The US energy secretary has said he will not cooperate with the impeachment inquiry into ​Donald Trump unless he gets an “open hearing”.Rick Perry, who has previously ignoring a congressional subpoena to testify before House committees spearheading an investigation into the president’s dealings with Ukraine, once again indicated he would not attend.

+ No image +

Image description: Trump impeachment: Energy secretary refuse to cooperate with probe unless he gets ‘open hearing’

+ +

Beijing says 'ready to work' with ASEAN on South China Sea rules

+

Date: Sun, 03 Nov 2019 05:11:41 -0500

+ News link +

Beijing said Sunday it is "ready to work" with Southeast Asian nations on a code of conduct in the flashpoint South China Sea, where it is accused of building up military installations and bullying fellow claimants. China claims most of the resource-rich waterway, a major global shipping route that has long been a source of tension in the region. For years, the 10-member Association of Southeast Asian Nations (ASEAN) has been locked in talks for a code of conduct for the sea, where China is accused of deploying warships, arming outposts and ramming fishing vessels.

+ No image +

Image description: Beijing says 'ready to work' with ASEAN on South China Sea rules

+ +

For the Best Three-Row Mid-Size Crossovers and SUVs, See These Full Rankings!

+

Date: Fri, 01 Nov 2019 18:21:00 -0400

+ News link +

+ No image +

Image description: For the Best Three-Row Mid-Size Crossovers and SUVs, See These Full Rankings!

+ +

Top sommelier accused of sexual assault as MeToo hits fine wine industry

+

Date: Sat, 02 Nov 2019 12:47:04 -0400

+ News link +

A prominent US sommelier has been accused of sexual assault by several women in a report in the New York Times. Anthony Cailan, 29, has worked at restaurants including the Usual in New York, and Bestia, and Animal, in Los Angeles. Mr Cailan was on the cover of the October issue of Wine & Spirits magazine, which named him a leader of the industry. 4 women have accused Anthony Cailan, a rising star sommelier, of sexually assaulting them or of attempting to do so https://t.co/eoOT5jWKxI— The New York Times (@nytimes) November 1, 2019 Raquel Makler, 22, a wine bar manager, claimed to the New York Times that Mr Cailan assaulted her at his apartment. Sarah Fernandez, 29, a wine sales representative, also claimed that she had been assaulted at his apartment by the sommelier. Two women who declined to be named made similar allegations. In an email to the newspaper Mr Cailan said: "The truth is, these allegations against me are false. I look forward to the opportunity to clear my name." In the last few years the MeToo movement has led to sexual assault and misconduct allegations against a series of prominent men involved in the restaurant industry. The wine business is also dominated by men and sexual harassment is common, the New York Times reported after speaking to 30 women across the industry.

+ No image +

Image description: Top sommelier accused of sexual assault as MeToo hits fine wine industry

diff --git a/news_feed/news.pdf b/news_feed/news.pdf index 085b3843c8518ad4068c4e8dba7e641454957925..91bc78a358aeea667a8481982d9cd7d736e3babe 100644 GIT binary patch delta 104962 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�Aa5#&eh68eN&zbydTB- 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 l=R9vEm)`C?ss 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

!^Rr_t^{~vGxWWgY5M{s!F&@lRmOQ>)&j$DwofF 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 KNN5;p;{FF(zEnB@ delta 104771 zcmZ6yLzpf~v@BS*ZQHhO+umhcf7!Ne+qDb3Y}>ZYKDS>F?(12Oa+2$d46GRFhF$G~ zO#lE`*|`J+U|d|C&5i9~Jac+A^&K`j(EN7mJI(^!LFpt)sKy@%Vkq=iA@sZHcm5Gr zMYeTFl}M_%ZyWZ>&MV~dOoPDTf{=X_Fx+y#=1k&3tnQYOF&e*4AA>L$sAeRwg$~2` z>xEF#O-cU)8V|`AkO1}-X6~ggWLi_(q~4yPwyn6%2ai_ZjJ9xiG`q~-+MEL zQ_!eW*vQ#%MHzGo9q>ItVR@gjq2DwHZ;!%+Xmk93>@>djgxPu@3^<7Tse5n8v^sHC zRKhlO24lB8*BMK{ogbeBh@yaCrvekLd2W7Sn5Xty)lsFWdpLECsB7<5W6D_dvPuAa z@`^zx;N#3fGt$V5fbyqnIGtNgdv~Y8MA#-ovc!!iO#h)Y&*ZlNdST1)y(FM1N=dm$ zDU!0I0BUSz@|y^1Y1OQ<;g&I}%g-AEF^H7y;0)!UcT8+jbGr5L4O}=7-hByc%?Xov z4bfF$hZYB6DO1D#K?9h}!G8e#>I)7H(dz#1SVZt}3HE~NLJFd%A1zqPxXN#E zHrz}^!DG+iha4pcF9T!^;q8CJx-j){UmvL|>M>~OM|kPwq;c)NTC$cU)wLU*=1*`0 z=`+y);_T0?sja)z+&}2+G!UtX61f;w4@ZP7MHe@xN42 zV^2A-DHsTP+xY18+zJO^P(JCdo~j@KK_UaaMb0dXH^sJ6QW7vDweh>4jR!t6MLAY7 zZw$0Kv@G{5ReqUb8u_TR#d621tQPi=!~U507FeeCem>ReYz&DXR15NFy(6s#L7!D> z@WxqfRj|O|rSjci^x_plr5S+R*jDbig+^<%c`yLGM>Q6X(eOjTl2OPuxkHYTlQ;n*UbUKI`2-_O;eT7}W0q0=*6528?_mINMV z38BnbdH*?1IZ}q{eFIc{6o$tx9rO#Q5iGT()QW_qdCDu8G$f%;5KqbuMlp~1fYPv4 zkHYJt?f>^g3RPb=@Hc>SR>LPAnI=4z8K`)PUX@-B#Y#B&SBWnwWk>sWd& zGrMJuD^7>lR;?VOkpduB@|_t`g4nI1kYXO@bj1aE1#LPN7QnE|T;kMxs-?RoEm(Dq zATAAoZJe!6T>Nd;VeH)+-nz7lS#!=b(z>>b*sXI|Ia(a0qGjAOKJ_?0wKP7rGzsN+ zU~&is_aS<@qF}Ff7^S>hMjY8yjNKgS%F|sZmWzjNflYI&2I+Y#c9(KKO7CJ6y^cZA z#ix;^+0IVVJ3!YFB;J9qJ^l~~M09cUClF&CD{o*P6GWqffkwV&+Dsrmu&(j1Pe+SI zIrJ1};bp~K`+Q+=c1T)q_E5NlsfO`rsUB@@A~s0$q6Y{c3|S5kVpmG3>R>S&0UEZ! z0aozxS^v^AlY6bi3JART31u+!WL)rg3m3K=l}rWAfw|Ej0j``Q#RzqP2}k(Idw|2Q z=xqPt-wp?hiN^6GV5)M{x^xX+75oTb-8OZDeXdt&9n=n%Lc0q1jsd$P&!doHP|R+4 z=Z}tGg16PeslmOG2UCwv@`RFbM<^hEiBDW0*?%+1#Ngoo7A6kn{|johHsdxWQ2b^! z(HbOjfKb9YmDBx@EDpHbR}^|KfrG@8!ZFrSctx8sZ%)P@RlR0mzck4)vqD)sh|ybkR{cX_q8AjOSfN^?)CG z>)LZjuNJm)k3s3n!FI;;STyxw9;?2x%UyyD-ve^_z2XA%!1$$2UvO4jZ@ZUiZuQXT$s$Zz;~sz#yXO!; zG_vYKRjWcn(bPs24ocS`qm8C;p@aaJ2m1K)PYHhY7$fT z-rfeR$R@>8h6R!oaQOm1LIE^MXEarihnDpTkGr1F$Pv2r+|IUBy?qzMUWp%*xO$_S^z>4jg@S%ce!gj z_rFVIg$z_YoZ=K>$5FUC;L}^)hm_5CRf8jNdZ8&#{D%IF;`jrzb4ufwtG2YANtx6^ zFd@UDaYCGwQ%Zg|^l#Z80jjSjkb2w>(S|1jb#>CyUA94;f;-e+WzGjit0@xcqUQre zc8blT=xLHXYq>N@ae&-A&0+j+EpyK47Rl`U{3*A?toDqL8K+{}y9x52b3@E@yl-6y z4FJ;u#7z_g**Q%EcFMbfEX=c;&Ms4_4SWnQ;+k|~yir1l!P6WyX`p`eOkSw52T23U z$RbxPrPRzLxgvaANyy)^x}eDTCRBv7KD(tqjmdQauO1RqAb{YW5z!nTd_U9a&c>jw z06*8YSbTfYaM@jBN&$J%e!K~gB5O9mjlW@+%2#<|juaREdvL_8X{8Rgpg~w{o->#y z#*QMwo_kzl3?ZPU{3qb=hC!r^I+X3#&1ehio(bV`HB$wCB zARlf1rv4l7pMSZN7^2lr=*)DF^Dnj<9?3*aZg{mIL^D8LplIm`miRb-*4bBm<S<|eG!$o5$gx6*MF*gnE zXPq+bWY60}@gHPQD@prnu+@%qc&ahi9kZ5FsThcJ!K}Z;3OJpA5qTm0VyO!Siqad5 zYotSnW1cWc;o|h~H*L>xR~rS$V(Xkik`y(#{_(uvHx$VCN^udj^cA#``g*d9z@m2k7FScH~n%59$e*^v$KW>ai#X#n} z$F?2?%0*NqsUP`pMH1_qno|W?drJ?21bM~r$>hD4e!$fSo-pQPPtqljV%uF)m+E|q z%>oQd#`&d}Sefb4l?hUC3u$%)!0J&lNb-Kykf2FJ6_BWTy;U)6xm6wH<*aTqmjEKOn%5jiK)QITegdxv00`b4O+&W(n z{@_|3*M@nIEA~RoyD&W@4UPwHWPXrL1Wk+3T%Tv+mXr^NRg{)>zA-vc;-@>StnlC2pZ6}c&QXq&l8EkwPzuD zUc^NS?RN7ArQnK4E9UKUbp5gBcg|MI`J%Afj%04IN>=W}pv`-CEv(kFw*&;Qn|CvC&cBE?w4)I_cX$@x zJWZCld;%$(3%Y0UAJ7WH>J~iuiyaYBOxpm2p0{O2R64A`VC- z^;oDvbV0bGwHVWRp>c~$EFx&|e*tfXMmO}dJ7h^_xe{JVFFum{Uo3zBF^Kr_o&yF> z2DBf9C-=3m?FjK`nmqZ`_FP>76;erbI+*)PiNEWGCcsXH2NoO%Kc_QjzxDdR_nD-l zMSn}s6$k=%(w`I%Curz2h(M1%e(uJVwFTxK*)#^pJwHie2d;3*ie;h3(rE#cD}Yz} zQ|8#~d3ZVy#ovniqg%2`I+@O@L#IPfP0AYHl(_mI;53u4vt$?82ml*1)BmOmrJC{% zxSUA6roZ@88iFePy5v;XSgHWl`s{XQ7!CpK5y^IS~{?+ z&X>f&09xb{#KT?xklm8AR+fcdki}U@^8B7qba1Oi3-!dX(yW2&6m6k~Jxy!ST#TO* z34gs{k{KB5oun#h_8sCBXkW(*IA@sE7XmE>-LXw+ZG{Jrrk=6K;Gz`vkYgoP87@Wi zx)g1BBkaKu#hF?77cuun?S=K{&bHtO8LUJ*z_m_>99MYmq`;$!>1=e&F?OxYjOCuChL+%13{G;g8{j-_eMMxwp>XTh=mN$v#4N{yp=ciOdK({8Wf%x z0N!qea=&mj%M9&(?+2x0*g55`xAMvZN{zG-7OLzdHncAG901*ZZfIYga*}4rOraRs zvt?MkO=H5G>@IgJ^h6f4-rzFmH>qTU+_nrTB2WJo&zcReU_paR;~-5N><5{u5p`&VahG0&9QR<>1#LDZgS(C5clBVC2kZ z>MU2gQUJF_m#UEs4}s;2-H;@yTJcP`9yXs|@-JXWAt57+P=*sLC5}*Pl){Ujno35K zKz7t-&}L6w*z>c=6V5o<{={OC>YuR^3mWDe$#HNJ>gN3I4-z`>p^Oy+ul zYdoQ^$P#V*`9|qe;)rRYDi++e_-MD26=eMAflGjPxr*;K?nW`nhVGm*!Q9H#rRdoA zDRJDWhB$d~(1JZ13_4m>m&Oih1Z#hu*zRPp)}L!m)7<@IjV9)m>f2$S+N?FGFevIb zm*VeTiraBM)3X8_YKa|xfM{pa=2dc1SNLV&q6$|>vWaQpIj;=^NRK3ZQ5Y6Y7eJk4 zktcrqHR*h4bRHQ$jVMyi|g(Wu#zDWdCX ztpEA=Y4++C7@yXWpV_6BC#SI%|Bg!_S3)qVDpYsKT>MNGi=MPbK>xp2XBiNkdWt;17)Br6JM=;@IqqmsAyk=EF3G!e51n!xv(vJ<|yFwbMR7> zFc{nXJvV$Fkz9~?3I;yB9;imcFMem+moH74BSUv}utACcfEt)v z=bO_~oE^F|GPI#}mH|9L4E0HrZx- zGz?18|BSOlQEl`R8sp{u`du*_IN!wNU@!pyEMso|?#^H;ntXYSYu~`d@4v)y<(mKt zD^K`7abJ@h)QJK)Ze!{tem!5B{e}L%*91%NpvV(X190)sP0OLDN=#hnSl3qdU`+|e z{pQRh2N`#GU+hZ-7+AwntQhyZllajf3p#EYuz>M!`r;7L^pG5J7@}ek}_C zSgqFLzlr}1#}(d_igzg|6ZP)kMBF!!17N&rmy(qv3>O-NV!sEh8KT}Bo04#Ze>z$D zs3?HsG^CvQjy%l=ny`i^JY^8G89Z$P=9T{4B=b)~iB}c@epiLmNI?O4p*Y`O^Fq6< zWiR2@!+{8?of+mES?f6?2XXDt?V=38SBhl)G*#>_QkxRkm!w#6e~aAH8F94AuMnU=kR-B!)BzmrtU2M!j84U;Lum}wpJ4X9;I9vIYD#PQWApVDuHr)c9n)`?x5gwIEFSCvnbt|UIMkE0@a!MAG zJxzYY@rsi6ricqaCRiOovsb3f%OEL=aQsQfGliNriQ4eQH8VBdOa_}0JuOP3L<&&1 z$Z?Xeb((PHB6Wg?5(?cBqQMQAo=AGooMaI#oA@G<^`PZFk40cdo~x42Hex@DU&yR& z$z^Wef6rZOiM5S<@bF{E(bm>_OS(gC3SOTCJq-F!x zphD~8mC-D5nze$^n8_4*asnNsPU(ISf->b+6hl{PeBBcz ze>8>`^-Iy8Msov(<^$+ilM)fi@r3M$(>ymR#zvE9GqUGG4C$*OFxrsjn6enwkw?u< zj8g3Jvw=2>Qd~V-ZB$rXMTt0me+2F~RfoBS6AJdgM9R#{RLu@5jfZ}uCiJ=bdGO$J zKI@b!64$mFEniy@HZbIbf&>z~BVb}g0oF-6-_KAVBl~thkkRwnVJp=8_sXrlJI#2q zF3x`d$Heu2MFX{3`Y!+ZRlc+J8Rgw2QF_2%K+?ShW|MKLE-GEgH+q#5lPFp!xbzKB z?!sB`&#TR_6D3ri501w)n4MrA-WFXxVOevEyW}Q+3%)%Z2+l9QLlz>XP`tP1x<@@z z79Ot5SaPFmC8E_SG+@2y&H=H~R@MK5t9Ps-lMzP_)V9|dMsuEkr3Pj8=(si(?6 z{oUw&$AHNgL-`YzL6;6;7<_9&U- zD1~-|&66ww+Uv1Po!GO1m%l3dq7J3=xSQ-c3kE#ayvq{`sUfTzHUL$7*YX@8oZOG@ z;)$Ee2EW5t=dU`AxRVou#3S@wPV%?B{6%D?hF5VE(p^Qa zZn<>z<)}E6&1Br2Y=GP;u()P6bSn(yi<9##np<5DKey$A+JpXYjL_P8o#Lal%8}|a zAeEk{LrOciJ`H*5Z2BtIxMZ&;p&zNdkEW_dHSY8|1N*LuEKH@6Rl@#W`q6^ft9k_E=S2Bu#Com_! zKg6D2mQ+VXU(81_-S`5Dwr11oGyxI z(U*-IYJ8z>XV*atH%A>q$cd!FOzKExdym$)GnrwoyQvAEHW8;T+dR-m6H_#0IN{7@lSo!gjh31MZluyDaJu

4d;4JPy0T{<;>+FoeWUP%bpnp%G*KH-sfmZOV zf-2mb3kAKgXjnwfS2JoV;tuYk{EzOe5yL}N!R_|3(W;_HVt-PX+Tp%PKFm@hhJ`Hi z#{WumZN(sFbcNBr7exJCY(Q;U9|tv@{XR8PlxbDla0Cnf=YkLT^yn_bGus!jGed?5 z2K;kdqJc&28EP0C^2K55$G3FwQAP0{t-MAzRxW^OI`#_bD!9nriQwxScprFKs*Jr5 zSx&svv;#U@kAY>MU<5WpWsc>ey6R{uSdX>OQHJ!U?3QsSmjtLBNA%X%gI+6mhjdiH zg{drwGuTX8(x^v&A&2{tIxxxK5fGG~0MJR~EMyZUF4LKO?{Z*3c^r^XWYJGx&XT)X z3k{@_ZGLvN%5bnd>yJ^Rw6G%G=vZFCIJ$hGO<*2ltGD@~5YT}9COP^|OY1i~B3gwO zC2I|2T3RJA0~z1kiR3oxoxq$qtc#UlQu-@u+0yq5$IMHD;$ZB1aEW^dpUjQi0ikxt zbccg7`Q41s;chU$huC`Y@gOkuurVYlaAJE1@cH%X#GiLuJaFFngHk6X(LUHXH~VmB zehQM#e4eeU6;a}8Ic|{FP!ob{{4?FkM&xzVnT>nj8)=YvJ|$koL72l~PMjvj3O+F$}Xdz*=H#ErKriGV4}gBRT^-NCI=&p`#7*0r^;~O-NB5W7yfRn`cGe| zUo)=RhHYAoR14L_84!$3Fxt9z1))9Nc$$7)3O*_BJ**cFJOX|iEOz2#KwfzE7@>(* z79Py2+UpyWy;eFB(d>RW)`?4PW4M5%1TvRbWhR90aexCD{6&)Ztiegcl$$YHO>I4t zqGK)ye4Gj{GuvHFn4-5igFH#70A?aKu2s%p9^S2GoK=HeRYqiE4^F%#ZaTq8gTH|{ zTpEF}hd`Y3M#eu+{B{+800U8TPv1VP>u%q{<~bR%Hr^pZ-%0~i06AqGC&`WhD6FKU zpk#P9)0q{0G^NCI=wBsPU;nEs&vG_JopOQj#9gk0luwY1giRZzB)O@gU_$+PeNdhL zGu8agzde;5qT3*na>=lS^z!+1uuNF3kv&vyf`dww;|oUW01n^aLCa!tB)ka} zZ+CoLGT_jz14JF_9&5kvn)H&l-e3L4C$~#TB%Xdb6_)~1#2FI&NOVwFBL@g^w<*GY zJG!P<1gm;R0Vdw6glu4sZXj3jlEGb#g#51W`1Ai<9ktYo%JvP5Z6?H~Ct+ z0dWF>)9snDBLtg_!Xtk$C#8=8e^?NGf!icmm-A399$!6Ga~Vlvv(fEmfEz;zUv#Uw z$WdLU{(jJ>i^8_+*u^W4q**Q2KSpBkhXq$*y+zklOF-4bFB59>4ra0o18$CcgNdC4*LIX!L3jcmgdx9rZNoa4+Crzh&NN zoa8O#Ht|*+Da^I*xUxMhWnS+R;JL<-b)59c|u;nrg0bCW#Whv9& z9=GQD5L~4WBztL3NaQVb=)@YKJQ;O6mHUrns(tF^+e-}Ri!?>GgP`S$|4YMgBu}kd z7or5DPE+j6C0EV)*?tt0o`gS}3>Mf~c*Ntmy7LpqGug|?BklDnTLt}wsP`ra4@H3g zuuWT#jDys%ZnHfhg!KP*1IYb;<8AL}C)vME&~giN@U0}PluI?ypEaB!c@;&VTr;iD zI}&KcyTE5Bbkz3)%CQJmDdY=sspSttwWdHLT*geLF*Ova6wYcpi`gW)lg%>e(!7L~ zb4KrjMNya7WtEOX#78Oh&TrhMTVH#1^KxA0GS?b`#H}`x(Ve5^0A`|b^OD6y=;g@d z;!R`G?|c}o4%w#>jY50t1kLWaw6ZDS*0%HEu#P-XJsd`d#a&6&rNi0mQQF$%x-2#o zsJ5=H*f_pKpLsUl4R=UYB5v_wN=Km?Bf$SO;=u$pYpH9Wx{1VD zMLP)AAs*t0g#*D@Z#+Q@4rH(8C+2Gb{kF-e;<3XotAMURIwLMnUL!S3_t{qAU7dSg1b>PG?Dd3gRl?g*6P4tZWG)?+`KIS*Zn@!`lg~(v zC*MQ|8O{?}n}pNp7K{+ejV8aK)7m5~D5B(?;l-z;mXKRSkF(N`Rhh2A(JiPQ#=`cZ zkUhZOP5SX?9H2HO5g2NZheTA--gHn<;1!cw{wrm-pcgP*Z5;H9| z{hviZDnRzuF&kL=N}LU}r|GxR1>q)?H!!BvueIH6LQMLZ07v&yV2G z{ZQ$F5uQ~RKE_)9&26R=)phPL8@DQM%F%Z~Ds175nU^dhCl?m@2hl(wLK`43(397H zi+{2X#q%HE=LLciU9>HDBSIh=LEJgtHk!WNOS5n8F~+YK z{pKG+QjeoA@`Gpt=W`L8Jbg+su=vJ`4^a7|VKR`}ujTI3!mHQl=>!_MGP;~$+RXpf zrfs8u4V40AJD;@^6=P;F{|K|Z7&A?a#zUNgN0!Hey3w(J@G-Vf(}@i=qn2EF zB2`!Q-av*i+yf_jo1%#`PpLh(HC39o%r)iB<580Uu6!F(bfduSx=DB7v+UwO&Hpl* z$_q^xb9=M@Z=dhKlY@yhOtLzK7l4_S{eS<#sakdphaJd2{(U9^2RAzX8f3C)S@n+Zfab{|X7MBGWtzr3j^moqm;n&GU(`d#EkjwZNL_lOCt0SZCopBn$y#&F@Js zf_k;*SKboCbdxSR4(E?N-)eL3)rJ=4ne;R|br|c`(wAXBfH%c?ZCOCNkD}@aMbHzm z-)H1ssd-EDl3&zXfDezeSt(tUiTI>>>U6Z{QLW>?<9Vf<3eE=YqD4zvOX3kEC1uNP zjc-Dn4mO`O{Us4D%LDVAFibeS&Z0(Um|B5^U3(RQYk`sUL3=IgGe6-w$P)4Z$?OCT zvExFuL{>ovpe%P=_H@x-84{%hIjm+LGDuzkwZ5$>5h1#jDK^jHxg=}8RA)!aFqERByCfqv;V(tbFFWnpcX7UPl_ zPaW9F83a2?!dhXn-dP4gETJ9yTG)B~4rYjeQEPNyKn{uc%Q_NE!{)#}mZ>SI!PASd z3aQV)!0^JHw1GXO=HxheM**83@`x;J;cR^T3Q;p+Ray%#c;=OROtF^5X)_wsBhV#s z2*wr7sAdHOwGe}~P1}NWFsKa})R>6mAe7%7aAH@_`oSjgF^F$Ozh8M9F-Yo~y^lI6 zr-c1Iz~E}w7>**oMp3xYZ|hywJ>3Zjyl9RXy%k^1F&x?n4@?Rb#Se*Y`8I>I$L4g+ zrCYwG!ftm{A{2BVY@AoJ4D+wNQTh>;H=|i3Cjlj-8`cFy;uP=l? zCECkgMl*%nwh z*G3Bc2x!wKijp)F6n0Y1#ce`L!ZCfIIk8rj+a6lSw71NMS6}~h) zH7>0#>1^n(iMk`RRD|_NH!WE`H5>tmrItB~J&`RtW%ca;DFO*^<3=D!LAPf8$v|p$R{zRB)^LSFImwhU6sC zP}@-mJ@bIlaFT8eA@J#IiWLubAQD@KhcSqY$6|!lCT%mHKB*QHH3zpoN%!aZbL|U^ zdf(u~RC^~R&!FcDU3Nk$?3HIAi-q+vM7HvkJVZaY zCuCpI9+bkuh%Fz&9F`S^!b|mSta*|B)f`AV?uTOtK=|%wD=JT>c*8WbsMrdjepjXP zRnvc}`2qqxA^JYr?1(#)D@ggA16vz+kOur~3Lbs)rjrr~Rr}?{ z{*q1)->Clf1p1QGsQ__LIIjHhcH3%k{66McW&{5k*prBMSMpSMHdDUcN(F_FU zwPJ(|BxX_h@m>Rk6=Lx~W|LbTanpqFGju9ycuiaFxSL=e!8ZYS>sj6T(B;(s#>MpP z|0ST$+HK%7oYg-7zrRI*EG8jhfod1zlY#%55GQRBfo`u_N#3W&hK1QFJ!U5E$11~B zHw>yDctmt;5QRjJ%>v!1#ghuc%*uOh2~}P2Wm7J{urpQ}=;j2xp={lhwhVO>gb z#^PDI5t^rPSC9iSx%}<9 z6OAlH@4>e? zinLQ(=GVNRBOYJO0vGQGFJaw*ZG&49lD%d@Vw~^f{ciljJ_+y@X4ON99=cGhKsPfa z3Vw&X_!hzgOq^nRIR(}(_DnothGQJF(5AEL?x7^S-N|Qu!d{51y+=2*2E$so?`2a` zKFR_Au$2OQH|~Zu$@Wz9jT9f%4UWA2(lj$XefZQBvzDBC{_BPQF9HQ^R<>G+3C?1# z_<~;&3e6|p%C0Ez#owd+C2#~5#qLqefBXXXgF!QJ^DmkG>Rb2|H*OI+dR20CJ9la) z0QeDfeh;H4b3@fZupvG2jyg1+srk_7SEl6dXth51`W z^Q&J%?MyXy0dB>V705QsY87=+q@`Do9Vewq_cqZX=3DhUo!M_Mw;p@GS3VzGDZ?PQ zxWz0#RzB?2n8BF-IP8&dn)}PFowgqH=-b7(<=i&ae;_isX!Q$R!4^69zo~55E%I(a3HJ zMDf5S%+OQb({4P9Ld02wg=ge^AQq-!4gsa!Xlg{p}*FJ zc-oz|;`F?N?0W*4@U9%qCWSmGc25ReJt{xPqXRIZ9=5tKh6h$x(D%O+OMNmAIrkw^ zMJB@`7jb~N*?`m5!gyWvyElSRK6xz_r9@4-dXT$jg(>ocu8k`5`k1^MEj`{3-%iQp z-T^+cvpiQNP9G&sb1MaL9hSVXE(e`1wCh^SnBlkdCby^drH4%--NH)c$raZk4_7;R zOs=Zw0-tVwty6yhboh=kWt|o~w3`9wWeNkNpBTVN2J<8>32SM1oo#=yqkwAW(DPO) zZ>Z)dMX}>GUT|OUJe!*S!~eW&bkuUAvGoA3U^@)EzyTL;S5Yygz44Yz1@*FLHNIHN1oIH|sXpH_$G zyab@mUgpQO0Utv5M;wo+My*dNs|lJOZp%?@a0b%zd}c4UCNXH+2Q}S9vAv|-rfO|;=l$EV( z<;J9gwP8TssKLsEZ=V3gWM+4w-67-$&nzO(64>}_z12S;6~;( z!xq!Tq9)?K3PUGtEK6hMFBl*Ape1o)wslOQEUS^8t_}k85R+ePWOhFm&+h67jOzWj z6nL5V-6_I~0vwa0-4zO2Tp^pTLzgF4Yw*Xq*cLF+>Wb z4HtFHWL5@W1)=M_RvS`Dt3~H!M{g{wH03#HOXMv9t;58K_A^{#q-{De9t|Lf2iU>c zowni~OfWw^VM<$o>$WY%(8Pt(*c4k976GYPf!iTyd933Vfy*#=gHf{!t&f7AGHJY3k#`VFsQysvJ!_q z264?iFmVsGE7Fy{%3#`8`j)4yS8{fu{r{9Of^Bu1A9mm7cWC+^MwLw&$@QoZ(Waep z>5~EmQGvHj?UP9rXHOowbS+{2OuM&#`L$As6z=8B%u|ZCm4YPkiW@*|v zzbTs`izvIqhSM&vXAZ@#F-tQdtWg}u+$I?_LE9;+;m>quDFS6q4 z=11&Y{V+5Lf228EVZrGa$-`n)3~_%P)wFW|y!o1vbikbq^#>7vBaF{`wwB4=(_29h z)?lRx{RDmbhmYw!Hl4{>V3KMQMG(#>+X444ni`C%WoMg8D=H7B#{4MeYSkjGa1lMc z`of%ET8mPaExBcFXkw{l^mY5s0V!a8O%Y^bk6qr|qpwn;r6tLYUM9=IYQU!7AW36* zLP>ej;)a0HlYSpio%;3us{B)2Xrq_E0+m^(wyMLh84hYrJSInN8VS1hUqCg9n&r$} z6fh6zCQ1k80<$QMC#NN5fCM=ZIG=FrpQM`g$3No*V`tKxy>McqH8Ur-m1t+TE9NcK zdWM66$pLC=Q~dZ@+3T}{4+4`es(7m2R+SLEfA5wmfa(bl$RJ)+1pEuvGOJDy#;4!Msb;3f4m4KK(5cjM69;IyTO=uJL&;V zEQSF~#U{&Yb&(Dk|On8$A;Bd*$RQiBR_F(J}H#&T7Z)hxMlz(Tr!Q<8} zi_F{uT}M6RuiI^pr_3%Mr)}2TAv3v9I=rpn4bKl?D{{JKLBw;l;9DkbN9~9HOoY}{ zZ$~~q>byRGI-*QuuZ}5*p}VWhW{2ly+C%YT-4kw`_iA01e!h8Mcs7obE@y8!InS+y z674XUJpT0xkJ+m&9=i01Jz|`Qf>BNs1I&0TZ?2p!`kSc?Yt(qD`>Q~z>xdtZE(IAn z{@)gWu=x|^r_ULX^U4I{i=hJ68V%9fJ!jv<=6k$kKu`QO!mc>YZls_NY1G9}#j!Eg zr6=_*wbe}~seOA3Y;0kRQl5MkM+Rz*A*3P#$l=dB8XVrA?rd$nvyO|w-JCw{zsl4{ zGe`iV*5QcDr<+0+)dKxlWh!cEQOFby6CVXc;u^U6&XMYOeRT|s&o_1v2UvG$Y}7_~ zE|Tw}jDj<@CrnOsZBo`e2EL-IM}a(DD!Kc7Ko@yvdfN`u`?hPe;U}03bx%OPHVBOR znG}OLX&_}5=A7WubuHXS3PfWlaqDv-ujlm}d7YJuu2&3;U?iqhoC9}g@zw~7V50VjF@uVoi7`)J-W zbXihCoGMcXc06z+5Ben>RK&s?88JY>mbM_k$l%QWdZJvBtIXYQIZFqw&H4}xNVrEc z%%EL%KVW~Q=Ay+34?g({O)`hq>0D!AEOstfD7Re`X5GiKGiXPA9a)eK)*(hZkYi0 zf`?t^t>HIh75-qx|Do5(?_wbU7G@TX|Bb=5TATKVW61yYc&Xlq*TKoMN^bn2TiPg1 zXQ#1kn4lXN>6@ruGR#=FZuP}}kn^dvkCVTFaqC|HCRilHY`X-v z`D0^p6AG`@NZUAzm0BzA>P(qw_M}rw%;};!+H~+%>TvY6Y19GcreYD1&b$c^Vo~R= zpS)nZt`eXRJd(_+Mo#*V8eRixWUW1(9l7Bxm_N4ip^y5vyH|z0DS&o3(D|NfTDT0WQ%VISjjEPQi`bTymH5v@k*P*rH{KP9axG}ZDn z(_;=Q5#PXs8Wkxaq=DIk^#!!vrfM_@z;>Qq`cVLDv3YAYFckVAb6q%d>haKZ;-Fq< z?&ayW{+ZGy={hrsObP!ek%Pd4064yhiF*qKUZ_*Chdp7n76B?@LUDM$jq#xQEe=m` z-FZKM670fL98;>$Dm?#$I0kyVzwMCL*3LN0Wgp!&XCpYou%WuK$}8*0cFN^h$x9h8 z;0%C-g^o((u%mR@d!P!x(v&&~rISf@CcAfgd@chLiMfmfnP^vDE08YMjfoPc4IuKW z*?U6h7EN#-<8aGYhyhZ3YVFo)pvZh#w}rbbV807lwwiHYW>|_s$N}(yGEd(5R67{T zfbzC*venQXV#h8P*Gw0fIY5i@ZXaxNP$ht<#8<7d28r8wAYDrIc`oTv0r!tA6K}a} z@hjy6)2O6uw5%DH=dBGjfv=<)&{6RDdKt}GV5Jy|1V6bT6_Momtt&BsL_uvLG|GtI zu)|G^1h)fj0mR?u70bj0&j^s-t}HLKPdr)_Dw>+-fg6Jpzb$v+*(|k4{nF0ldq}`W za=rr%o5JR@NA_nma;uGZl5~m`_iQ#X%-D*_xw2OD?CfX9PfP46T@Jm!-@Yz=@2=11lb?!)GxfJChnJkIr}_22(tiw* zIXy+(h(oV=Gd#GP`Y{P?&$$-D5e)$56DjT;4qWhM$qet7SG~4w_ONSHJ|WCJppd=? zpgi5D)Bd%EKB<^ebAQ2bBI2d#JqU}XGvt1(XYoVJba);0`pZz+0G|qzV~I zA?9B@PhwWiylQ}zm9)!Ho*>=bV)u3sKp6cel*-&YNgEhxzfu#mi2>jZWm151Vc~Yq z*a?rb!e0KNrVL19+BIsm3Z9OwRpmtm6T7{;C5(C?M}3%DLM^`6txSCaxb8ozaDJh2 zAt?qLJZ*5WtfCHeMWlqE7;m&kxTUv3u73T{4?UFHR>5)YlCfq~HFEfQ1}NthJ_DJY zh<#KmI0qRFLE^NVB;R3!&f5T1eKhY~)vrz!;N8UN99uMaTrbUm_!_#Nu+rvpH9P%M zi9t!VQs1oQ!#Qq?3>Ax7J;GH8dLhyCT&!EWMEN=;aYEN){QK)YY=w4b0pma1R3Ojx zRU-Uj2aYQzkLGbv`9-b!FeHOIS zCt(>4Nnr-n+Xbq3Y6O9=@i7rt6cp*w5r!7b8>V@zBMaQ|qNUa0{)V&y0A@ z)EcZKP*oz;bbJ9mK^ZEK=l5hZ>k)an*cGUjtP?diWzgj*9vtW7MM8NZw9e>5C@eFs@Jp6zT^un3q7R254tJZY1<11@EJh94c$vLjA!)Z8!zQYY^SQQV$D;QkUBRYrVy; z&cGk9fXIrf1sc}pN*GiUg-x(#On3fj5Y&tby& zShxuY37B*`+W6b%?jOP5D>cCL!#!<%jASDG!wWpm*hDv5l5@V zNn?6;RRaP@z{0Rud^BWx>30g)2v_-V#hh8OayOgXnqG|h?-3;+rY)Yms!UlFs)~6O z8}12T1|h>*SwR%%v|=j+J@-CW|1KwCKco>v0Y^SL*;|oyR^S|o*;_{tl%21blCmJr zAGuj_L=7{V7kG8ZS^uPp`=KN0jj~|*4M(vTbdd!}arH-$a4k6__&M6-2qmPW)Ti_2 z=%eBaQC%M{&jNok_C)4!BHbt2TXXUs3>3Mn;EUkPon3EQEzf52l*G%CDPx!`F&w5X z^kjldvzzjt*|_!%Ztek3h{qObH3v7F4354ju0CsY(r{E- z$ZZhYvZ_YUr5jkUXOvb;Jj$oKRyACwM}5;X_0%RtAVBh?N9;S`kl*_(s7le(@gn-G ze`5K_e+tYHLmSKM0~9+Ca8>0x#1O5-EySn|0YSisNwuM2$#4!9ulTS&LrKxqudsVi+8X4T|8B?Sv~CDm-tcR zNju!<4^Sy-*~jpEHm3Ji7y3Z_c~ZD5QWrDBzWSlV@6*G318rlPk6~vcCl(AGwTqL0xlp9z)zKLf@4wp zF>-I_en7P?F^8i+cvF8u^dOdT2>^{E_T71%q|ETT$4*r(LIN3_KUcN^yxq&|stLR_ zUV1JN+u~7NBc_)4d|$}w6IHS?sfrAg$~CsB=QCP{$=HEc6~vist(V3+=c}B0{%+PP zkuT#j68eLb1qd0T zzKx@p6taOpAAubjLMwHLLN<1BgGVYY5ho0rp!bsQoD1l7Ngcr?d}6#-y^RTi5E0(~|8x*sCZE1eQWm?S?O!DdbE!R1A~Y1eq2X zMuV~iu7Kz(Kxv8*WLNyE?aX~Pp03=LiQIhehI$iR^e{Kc6}-+s3&1R=%+!4gRK*mt zM13J5r62ukB^=Yn>>cHaS21qKvW7CwY~9#=R@F{E9XS}?2J_*Q~=30vrvB* z9no``i<1hcG6+rmo26@%D#w?jSa&`WYs(I@~`@LH1OF1vLmu1`ZB+xVGEa zDMyGmk#o1@v~j(Sn}dmev?vibf`;MgQ?l8Uxm*BO1~?XprFUWw6)wsh1IrnVfxEp{ z9-2fP(SvO%UYaQ^jfM2`m37QFKkt*1b~Z3hOkgv-wO|}&5uTH^@*i`$Ycc&3-_r+ zz;owFwQ*Kj;INHOWxr`&9db)^?Bx_-D&e2*4W^TRaUu^3HiJ*L6o^MXig+vbH7RNF zwI#2)%^fQo0iajs+L!WdF{7}tZ9qK63#anH3i(1CbtjJ2wizldvU27RR7`cz=AaAJ zVRMEFgTjt7f6`%#yZ&Oc;7gCS^4`HNY3eAIP(y1B^M)pnJ0tP<#A%f?kN4GXOg?K5 z8T|RxMsly(XUP+i-$;p9i*db$I-x=J{>c*_ao+BD4v6XSOiAD*R|q6MC081giMW1| z7mAq2k0`O-4|e0S9sav3Y2udiY$a0+zv#ywvV2c>*{s<2e{c_m!zsR zgEr|(1!S*nPt^U6`}L=1;F`iZ0^a%sDpF8DV(UASNca1R)A_{gb-bII_KB~V!`&5? zzHtd2C7XclTAY+!rXy;d5AjX0K^y_OLe#yOeFlE65%$_B3_Wj|z(TLUP>JS`Q`{@$ zI3w#L0%l?OSv)Z}>x0h6m~-d~l2-tCTZhW&Ilyqg11u=*xCNi8Cn3j&nH+n}WN_hd zeTH&$hlgjHUjK>JD)N%X4!^f5Twc0;JeBI-lcqPOh}U;sl$;)pHeMJwWcd1u(q;BR zD4jPkzhY{9mOWC@`Ay9TvoR&K1a29bgo}RHG?WH3`!e1SP)d_O#54n0P-yo zeCefPj+-Bx*(Nn2g!ak&LrIN%SBoi31ab`}Un(|-;lE$hr}){hUG5nkTz?&f1$v3P z45@6hcy1GyqEdDT{5H__68$&9?9K^V16&_cTR+-BNP40j56sT3C>400lg5gZ?oUnz zr{SfI6lh6o?S}^A<`0S&STl@#bT_xL_q#SFS&@R?AVU$vo;ha`qT~3ExP|Lhg8x3vrpg@=>Jxcp1QLhORqJTY95 zZF$gN`ip+Wjo@z?JM}<4Obgm2qT5@tm!|jQmKYX!8KzEBfnvHH0TT1~psPo3 zU_)$F@jW9@O&F?9&3^?e@ypE^ccojIO0Z7AgnRkPguM$=3QL$D>0Mr{#x@!4lyc1D z*PGpf1fc;x4!GjpWZ0tNK;o9T;41k31RLMBG5K+mn(su>n|3mruWU}q2z16<@?kV0|as_9(f zf*IqlxvT%qzbUUe%J(R~!FHNO$Bup&R0^*dffjP3AP-XV@tC74pAEA@Ik3f&&?RZ`eF zx6UtZwBLg{QRvGQ0PrPJO6@%h%Bras7X98fTXo4%V7p8|`+$lw>-35axb3A}hnM-# zIwVS{`pQ2e{S{s!Ev;fmpYO6~AwE&4yjNV{Ys!fH;JttdPeXg1I=a)k%6C+6hfU9k z3E8fEQZAgf8JNzEmzWdHNv$q%P0Q&zvVWg(>7Brbs#Q5;(Uiq0gyT%j}^VU!gr%4{gF9Y>qqRS!-yS#>ifIQ zItQii%mq>9t}2Rq_;X`t7^h}(MHBCv$XCoh%O$IX=jbJ~5|> z8td#n8Uud`Vx92?=-=r>=aE1_d6A6Lsm~R|taZUg{z!+D=2dx130Y4X!}_jhD(~0x z*66to=h~P7jMWRe zENXaOkN9X`Q207Q0@E`97)<%|Sg_PJ26mPwoCDCtS@b8(m3=ON(PUi(GvMYAb^i*G z>vFC(o&31A52$d*^jxDVS#pTN2NXO};kuZSUfjHOzH#Aac?Mg9lKT9@Zi94-9ikWA zCqJ}V)5eqe(D*StJNtzK2L7v4CSAQP3456be?O;JgS6{T2vscQ^I zbJvD0&b2-v^j980YmdG>b_|Z%_GKXgXEn;hO1K$(D83UITlsVK)Flny2UBJQf~?cP zg;3qX@y2l&L_#vdFc+oXQ7GqZKG7~V9G`2FIB3ecifq%tt$qK$bfMiPaZ=@S(5{(52=sy&rl#>O_1iB-hupeR_ZS8mgcEP zIHH?{IRC2`zyhUb#DB6 zv7a2AVOW6ZN8M%Jt`Dg}pz6&WRTsn$ww-1sz2bK{65wgg6gyLChR^5ifHKkp%K+n5u60V@( zsX&>J%CIzPBd5xhs~Pv^C0^ue&;o}FM%^C}@XHBc{+JIH2&62w*E#ECOgelZs95l^ zIc;;ZNF}MbD+sg>W?W9Ranqh(o2A4K9F=7g7RYAPo6TNJ#$-q1Nb;7?Whr(WGo)#E z#6IQDiG&5xqF|ps53`IOxh@*H#93NdIL%Kel7dULS`G|e3|A)?!tP+zEA~PSiLqAY{ z0|vW6-iKXvULHsF2dE8mJ!dJ&fyAUxl2fk|XE9F+v+7HCw$YtrqL)qC%FC^wH}qI* z0a>*VRaOQ1r3Bd3eaW*tF*p~z3R__q+&~#ESx)_ zJt8=eR3=f95Y)@ER?;({k&&JS80mKsTfu}IJRi|M{{`*!VTuQ!qEmN^+2~8VtCQD>B5Q&6q(&bRowdmlNUPzT z`8Gd5L)DKR`6vQIAs~XI!eFAkiQ|ADgY55kXF`1z7j${I8&0@(cIqqT0y#*hTIQv- z?0%hjX3~-|;dOm@>SVgl(l#+}yoyZ|_6o#ifnc)w$d>idZhaJZDQd7?tqcrM9_y6A ztH_rJ`x=782=b_eO&;P*!RnMkzvItbWlW8)G=R>N)E*p`Ek$GxX za#Z&cu%L0n1runedL~b8oRwFzv5uZQ4bS4_g*J&4-ZBdl%-8o_{w|-U056i_LWkol z?bt@h3d~P!7vI$KQtXiZjdul*qEVh-d1`HJGZe+Hq=k)B4E*J0dM-Kl=ghe)HG6aW z4HwMHfI5qc+FYAQm@Pwao(7q4t|xF#N3Ely^YYnfAEG@%4xlXB4+lyzo=r$=$k4|O zZ`71hRlOVAIkyh78vlm42@wHx&UXkSI=spasOUQ-UPu>-g`b=!fLsMkq=5XY2>vP) z+a^?J*~@gs9fH;)T?#T7Q9tFFXD<$eWf6;ridVzJcA3mrVn0k`y3{*^Y3m*z@`7{g zSh95xm9P#6R{4H<#yZlZUv>VS&65riFG!nNj@^yDjMvC9A3M&M)*8%AIjIBSYN79H z@K+_PgD<+FtsJ~a!;=PZD(YK+Fj>6koM;ysepDfnrZatfYu-c_vfg>0uku|3I04~! z2>ZeJcf|U8fB4t|N2iE|r4`%vn_ydpP7H>~urJR}h?L8A$0LxHJutL?0!5pcH|gl~ z#s%r^oF>eY-Lj&P_T+nkd9rli@t!J@N^Rry0!>=kI&wIzr+)wox6>P0`^@OEBmP7j z(f-P%Al>W>_ZxIO1oQ2(*WgE71*P&AJ}Ml1S0CR(Q8>MUl06ir^1h1i^v1F_ZfJRS zl+jo6wT*EGJ|)|vni9q#lT@Axrcov<_h*-Z{?MC^Qew9G$YE#tjpY&W;1x`4qMT(Z znapt}O-a#Lj%EPC`8`;;T|8L@`x8P@+dh^=L9mDM^ve@PDv=GVKWDC9+^PLZI=$%B zyL+Qd)eExDCXgAtUdotj^=^$Xe%))V?a-*7+xAn!LRR3*&ZEML<2VS`uq zmoa@?&yb6$i4F+r0f#}gF4$j>McHj?o%J~DIBZKqJTPzGv_+$Ok66%zz4UZ!`s6w=y+fGxH`Afm3aH5 zV$M&d+7Q4S{){m{E6fZ`av$tzvwqQqu$$-ZkVNpDeS2F`wAwes7Sg#7Vuv-3sbE+N zQYJHhyvbfsM$Ez5^-*D)C$AS|mZhYg^m2tap}-L?wAUR zcyVU+azfu4t?*MzVl?I5DB}6)Rd`m^4B-`(>VuniKLu?2u-mf~lK$Mv}ca(QryW?(eUd zaC2T)0fisi^hc`({UyH*bMY}v*Zr}!*SGb^AK0IGL;erI&xRpSI*hhuJN<{?i!!@X zkZ~{O^EZL<3p`=6mu3urzmj6pYI{imLq7~a|><%ZkTCLU7wk`jtm(VVxV@Ewp zOo4k@y-`fkv9Mn>T-zm-H+{JO?ZZDFvdtek*j@aUd_kty8$}g2NLhH4<*$WLFmuBz zwa7}#OkG7>Ev?P|c#v1UoVESXQxX8M&p23#{oyMz;Ib)J-24`uQlKFFX_)fGCr3&( z!ymmm2Itt=6`=$YWHKa1v|kfgRaIN=r@c(tRXCF}31&EQwR8Q)>O4v#kjjYA5v< zT*m1&mZn+9zB1COENRun#}CUM#hEfO;mp^ zAe<~bEw;oR=`~hLHPVGevk&RiQ@q$*p{Hj+8zsQ!WiYDglHmw|5(f*!1OmesB$NOe zKoVpGhT12txy>pwy5RPLR0sm}UhhgBAkLuYGvMuQTKduS|J$}lG5$WtSP}O))aIX2 z1naE*sM&?;D2)@IwB?>*8q4{On(8|lB5Qc-~f-%ct3UCow< zkrIZpNnz+-?77oh?$nsYwPYYn=L;`IWm0Ja*68NRkDQ~SBeUT<%hdqnIR3E$y{H0JFfTG3}8u$dI#DUceYL}kujwrle_@3>@C>*~LfQ#6MGwE0mpO5vp*0#|M zW!pqRrQ|3iw~rYOp&+RZZTP0itGB;O_v}HKJ+2JTgQ7wl6B>ed9d>dmy`qIkESi&u zVbOl-JrC4wJun1BV1a`ZWIE4(p1Plc=e?xW`AF4+|B2^R947-uN<8JRrN#f{Avj?^ zl$%b_4RNsH(qy58FHS;cpd9%)>D+{)3JxHl?u{`Q_u?XPkf8UvnkOm^y7CZS-d?w9 zN7@gcwHy&56QI5uln>UC@_eX{ZH^jz^F+UK3;z}8EOrN|szGu-b`gft^r%kvH@K`v zX<3piS`f>vuSdh@7%U7*_RXI{0Lflm&+xy%kJxUe9du6dfLwPx44!~!Xj&=dp)<2N zReiVX*S)$1oBGTiNSdBvj4U&pAb>?L=NjrnE;IIasOLR>iw5kybP)v$?eeD{YH7x# z=r)b6f`tMoy=u5J^ygu=>@tOMn}YEW(wXVbzHEMK^x?qZl(!Ke(||AHqccgVhIqXg z%^eFU(XE{ESuPHgzGfU1y`G@V+UjF&MFm$6>gmaC5R$cJ0Dq-UKNa<&S+MV$_;ptn4XAo2tEqb{ zm?La|%M;V!BV(zXeb-{A{q;ls=);`r^JS+oJZfG$Ji@1t zCM)XylhHDB{D-&HqyB$nw6O09c7bRb#rA0*DO;{CLP@RT=wkounXMU;h0=@eTXkn; z&x(yE4&5`Qf=aJqNfUdSEGN^7^A{9MQ_$=D9lb?WI`X_`PO=^{?|av`R_-^^lE`Ug zswrGFFr8Ir8#|^Zus#3UVF{$3M13xS9=?)v>6M!6)Q`Ap{+y7{%ame6DOs`KO_`V? z-==JZ?K0Sxo$7uix2D=xZb!$DHcdsV;tMUK2FeJ-vIZcZN4?F#4frir&ztn_e*#`gE?J{used%RKyqCn zgPW0iW-jCthji9CiLt4kUZ@~Wv#E`WgC zlWi;~h2th0`sBM4hanwMCn7nLVErz3WB;aiD@_A5@l}%it(y@%4_K7+KYjQXNA&G6 z44y$TFv)U|>$7FUJdI|&9Z9z&UMrXLAq*|e*e9P)wew5Wfky~ytki(;D=9#4C44^0 zt%22Gz9TA|oPXcDsKLlq1c8}y(%@@6S<8|MQ!71DrJg28vmPV;O1x{A40y6hrOUs} zxUm7Oo~5Q*j^?3(GSsDZ=IS6%Mi@8V`Pzltz3z!kol}V<4WW-x;B2~S2-?vLzN2L7L+-I z*WfFF_M;RaU=poSELgM>=|MH-hc>edTFIeliY?=!BGjs5>b`F;TZ0TvWsoI{j_Lxa zO(4+V#S@(F`9n^dwS|f(HaVP8Mg`D6<|%2w$AEFU#mg9lc@927(}DC4jgY}nEo)k! zA9ggW4R)^;|2nM{u6L4ORj^M!VPKXG&0o{hJzHI09JsgpxRzmrR%GVrq24B0eCTWX zS710Z^@1MzEA!67{7m^jo{n_x%7&n`4&u3XgF$kBb?WQ_{l*{sf`i!H(>AQ-|ppSPD)nZje@eIYeyN+NITuVTWS7AZB10+3HD>sGStG2k5gP z<#DQY*yyIcN1P(&VmZm-5-EGEV=!)@w)z?2hLEPxZv0+)*_F} znXE)qlZuD)d#bVp)RZ7t-%u6am?`p4D;O*aq}p=ZrTk>!3;f1=lS-k*&=N9Jig4q` z^D6Umob<7CXKiNJROoH-S$At(ne>9LfhEl?6!+nRmFCvB#?uP+h+_BjC+;d)chAM` z9yI333N!e9lvIn7IHGE9lUP?a?sL(3ykvXO21P0ec1FGi$euYXJjHpRJ^NQI{p#mZ zMy150oRZTxtYrU(f%3OND#nux?Lt-6W$h;M8m@&1_WSsK9f;4#P*cqA53r zn6(fEdw~l|3A@Y;TLY*G&hMo(B_-*R?lw~Jw^$&6yUQK(#awV#lkekBli{Z=cqC%gD+3!f$iw9*>7KE3cO(E6ERe1y< z9T$-w4Z1~(r{`84^$yLkW@#5CJSk@r0pGXu>h~%@8N$7myX#5H<(W{$_R`R}a_3d* zQcJNzNv1kP=N8CB7^ztm8eg;bZcn&}6knaRQksP_AOToeVXnBhb7DXHl|^}u-1eam z+3Wd489_HI9##X5O;_!(qjJ2clCq+aGp>o(zpdFtv5Pw1DKCK6Z-X0gT}Hv@iinz* zmVz9B3AZkTLg=yXE)9MhGjINk7VjgK3)w}bWuc@ zEP!kZUW)=YBdYfGn~>tYZd>eY*~bb{)eg3jmXZQIv@E+`1B~VKu9mf>X|; zE!fc{zVKL>zV6sJ?(glJ-rb1#ZSYml-Ixt%f3NON60UZZmU#qxpWG*@U@ZWfy`HKH z4gZy>i~>!C1*Gq+;|r_KF!|O&%BtbyS70l3f&zN+a;^nwsx_`sO#m$UfxZF96&hb*dI*uN>juY(wZq;k z(-k0+ZV8Z(4?2TSFUf|JF%V{ugh%2goC@|r&uT)^9|3eYC9s_?=USrfM!1$N5Y-2N zT|W1Vd!|_PcMCHXJ;~hvU4b{KXgL6DOt$>0%%TqWn$x+j|3mQ~!6JbY(%8$(>w4XU z^v;5xe-wHEC)e{Lkm~5|IdTY?f2M|mAfasnZ?C1(l*o+K!?5GQ10Ohe5~p@XWA}O$ z&8abSc5c=PlUg;lQ%iq@J2a3S^2RA1)?X1R!Dr@pw&M+2XuIEbFV)!X`j&t)&9dpV z={J2Qp4=ctr0OP^T2K1ZB;D+cOXEF@5gQ@f1%jxc$SV6#R;Tn$odsaai8U*J4`zqL%+^M zd45428lMdUhrT0MweWNV9YHk{f4B2omIs(mCfs{-PRYQCT+h4mruee+@Ylbu7e<;$ zp6i-Ugps2=hn^TBfj#k8kf}pF&Ftp!vf;29h!s&(`V>CunwL!MkrE(qWl+ovdKN{| znD_h*nnjWXz3=IjlUAlNTkwrQTMYhmb$lf-XXi}r#_-UB$HZeW2U+Uql5wgD- z@5^S}vW=kFr;z2Z<41uPc|WFOBz`L#ISDM9OQ(b*%BcT&xuY#owNa;hG`({93UO{~ zgUh0i1>M>Z6WzPPyFUOKbYq68?%k1BuTkjg1P}{~1JOM<+ng#-Yp(4#Z+TH;N|u2n zk||>=vFduh$h?9{ct;D9{uYwd;5}*-vxOP( z19tBhEso6|K-`W`^i~PtXz2Bd?X%c)%ev^(gR$?2=THh=sW`@Dy4$b<(|B8RK3BJ* z$PL%iw>hp1JQ{{FD#nSwx~o)7k;Z_l=hu1`RyR|Niq0$T%=w@QSy${I8qnCs`bO~q zF^ZPE0jj@xpDcRbDfD@b)gi&ad3yTThtXFNlInl28$}eA*n-yK z^NGRG0B3yV5hqN&_l>4Mgpc)->ae9aQ zNUJxw;zJDUu17HoZ8nDDq#s>EshigJ^x*xh*I)Fc7d4=7sN6wXioFjqm11)V zon%pP?pOZ=?-TIQrn1OH2%QVvQ-qX2LruoImQ$mAF<}MnG&)Rq=TkKUgt#>C56oHh z=oSAg9ga7%BFUf|i)$|>Squw_W5xmHAw)0e#IBlB>v*b;kM75_S$v`pB`Gtz4_KIK z_+t&{_LDzY&eo^K={<|!yi{6L6N^Xu87Rykb@s?HbCx{Lob{LWn0Bh*eD|Ik>2`L| z!C<2gtnB93N&>pULwnQK@xE9Y7kewIg;(TFgmKRF&R;s5fS=7SZ692SjTLO103JAR zN?P~bvmZWYgqBUCbai*;<09xf2SA+z1t-r&AP;nq0-;h*MXHZ#bjE%rNg!#g7XRQV zRHJsDSGx6TQ- z>;4cnZ{#lB!%jR@7axpJ zz8!K+lu^m3m=^M8?4m^d7`Qnn%PHZ`raI()7V506scVGK09lgUDkE&n z2?OJiC!+B(v^@Erl)0cjwP`NPxE48G2$mV_x3TSW$=rI5Q$JWd@#p?xLK#8vR?y@Q z4MNGlIO@eD6ek(B48b%SKoSz|Ij97`4ckN1T=aUjM&G;#)`{Yb$0RJ*MRf3YVVUL;abj@g z#smK^t?XjkGG_R9R0C5dgB5)nJF+5zUg_kwBzS`@{)LSjmMl}Lti`3Y>%2h;6z!gO z(ro$Uk(jg#v41c_6``GPB54!AsS-YJ>>0&^^lF&L&b$Owl(f}ZZ&6vFd>d{Kb1rEz z8(n&nDgRwtcgwzm8dZT64UCnTSZswV{lqUdMV(2KRAUAy&FCdlA%l>0cQrC;Z-ZC> zx?7neFA3EFAlEq)?$NXhF^StTGmGtxEi`)J+-8`C;V1p55i zyM7+JkaB6TX}qZQ=q}&@`$vz%jIf_tb$*yUHl1OjY7@D%l_V9N1F>K`AY$mMzq&+% z?~y4UW^}i%+%3Q3u&uJB_bXRkp}#9rZ?vW~g>rkxdv2VdCKiBau*8|Q$g8F$l#4Qb zk1>o+n@*`&3PmD!a=aBF_sW%haQW~5wIp^{Wc!0}&xM#B4i3%$Cv6B+dGltV-jjmw zc!-XuT;I^WUvi5YnEC~ZG}@(2q%gN$yE}-6={n1f$=f3?1|9*J9Kb7K?2QuZeWHH_ zOtN~Stdh*7*vr6;b!vSTcW`9-sQy|j0Uq+s-up0>zg=wfPn&KQ$NMCB@~Tl!$+E6b zA(yo1;(z*p{(^}D8uCYcM?d?+{R9C!3oq)il)3Xoe^t^7lat@NX#F^H7ddlF&PL=Y z+J~H_qHPmRfn5ZszCPn7TkSTx+8o#<$+(y|NINQau0`~KiF-k-N;iK7R-wu=)`cKBHU+y}wRr~2NGe?vaRxZ`T@ z&KPujt9T|=wD^gL=_x0Qr}l)?-}`sAz;MVNY_o7c0tRJL=!oMUeUOn#3Dip8bNfH9#}>s5)Wc_XBLNDvA~EW`?n0;cZXJ`ZC!E;-SvYhrxAVj$sSE@}Lh# z#8M(M{pOVbVK0eh%n~c^S|_NulsP5@@0*ke5lGRWSyE8^-W%Eo#ts%Yk_>MWv=A>_ zuz!c?hX(L@#f{?Z#2RhrPXUj-#iBB8YLK?CV5N)N*CtoZxhl2F85ZII zu_o=FhUuoCEOG@yj1ceoh~m(<4@g18uC)qbeuCfi{-Y#8kKlUqA_&vEA&q-B>dz)e z8+OZE?!2ip^MEwusK$oKjP=!vqgF?aciVqbtZQD!j($SJwXREk2K@jz4iS=Hm}1}V zHKPLNnBDsr03oKr2CTibd(Z&{s$t1I2q*zUbL+U8T^#_$`nBnF_<1plT+ppHLJ40s zZ1Kd|WLinEhYAeZ9F@qSg&lpL3&&cB?LYGBKBrwMW2DT4h6y-D41Hz^s(Ll98cX7r zgEfj**HQ8_E6Jp}AB56~isiMN+AStH0fPY7ET!muLs)LqG?B(hzK27!##AmFv3sy? zB~!-ZA3pyMv>0)L3dqR71N6dkB&{Jy#^x$BRaw87Z*Z(}>4~08@ROM2#4-FT2Kz0d z5s+ADlzZyn`K5P!WL7m>$+$Ap6gJGCo4{NNbf5z{>@X83XRgZV|J zsNH1gPrA%U(F;9vD6=ZsLJXl_8Cq|HMvO~Z%y7Gm?i9`M8|f_LTr6Dt8y!jrYH;@r_dVMG%x4fxpx3WH;uXBQoS%zlTlVs8;on>#h;ZFo>E*<`K!n*;zMk4c_#0FrsNkRC^>Y;8yWLdDlW4fIBwC57K6w6S)> zs#A}E;80L8>`;b~7zm|zt$zwGqe|F?4>qj`Zi*n7fP1T=Q;&~<9is*aBIAlp%*!|J zI9I$iea4CC5WQ$y`4eb+8*UhL?gKg^1lkIlbwMBI8THHllDr%ZsJmpzC&{~&LX zIe*p|UaeQW;X0@T5}ap_18_c58BMMM!4lOdtNp5e_!urvon*sjAQANh594a@iI_u_ z@bXdO!cbD2|M|9c{k*3?(sH5(U7ZiX$Tzl&JX6tBKvb~h1G6loeGM7yQ5amz1+*ZX zS_r?ZJ4$qr4CZh8PIQBq50??- ztI>5cj7{k@Pu2c(=ujI-=_BWT)6nA(1RkhP;YW-Dy3m|Ar1@H}tIll&qy-Vl7s5so zoyLSMKImPFne|P+f@}XM(r7^EDJ_hpXv08va(=i!GmHE z%C=G?WA6>dHXRuK-1yDIlFW5WWRRhU@7Uwg@$bBe8e%9H?uSe!!>r8V1eR3w#8JY*|&Psd&OC-KW|VCD0iAmhkm z!4wn4meP5Blp%l>OA;ba5tTJ zWDm@_o*1VXlNpHLT}P7hwicPIOW#RBph^F|D=QvOs1YjG^EnWt{l)mi`vjmd^sr>cj9?5e#_Ba@4pyP> z@@>I}P8CF1h{D~PN;)UGuFh_7D-iRJp z|A5XD+{TlqpI{kS9qT1-+hpJK1!s|z^u_$vfAo!^Kd4saEpIa<`J(&C;-Qh;qC#9z=JXh)@&4GU&x<8RM>AtmHdfOpF8`J#?$d6I8N-$i~3{a zwFM198dVb!TCw&to@QgCa}Sfbrp%unkTCU*p_@7`LY7{{>q*3K2hB(NkZAB&`DqM; zV;%ShQ>t4fiSwPjiH-xt^C8S`?k8WXe*igXkewQ9aW)tps^gU2==hT&7Twjq&tGLu zUWHV7s(~R~(KJ7vhAI}0RK9mjd7i!emj)Wg(8ryQh60ya1XP|e+fy;KX5W4^GHzjc z-fQMcz3mw4K1Iy9_I{fxHX|-upet_Osdypk{A~OH`}U|z{>Mq0{Exi_;AH<#=wYa) zUOW!R|76Y(KJT#un~Lucc>S^+>$Npr>utJ@0rDy^r-ZA?+{-w;)O>r=*y3BXW&weR z=;lr=G((m~@DS^`B|2*N!zBJXLZI|ZV zq`aZ)_X7y0>ejfi!&ruSnkB_a{(M4ss$%mxv&I1^ZZM>iL3T}(dp9aoE$cFncOTA% zZ$i}ITbuoH<<+Wa8(7gQFvh{Z`WIgRUe{E?o*JvJc8w^TyAOq+QL0Yg=H~2U;bK$LP zBu=M$H+Dn+>d6CP=fu>odFrTVqjLlqUr*5#Xw@>evwukRogJsn26KY8b63rEnplPe z+6T-Cyf2D{pc^gyQ*(!a3b5lq3{;s#9Gu1(TrJ(TJh`q7s-fOm%4_P;RF^oXuf9kT z(NF##%G*0LHvoi3tlFj@&BkR75GX+5n5a(qF$$=LP9S$61!YvB_MnF|2J!lzg_wBT>| zet18aqT425HtN_ueXBe%b!KQBO#N5Wdv>}m$N$1Ys&w_qI``r;G45Rg-&rA^rUL}4 zum=|>Ni5!-N#C7?&BzK<=wy~PcTz;SX*FQ@a9EIY;APA1^FO7b5+Snj3=AhWM@>|d zod~|6_DP=9Ju_4JiAjdRHO5TOVF6;*9{GsG8I{kJ@}la0*W1F4l+$EB5tT_bw4mA4 zt!>j(O|Wse3F5q?FUxkZQ;8-fZ~+7024x^zjq#i(zy23h-xyq3*lc~Gi8--tp4j#z znb?`wwoj6YZQHhOn-klbc;cJ;z4cYS_xH1__TF7jb*)~#dbO6{Y^Pu&)!Rcv1^h$x z!vk0VOL0I`AzME&$rK6{t#d;xTvO3NIX8*H4mZtD3*wNhCdpDrwb&Zu><zQgTS8}hCeW>E>b!$HlnBJFmK{wCw&|9 z@f<|Nn%2Xfw6{^0A`$l_J5nUz1`1j}w@E(T==vsTXa*1{1gU;m+)*&+eUNB4UxRf5 zTzEORC9TQ9#A>qqTlafGi_P!0ntxdy;r@u8{{4lRpZBleox^jPKJV;hL7W97Mj5@# z(e(obp+7Cd9$!SL%(k#0gCI!AaY96>uZXVbTVM0z})Cd`WF-|ZTlad0Ap&CNLY zJu$91N&gDR;?;cAa(8OYy-cDG*Rj;wdf>8uHuc;aU>AJ-2FI96w@J~P>R>S^$AQ>w z?wa22q(7lD+Lp`@q!k)_{k6^g5&;(&_FV@IAHKfkx|u$LGrvZq1K16L}h3&jFE}$r+dSfh2NFVkQtHACXKmje02k@AL}yxbP_VplDeq_HRMJ_p@g4G>sBOJN0v}xyQ>g%G&E0*u!||G zCKK*CwQ#g!Pi zXq=Y}s}u1a-=Zz4$RV9%tE?BmjrLCpowx@rdw5_;jL@Ofx5##;1C(H67^tRpOh=uz zp`Hj46}MQhRGruh`R4DStRbYGuz&KFAr!fai2gFB(Ci@?Cx2*j`Rf%zJz)&O7)kfu zr=8gID*ADOUrt$>lXz}ELsKc2-;VR0V;YByh22r1uPadZDOde0$3)C&CCeYXjPkm6 zpO5aE^g_d_l-YlPT8|Jm`3BN>u*~t+T55}bKph&XuhE7ll)rO=Ty;=t!u3L5gdxwQ z&y1KvcLpt5->s|7M8fIP+U`%|=<{4>f7<)g=Bd*HF^y-3!gfO6SFdS+$!3YeZU+Yz zFFR;(j}q6Z3L~DRn;X7XGRQ{}Hs5t$GB|#h3{J8VW~QVj=su-*IiB|sg_a;%hGbbD zz2EGOp_Y?Gvb2A-9f0s8qcQV}4w3VrUL-xaGX+vi^0X+FzT`lgldKY9h6gk^#vM_) zY34nuhh(sD92sW@!Pj!#!i7))(Ee#mJ{TL92igS z@`=lGQTZ}2q0b$cN21dGq4}_le}PEu)QFPzO?zH{XvRS{VGRC~`L~zsqN;DVWT*QU zA{$aZu=>mX%oUkM@-$Nv$~+A|G#CLI4TTkwMf)U-?Y?pfIdvd)T;01@#W^(P%AEv? zuP87~i=z{|Wm9O~u(kzQofjoiOZK}92&*zsq`(;#UVd34UW%!K=f>tJ?gb`}LHAp( zslh{jT;9PyT9Ah=1THB&j3!2~>{YP!Mh|BH)W@tEWH#l6-d7tl`Ll_R1h&c{W{u}x zHr)X=*WW*>_(nn5M5uqgotgB6yIlG{O%|#4<(*?@pX44YxwB7=EVu6vCy?!ba4L6Q zn6dE~1x-&H6y4Mu@_z4b8YRf8WcY6S5`XKs?|PgDMm%Nez>xc3h{8;Ikx=LyYSgrR zXJ%O~0K#K)uSb~^K|I}(sFvb6bAg1K>QD)3-jEgD-7=7F_28wZ{}#)ki^IH#BsaCo zw@5rI+AW{r#E%hR{1-fN(syG&j!mCUKgHp3A>~Ff#|AeVVWLhUC5}Krp5xrZPQ6q% zL+6YzxPH>^$i)9^2@GLZ-G$fDmP+-7oPAF#0;r1LDZ1%8aeV=^^bD9{1z!D5x0;t; zG6CzH8e!9&_Fd(w*zT`6rv0Q&0E}N`rSr?(Ke)(nKhoMHda2*Mi;-8ko-E&gsL(Oz z`Rjo3LK0?skFvNbu|KGJgqrfqRSZ2BBMO`OA3Lr?11r_zo8YZ8dSgzLNv9R~BYwiu-Rane&7!dY-r|n~-hez3B*LCO5x~?VW z-C!ic_!lFv7KKZhA2w@3!Kb3go7}Dsm6aBedzANadsD4vO~lqcAlYv$wRnHo-gcIW z2{7l*Z8hQxN^$;HNpu_$GT4hzd<ibSIBZyQXzgLx7;LZwP8HE{L+dy;l3R{njp9}VY-j9*lbZn=$k%Z~7Jn6eW zPsJbB)TffX-o9{WH$w^NoZ_8Bm;NN#vMIOHH0kBWfJ42<{h{XW^2PY=g4P>Iq;P&H zVbIb&Ca7{G#2u|^kJvPxv#1S1l?r_ONct=mxP6PT)nCL+mudcc)_t>j$=jUy*~9y> zB&GoS`fPblW>BhqUy)0Be&_fJA^f&Qkzf%W0RsMCO#NRv?cOibWqR>^a@kwLa9>;4 z@ahUgbRT2#aYMQ|Lg}G}p6xv27WqwbaeoT1%Gtf8w&QFkY6*z1i%ZaQwmE zNlBzKX{9gjXR0$3uZhz6iN2uiBT64G8y=yWSe+jbKpmBzkk7I<^e>*e#qs6^URcq8jE}3g}3V+#=E-YguWvX&l6(LTCzj+?Zds zKNORDgIop^%?^@gGqBI!wiuX_lDLRO=M1P8AA$za0pMrO29wj3}yPqOi-h5~@i#9~3MC)3rA6R397DB1 z0&X^=EIYK5w}rxdIz69Z3O{@t@4TqACoP?)u13t2TthOi%e6QGdu4@-{4MTa^s^aC zgkK(QT_}^;CWFi%r%LDS*VQ@_M`uIM$XH|bk zIT=dpj{#_yM-BOP!v6dF44*&onYzN?>{xV#?X&CXUzYJuF!uVxGG6l^z}PmIc~#^4rwaA zN!UIw{#jl*@mN8yjE^VJ&p4CBAoC>$Oy~*FZS+dldR91ekHaio4 z$GsWHEWhm&u{^2S1!C_9Dn}svROQsae*AGJjT1D45Aq75dGV0v7Zmn%k#En#3?;qd zTvx^;pPTzOaWVJ}*2uuIvF}y@uW$>*2pcMW#n$&pr`9eTOGREsj~EfDp&5ANEwo9u zynZyX%OioX+ntHCm72HB|3N_m8o9X?B@gEMce3!4(E^Q9 z+cBO(rouJIZN_jvlQ9j3<#p-_(RJc8TgmmrQ9q`2Z4z0BVH_hCk` zGl%I)qTX*yOJa8cE0Bmafr6lOx~g<}wX4&^7ssw#*-mi!lXt)U*aR#_IDzBlAdWcN znaab5g=>9{8;Tys*-x&+lF}GzpC6ZKCulK|Em8^L-3I6>kv-7LkmGTnZ_l=C4S{W zF7E%f$ZS&kkNN!e|C-O|L6J%%mPT}ikap#5rdNvI0&|%f#U!n%mA)6be>}ZXua*%! zJ=T)I7>{8-XI(oYeSf(uNi~78@%3~NJ+|X==-W%RUA})Y{Ve74j4z~_fWnB#WPocg zJ3akX?+{(RIIIj3yFSc)W8Quju}i9qY91FX$WVZm6y1nrIkBz2UKAHnaf0wYq~*~7*0iRi~0BEu4Ifd&ycGhQ~=$%_c0$0^6hn2q%|I~l6g z{KtxzmpI|zqH}{k2W3gb;*2S*f|v3A z?^aOtl+p{b2~rU4Dbh>3gix;@@!?l1FRor$g77eF#D%`C-n4QCSci!8s;ma~({^rs zqmBY@MvfRvY&E=FfxhSXpnr_>dCT+?jgQs`gk_c|Pj7#X$~)d4tCR23$U2RS_06YU zyH$0nGW*qdZX#0qNPkw~oK6Ju-ka-vvjrY7hEahcf3Xy}t7uN%CIZoQCKJ1pgx+~M za4L8is!E!g=Y?7&mJ2KKzCwDUgsdu>vLtI(1w492_Rvc_fxF@4&tVkroE$7WPRQJ? z^K+Jd^qJZAVI*F|K*{qnXC$_ScnQTKofbp-DToUI^IRBee22QwhGO6`LwFv}OX>qb z=z{1X)=rds9lL_JuIDz1_sIIEO%?9P&vQ?lknuzv1i1>VsJoD4p3Djr-kG>?cQgCf zZ0HfA^}Y0zN?u^+s9H!@UAj6_f<3v-z3?jAzPn89sGg)@A~WsCwlN(Kv;y1nk$V+w z2B3zdb#wAVSutm1a^o3nHq0&C-Kc${tU;XZ6drVS^{QV^(W>==k;b^!WSWK0aX%8` zOPBq0 z)&X(yr#1LEyua+x20pDtwfd|Aklw(rB=6qqSX{bd@9MciXCKT_^X{Dj_pHaBl|c4l z)V$F@b(p7VP*V@bp2!;0C&EQE=TsEQyW%-+!Mszc)g;_e15G2xbN6o|h(Jsk%R6VgV)1SsNC;E{D<{eN!>Fw?QvSYoJDWe&NgO%micbIfyQ zEx2;kIikT+9;pbT9Yu1;nJ=Zf7;e$RD3)p>0N1hVq~-mF5>5%Y-qHw<5$nCrMeuR*|A zT)i#+l6OH;C^2}^Y)%_7I%F1$%3xas2!@Iv*4y3epo4$&WqAd6ah^3$Yf7=<4J*G9 zsD2vvGKr4HAKROdj0Q^aH4$^7f-1UvcExo6GOx}(x|-!6=WSlf!;Fbee?m33IY%Y< zr-y^MS^keFN0q8v%$LHg>sWoVY#kg!PHDRv-IYVQS*iv0B6l>7ZVuBZ%vpLo`t_VQ zk#uC5G6O#V3KNZDs?+0ci#0?rM=}1$-n&_6;DQ1|0=B4jt2g4oSw$!7FBhdIxJOzX zFvJD1ryDDZ#hxh!iPW8;6XfjM`3j{ct=J+X`-E31sFV1X4?plqAIzr!Ya}|=A#Y8w zIIpU9*#-1Ok}VUU?t-F{N3x|?6Y%G>XLEIfkUYfGsMMps>ND3!Becuml!4cf25Yt> z5|yeZE`*YX8&#ICcNVg@YBaafSnpo{J-c?_9?!1Vw|Qm@#qgMd35xFTlW$@WP{f7o z)b__Hr~Ip66dV!}LYQo5#?*e-NREJW02_8XE894yWSyb4cotKVwujIXC#-f9XhJ4W z?v2D$^+G`X+sg?cuNk&ImEb7PEyk92pHIC{kq2w6DI6Ymz9MsdH0$2ucDMRt|7et^ zGEt>CV+jH=4w+5N41`O1m>3~}M4DU+WHgtS-tTyX6C80>|7RqDqLZBKE|E@^?M=2j z-ITA4QOP&W#^OE1sEKOtrAadvuqsOzz_ua8oeI%SFpgie@s$SB-mof%K{^pBLnb?{QBF#?U|U_~ zff(z0LMEQ)H$4KSsmPBg>a=ZMv=0br-FC;fb?wQ9}d)lxud;2*I#fWqN#BNzpL>b+C3r%nwLb(eXa2dB0hK7+4Np_u!(;@`2-_adfa;l-f! z&39etnxERlw%Y}cZ19Ru-P0HoP?jf{<3?&VaR<2~Q<+C?Ni_A#l=5>M!r0nODgDZj*b8VvWKyE9Gv6(CB7jxvS_UJqm5XK9oNnBR?Tk6lQf4d z?<6AjR~f8VU=r=11w4PEHCqP2Mcm1A39k4e_zxFiH~p1qxbK^w+IuzqF4TJ1g((3bl?X25ND1bYo`<;m5PHVq`Denoa z0kOdbAz`kbr3FU}ObkB3qlYyGR}4%Ul9h{vt;InM%mW;B4yP>R2g^^()FS)|;LraA z^i+JXkGr=Fb0oVqXlN_6-}EYt_Lf7eWJ@@V5U{Rwg{aZ!9cPw}b!c2v=0+%mb~R1X zOa8q&|F_8Woh;F003ra<{V}6VPwPjG1$p>X@1ISpWqPLWg+gHm7YCdUgD~{0T!*-) zj=i?iJ>x@=g|(eBG6vp=wy!23+fp zI664D_bHBU*m#fL9kuW%Cl>;MTMjmq%6obt$Vqhyx%i?JMGGD$m48B(fJLoO44``V*=YT3+(lR0>E- zgqXckz-=l!1*YpQ{paXeq?ECvBrP4)4LQAlzT+9Z5>aNI=v@7-=u-JiK%zyG*k%rd zkuzycJtK4Dl~J7T=Aj~`If0+Bn3?|Q##ujjGTQpJ@i<1I$lWUdC-HCZ&I*MzYcoq- zN3paA!z5@`5jrQofcaUQz}J?p@b>^u=FHF$}a&{l!i!pGzFoQVX2y;oA zH83%~d&Qy~)Ld5PUanycvB!>+_VxHMZ!N()bd`)nmBd1K!0B3dmW>zP_Hc{|y`xa6 zrejHfBlkh1-w2ie30+kB-YQkrMZR%VS~$3)iYrb9&sF@3_`_vWzZ8CL{N_#USi<&+ z;_b&<}Zxr zn)4K;@6L#q;R91p7%Em6MAx_vQCA(=HN64pbnUM_>?UE08=DHVlmCIf3vLu!@|W$_ zR^c1xeJ?RcOH#Vw$#|q~=C0%tr414_cUsZmp6!|z2*hN0_?C+zvlIL*SuFT+zl$E) zCqqZL`X!r1a|vR3GBP>=D+FaPj)C3k8YH5Ozq$d0r(yUd4QZFAv)pVD9H#@=9g>J6 zefb>}X*YK2rI>lmJ^@uq%a$#cvBZA`{QA|VaI-a`q zKWxSF00vDlf_~M!DjmrR7`iZX7>0J#HbOiuRD{pvcb26Iz_c;qc~FV8xRc%rqf+;A zEs$JBHwQptH1Y}1>O{LzWIworf+KgeDaak0rrR>S z7dFp+Mg~Xf(0BGSwBgA%T1l$EWRYs*Dd|4#SqftHuk5`#8zidK9j!Zr_6kBgzDbK` zzPiIX4sfIuY}Q~(Jp29&>Bo(K4BKa2N6|4u2lLdSNm388LGMwr(j9r5MdMZ$YeDlT z9O|4*F2+_Twtix{jmt4>Quce`Q z&Vit@hxM4{Y7WJEQn?mat08B+*w@gf{pW>`g*HEZz@;DZt_CnKE}{U+DDxmL;ond4 z4pnT4vGe3n(A%A=%Ut;TT(_+Ht#OfULMCe+LfzO@3A2D)A6ZB z3T|Su^s%mA+%aB+8TUO#Y)kF<0$&TltsRM|fd(Te%&9N0;tLC9#pLpdz2AQogja0P^^#ktU3>=Y?G`?t43NXV5pYo zsoF|09M8tk1)hEw2d*~FUemvCJiuXLaakokKhvlIFX{oNpu4@Ly;BIxP@{nvDvaBZ zb#Yk_xwJ~Nx~R=A^-}mr#kIV6mWA9_=MhfMVtQ+@?$Yw)umD(J+IQgHcEx+A;}*Rq z8L;I7k`{Cw!bv3*#&>xls&XkcPSeB*CBCGul$VD#&O0b`)P0i8?#TggxUm_DgR%Vl^m@lP~j7+TvgO>T3|&fi4gbjmBYEtQGy#j zu2*3WOR(!2;5ZZcgm$-Xi5wnJcY?GbJ()hJ6| zIT15{h|)6|fLsQVUeAtWq^dk-d;UA;RGpxzq=N>ImDQ*J47~2+WPs3z$Lw5VrM@aZ zIhu4xUe#f2#v4iKsXTJQwGJ57WL>fc(ugiGdUU}# z2xkycMP`l1(D0v@RGhE9&*IRI@~Cd6Zb5TYt;OldopNcxRaiq)an{EN`VB-&8hrxJ zU*;VHI)6SJKbWQSnwqNE|HS_`4CJ@$?SSD3vE@IduN)ezj+Zi`wRdd$Xu{PIiD(?2 z3h)?xD4+ekmKIlyBLq*n!)itag2u*~w)#G_$MjEvaZrA!nQ_NaVM}@1)2&+dP13i% zVt|#j43f@Z^l<`VuX4k^bkl+}d8L3-DwRg@P0V2%BGVaT?1BojsBQLas5lZ{HY|A> z^#~u9BNEk**`2$3x?jv(76%(h-5B`f)Q#6cgzHJmN$dbG4~#^W7)fgns?#RT!GE%WyEImg1A+XxEW%K_Z3CtZ~GIp z{;b(jE3%oZDD^fOoO3R9sc0AR*_BK$1zT*C@tDt5{HR&8z-U> zeCJiDW*u_Yf(~Ve2i0kFl%fCC8dg>2m38Eh;lDLl#SS7J(_(D5>LQu)3z8ODCOkezZq&5j z;3Z^;zXK$fYsIVIYDdTT-_Mnn2h^7yq}M3csYQd+T<<}>JNv)Glf1dTNJEkgEs*KG zA8_8z_1s6K`F}j)H%VP*^rmZ!Tr)as*!}vTtYdm3u;`YH=MiheCTAIDJ)zF;{HI=e zUA9E)aN*>pht=886%1pWfHah6GvqK0wC581vGh*EuI#L@oditLooCH#(L*Mn&Tn7L z@DGZQTh|3?<7w=BJdU~5f{#n-ZL<7ct^gU+ue89^2bKwGIQ8;}@caCGaT3Qk=H|_k zCdI3eve|VffehptK)rK0_s?ER;14QTd#?H}Ns59im6JR}MjVOni>|0WpHR;lznHu+ zLXeEj|;{>E@AA;BYjWFR?3L9TFi?sD#U{VkqTpTH1)k-y(Yy;E# zI2h>pBb+)HJUKpk5uhlJ4!DoXddyFz%7vgTNguvlV~_We-V>e62IhW{tCzgdEi9g- z2j{9GGt1U#uF&TKWEjnpOPzvuF zu|3DG!s0#O3tYrtefcCK!=5==s(oRs&qy`@Id5N`Wx8t{Sd`JaV?SotpR83rd}Ps? zV=bQL7#FtqUmKf3kFTpgdw2cmh5;AfX!#>IuHu#}23EE;%F;$PE9eY#n`TBGsN!Rg69i0f`-G(9^>BUJ^|iyT3*;s ztdH{-26N&VkU?DUYc}%9cT%~P)?Y@3sMthVY>+ZVsnj^+JL<|NFwHH|B$4}0%vY94 zU4^b0D)pU}@U~yF*^)a@b-;jp!q3IL+7@gNDTF>pRLL!)3+VIkwM?5fG?NM_Z6C^g zWyT2yGCVKE1wa77$Zit!3cKhfTslEj04Hy@CV!Zb|1-jJO4vb|i$a4o<*3b1vGM`{ z>gmJz!<0U>YFM!&%mGk zpD5vPDjfETa`#^<^9fVwVB~nhz8?qpAiWnif?CD3wlQTxf-GvLZ zc@9@|^>1>mKo;(=QGjuNdFk^DAVs!~l0lm)DYSzMHed(bw*dG)mj&G~3LL{ZPtIBjfGgjwE!dwQ@VUQU#OLOa)2kbVircWw^j0@1<_2 z7BFaiOkCTMyEnV?-+f9ts%k{xO( zl@znY{gU>EYYb)r>)g_@VM}rRmSVoq3)M?igTJig3EZ2Hx4r{mjNbey-_Z7$oJ5y8 zA1|Fzg0_b~*70^)*WJ_>CTGG2#9l*Eid1AH%}RhA7Mi>SBN!=oHrH^lDKDUA0P4^# zK30~2IE%nT$C?1%eTcuM#YtRO7E1D!HAY>3)e?4yF18!AWvxneM%@J0_ElqvgrWij z5#BAAJ9cUywNX7>Nf+SW`r>WUUT8)I{b~q38heYz#*8xKrK!$!-#A|E216UCc-A}^ zjO##tY1q|oq&p}`p4mLhv6;V=X%^xakKSZ!EEp`x3 zSDc$ObeG)0GnqY}|Cv|#!zbXM@{8kJS=BVwT-D+y;9_z4pL7XW?YSHFqrcN9An#|U zSI`XUR?il?dev7+oIn2wIAQnr1o*1Indk2jyz=I9zTCY?!hM*0opzB8cH^Yqf{ylo z-sMXreJ$m1{|Qu(xr-$L%;3&`w7r=->C3Ojf`;$pR!d}mz+VS z&OVck>vbITb%}C|;Sct>R?S^x?0krsdIs>>5croFP|DWo9MkhGU!KUQnP4wfQ?BE( zV)CP-Syj*TdF>HEh~o-mc-k-wfEwaUJ0>`PrAG6(R+sErFjeXXlLtoH%-C90-be;J zYhNSjoqa#O!D}=nH5upJQ;GawpWd8kior-xTV!O!J+c}zOU#-ywb|{?{cBnIl6glX zQvSPExDh#*fEJx?n206+(j1X=P!okb?qM3q4t)Ryf!nG4g&I%SW6$04uh#=m6o%j3L|3=da=6ZaS zg{1^s1&k%dRt&76g}W5|3pgaoq+!OX6)H|?u#7h`qYq(F6HucZVi0SIV^E_H!_f-S zK+!l8=z@6E!FC+v*e-5{NQxnlWund`_*879U^G-1n|M_u{OB(73y0AC{NQ4hp=I22 z#UhlxtdA6b7zY$WqYtt18pr|ElNjx)p_&@3BYmDelB%$N8)l=nAA#g{h|(MQ_?dy@ zx3%!CPt`}u=Hra`C@Rb&MGh*7nK2?s)VF62>YfCT5lm?aM|((Tn-0q40a8mNBCNU` zd3+40N@s2mEnBStS=zUk4MGISBvF^DEc%y%D=Kb$KWIjRMgMErbQkvxEBQP|OTn<9JKy5P z`)J$PT8N6mZ>(xvCGL7owgW1}R(jYTK$K)^&KbrQ)nE@6O8i(A5&Wx#Zoskptiv;! zF8u0}bt%xucuwliMjI4)oQ#Rg1A*rfg@4u6<|w(;#(v#HH7LfCqV)YKbtAs_sS+b+ zdPAh%ZxC_w`CMJPg$zL^+^_IXv92T`Ju1p26GBcxj)tw@93@fNNgN=-1NZd@B@jYr zzZJgae`}&|9BCDg7g5#Dy|UtIGLYw+H(fNB?`+er9`|Z3Pm#IJDu<{y4~r#+|0>Glio+( zGqb|j2PCf=^60FReY^4&Mowmzcd26fY9z1}C-QQ6R7t`R;5i?+xPms9-7d41NVui0 zL}@@qy}s~*`tDtbYm^z#ogd%sMyaSE;n+|Xt|q_Podjz+*B#+ZXpUcyWS4iK zrfK=Y$N$R$im_yP-~OY&v0$Mj_bW6VTj3iAbsG2!i`m(oisHzI1#OF8hVCKeCjg=% zke=B(_>L>O;xBf7W1k@?^L(i(zFR*Z^Za_R3>S<=JYO$_c^Z}2QDI(nu9rD+m~KD( zp6RVlu(bf_^z7Z9B6P(?a*-<|7qYg#B6?}U5p+d4v~d>VxawV7l}z8HDY@4+9M7FN zag1}5>%C_p{w#{C9wmaUMMZJXkU-F9%J1J`-xJbKgIgq3!6^|FVDCa&4iv!TU=ki* z1rm@Nq+5>Qz!niw^x?o*68vUW8wxic;ZxeNz=B&;kilt?Qtl|gfGL09z*JHW;lS!! z9^b(x!9ZvcNk2GSTp$BN1F4sVnXStQtsktp0pOaU_1vp!{YLZPV9B90 zLndJfxG>P>&QQg*O`238OLa#OaO$=B{qD=y1wjl90Tj*Pe%@275ZQsCC@ozI22-Rf zVJb*wT7F-hhqCNhR(dJT7PO(!e*fsS%IAHr4cFPDd93yh73yJPUwtmFm%Wy65d?#% z{T0M5IEN~jJ1?(`SPs}Yv0OkKuwZ*3g0rQ{Fz4dJvd@vTC|&STtZ$eSW)%knmGov^*C^mYd1M2IAh$7;2Q_k1vZrAO3P=+JO&`m`PPB z3OX92+d$%{efElvuus5`Pr!AY4iX1-pOtpm4lG4CDv~LDdDd`Jsg4O*6DSeI zSLYF99Z`PNoD;#x zK=3aI#p2|{B@ro9?u|1~({|VP26}Ayf}AQoJZDQD&&HZlG^D0+iT-A$sB3;O- zR_Mf2Mi^O0K%(shMj zZ6@)J#npeY?0+o~9uNOzfkdL)xcAa4cw4A9bRrK#eu)z^foY7XK!sqxd?C(Nb-}yY zFL*offw4@#TtH8y1p9GQFdg&Z_0{I_fzzA+H7+3GAb~gHr;}t;zV6P&JyN0<97>+` zGgjv?!jbEIzFpd`Q`XDAiY*?cgqYR_hcFk(a;vD~U%Z!lo(UWVNN6JzmaJQzclj-! zTiL;>k%*@G7-xOhhgI!?D}C5JU#vAOQf8ih5Dh!p!GFGax@ymD!Psw@FNMqOPe)A4 zd{Og~w?c_X^Dt8)@!Hp2z^WrS)#7Y0Fm)8PNO32xB}^@p#@WmvZ~4jkqW+7qZI9bn zomNJtAXyG-s!2ePe08Eq1FxA{_`Ts$x_2WOs;|^z?Ei1yTa@hdw=(w7 zgJIo_MO?(D2sLF}_$m=^aawITfQqt_ecg%<)(F?PuqDn0G#OdZVg(T(kante;nHOZ zyZX`FkgS`}`6Fh$e9EgFQEam*CBa@%nFI;k-w(hq2v@CYu$r2G`KSJ>?+jaseqM0& z*CAPxbI;${vns+dh9o~e&g9&&Cbb(|f z;hCtJE)~i{Ah(iEhp7(62x2tKc`%$)E%-ftLoOv22pD^ZCYEG=?b-D5m!g}vY?W+D zF5{g>z?CP z(Df1#2Nr)&NsBsdUkV^z#$jYWy#=MwUlk9^4Wgk2#Fe{YY+y@zx?-O@DvQRb&d&^Y z_q<~MJ+&atUIl|VS{(ylZC13+NaW8MYwP`v(~moBgp8zV!O$8l)zpKSMhWTD0IqlQ z`mX+?NUh*33u`lTsU+cNj&J&4k5kHRow~-t^cD<_4z1P~>z$rPtxr#-$F*22Hm{oD zqEDIt5Txga&uRQxCkiQEo2IJJCA7_+d!W%K!u) zhG7_uAwe#%Iq9X3?>2I*gIQDaZ|cXR>+<)t_0AmnTG6&YNRgAgf4f*tHPVAC_D<&{ z^6cE$EPZwV8vo8N__A%?7{6JFR2#S_p}B2RaX(Rj2J~PZ8J1=mQ%3+8)7F3LWv&^ z%zmq4(NLJ#9*mI>wMgFf%qwCFFVcRMB|nHGa9|4f-ur~pF#PC&?hr0y%nW|7($ElO zpd8OloQ+=%!|t~$H^OqSd=zbAAao4XOD##n$BCr%m?Rye7;9e)@}JhRf*Gu_9EYi1 zpMbDJ-uMh&Z~OsF2-dSHgi%{pcPI=8peu|3DR%-(TXGsnAkbEoh#vhwg- z)F9nl*XM?jCQ1IG&a#jh`jTMczfR{Gaqa=8(6lgAWCE#W$f0S5^eD{$0G!So=u2okfH1RX{mCyN~oEx%Z^2fa3R*eo>+6znhNE2ADU zXydrD9P_Yk14nJEcS@K!{7Eqntc}CU+%X9jXiB3Bo3soWOQGlPLm${n@V}LgE_9f( zEFwH;wvclI4(>u*`oL)l}adanU z1(5_maawpNnQUo|V!A|EGo;ss^BCZeDtMLoMj;m%SW|$8XwVa7Ho-XU=_0r*7cz_m zWc;d399F)%{g*!vk9Z4g9;iR`*-lx9H?GjPFVQ~%xt?DsUG9TD`GXGB#!`2sN*4$%b$b*KtY&~NvWB*wxC<(gcd?o!Vag2JYxcvcK3o4ej z>oKBTk$-MKMg^1|rOtT2n0vV)gmiv*1w6mVNQbpTU8FvA;s}V6Z{f7okQMoVN(DQp z_#W~aGXM?;2RBpb%C%}>bJk(pF_a`=HL^yR}@2?9)`h*PCwDn1vhxV9U!JW@O+ihU!=TBi#`x65hmqW^b3mq7fBDsohA8c%d zFO?~BAyK$7kSZ0I5V|W?vp#;C6iY0Blfaq^?r`tD`a(a{vOTYUA z#YXHIo>Y#vZ{E(+<<&dP$oCd3uELW!T7YL*H`1&b76ociX)P#y9tPL3PMWwi!G+zT zj?b(B2xfrO70a~e@m9N3HCa%2_oAa4?X~X62Ee0O)(h_1@T?vLMWGT4OSF!o{cbE%LFtL$xtPxfLt%Q@O|CR2%fC=YBdbMJ}AEn?-Rlx~FtW_9Bhz_gZ+UBSlgXnW}*@(WWy> z$+!feY8##^rwzNIBll?%mru@h84P-Fj`wDD7V=OEJN}N5tl(E zO?yBPJDe(=fsCS|o5DAXbXy0Ua?Uk<$Ls z{_KjblSjFg($<=We3`8Z%UY``q<+*^raHYhoew+_Jve|~wUunGoTX!NuY$Z_vQc6y zj7_?TeeeQ=-D{XHnQ+NnY+SWfVfz#rI>N%Zys* zx+s;Rtv!LMN<&(GxoysIzw67`PQ{CJ_TIwuuXYxn8*QO;#hj&7>S#3&?=nMxoPhRY zq)VB-okVm~hLZh}7h#Uk-ZOn8Z>Y76mgW-ZQkOX?*~% zVpKKtUgmMOT1?!@+Rn~NIdgTL9Wa96u~C78=djdvel@ZKa2u`H-dF3*=`xVbU!fKu z3MPX&-CpYU`fs5Aj$W<)1W47(Qp2(Yt+j#HBb~J8!W(=PGAF4xsYfo>j!~=M*ypcs z3Y+4!wF6{pBFt6M8rSy)H4W|J~iw|0w1fu5Y6r{&5N!q z?lG@wC{dEv@;M#D_&2cd$V>i?N496<8ICGTmCc2EQ$|qQ9+#~P zJY7bHAcejQpbX&1EYJI*UOHu;W8(1}JVW*yVbXp|Gf&jIWj-&v1>4d4vnBveh>DhL zMpR+`&C2nS$&M`7L?KBdQ+kB78ZD7il9Dpf0n;J5^xSziMdWr(lD1xlEt)6!)X%5w zoyP87WW0(*BI2r4NZD={Nf5;28&1OmaG z06`iE?i$>^@!;+>ZiRdh+$9j)-5b~7?k*v?yIU^roOj2#|Le!D8oQRvHRoKm?(}Dk zd6?S(+GXB+ZG4?zIY)B|&59^pZn)%jj#alzk%m9~qGveEb~Wuj61C;ECirAPE$Co9 z5ioVxOjMn2mgQbGr|T}7l7`{1+ey)Nl^oJ{oN&k|#p&DZ3&T+r1-m?$Q@Jm7O*~P@ z3ty~iPDIRi1WzlaZ1B4&B}NH5Qq^1@X`Om{Oay{Q$IcC7)M^*b3cI2oPbDTwH@2>= zFHh8ZQd<17&j*OHnu2Nk5iNq!H~cscfbU5EKyhSmnMgtBSJ~q7+Ck$7fp{SwIh&+NPk$*$}Q1^>T3^cZ88719iwtxC7co7 z#NgB?W8*5=mXnhdyY2h|b+PoPcUhr3Uq?}=Sb7NmcRXdx^K`?7)U=};TJy_Y_uhIJ}haN^c20_R9QS3ab`e2qGH~59j}k*6WyGM&N+! z*iF{vX#DxYaF5-=s2rLNWS7`rGP0ye%Sz-$CKEw+Vj4?5&>xYc;Ms8-R5FF-XFNT14t0m6CXSueJg|4)~5tgXJ6(WSWUyl4z z8<;yHB#_Pvca_YO1aa{Om|AeWI65$K7Su(yX8jKo(!q>srt5$uSp#-ylc0pIIB(sM zCpmrpbbfTG47<*RObR>3UzP)H>)BrJ744c5P3=?i_>H$CY<0*1xat@}28muosWMcS z)Arngxyy&^mut*S7SWb^W~Na=VBdEoHUmN*tTnkVtkcxv?W3`4^KJbOsDTiw#b?+N z>vwQE&$6$#8XKeZqD~0)>JmpS*Cyydm14ObwDiaLV!rJ2RlyJ%~s+ z;x)5)q9z>#Qls_z9XnX-D}j@!3V%pKZXHW00W3*|uVHhMXZ zRurV?HgnD+Zq+-w3exfew=@OGT%N4brfXB%WycptQ&@DqwQ|;bZJb;8I&)00LenHa z700q9L*e#l(Yx{wVtp+k6;Nyi9EO@?Q>{DrE;8cuC#Ms!c&9tbjjgYqq_hD9E3lJt zcjxwsW(3=8Bvt5e+)Vo3d1b|oz7U&u%I&a}-f-UILg=pr?;zW1_Bz>|>P6$VY7mJZ zu7Pq}$hZt8ASsdRr-_C#tYji?w#sY&hdyU>OvW|C?QkDVP>apho+JtP?3C5t=)>s> zEw+lIXmXAJY&`K(QbVL)Y9@SZ89}f^lp^j(|7#$}$_gBBa|2@vMk{G3t%JY`EzdYu zMyFT8z&Iu9w?eU~-Lun5u}OM*vh6<*<144`Z#-02z?WgTv^y4Q!XD@%vWU0=TU-b{ zXVftCG^@v=1!c{qWp%qdG0iPT_0&5(ls0!$%Aj0Z6DfQURLH^}ZxP2Yv5zbip@gXY zjxS4i<6E5K4jg>?MXI_q8eTepUdkpL7wwB=>rs2-imJg>Nu+MEx&?afiO$BD8w7CW{U7&U>V0d7NvW1i8ehurR(sQ+4H8lcq3jY|;hev%;)lsK( z5N{>AN2hXoy{Sa_yhQgE1TVqztefZhNb4(b!SE!Wnv)umU0Zm57R=xaLLj*9lZ}6$ zy3RP4-Q1jZCqG>&5y!7EkT@K@w7pkUw5ONnk@lSZ?#RBTauzL%i|?i~7r;{}{axk6 zyl76H&o}~8RFqcf=SRQlGb=k7^CVXI{4)mQiA^0-Df_y3`iT^rsj@t{_YYM6b@wMA zM;P~3MtoFTn2pm%>PRp>FHRCzA}}2sg{I{}%e4`?<`2ga(q$#5rEJkMN7SN}!5Q6J z&m%g&``Mfu%9E|^E6(if`nSwU<;zhf!==9jgD-3rb=(1<8EzaFS=#+f?aJN^1vH6taL&ng_mpurl}u8syq~Z3T3a{(-h7f?hic|A8ir%eQKr z<$mUw{mt>Vw>N4v3p23SZb-k`FfIhpey3u(^2NnnRg+Iw?Pp!W#{jP#zaE(EY=kfV zf&PK)lrA||OhT&E63B4<-}DbwI=DN(DCnM@v{RDZ<}G}fzf%pD*aj~3E5W=JGyZ`- zEBtwZCb!N11HFoJbwXZUL~9hZBO`R0M5DGbe&XiYRpf7(&DBX4-6wHl_5#6Bm4Bcr zrMqBv9f!x{e;}9nHemEW7(*DxVz;FVzF?qXOb;%?;Tc-3Zj**>p!!EeNsM=h*A)S; zxdwNbm*wntn{V$wHRhtGS35b*S6;zP^}AuR!v?!g9Ub)ETm6%)!th7Zp=;`R8*N}t z_$lhSRFLZR8_LUH*++Oy6OJR^?esxa%dpqaTru-4h)uIpQD*9L&Qq8zBUEr%VnN{z zSw62EL8me|<#+UDxUVZEl?Ak`mExW#`s5!~U0Jm?CKo_XB~2i}(Mje(qSk z?MKz6;ZRUG`NoJbsMYQle)g3KJSH}NTpgmRasIXkx|;GW6CU`^(@;~NC0XzGWKygd zNBp8?wD>q%@`YETVnQ$8OxiR~nqNH=GrLkwYW}8Oa;;E{yMI(x2$>KXEzIyRz4v{V z!-RO*IwjW=4tk&sEOQP5|#7Ms`ptaMj-u%@fyEm=V z-!2qkVMkqE#u2o~=%IG6*2Y`eQAZN>HNL#G2rFTBPtY&0&Dj87W>bz-Sa!aWCSKkyan{^$t> zVj~qGi--bEH@(?Po2b99us%lWiwGU+zh4o4;|dd9zJZsYtcfO~i!$k!DmK-_zNP!S z?U7g5Te;1*(3Hyg9M-a|B@ZD)`>QuMwUZ7IS<7jd)L+CzR1wS9X7!|alV{;H7B&s?rC`_VR za4#NG2=}Y zCYtlla;2+7-X-suSgB2QUEYM>8x{>VI!O++^aRuSiR#AD@TaGmX;U=jW8ub}X2gyk zB>xsPT11cGLwCZf^!5ZG>+MKUNii!_NogLl@R6v?OIu8lez?QEX&Kw!JXBJF_H@-4 zaMTKeijz-k^7Tq6U~5lpnH#kfmz1o5{!VBeR+48mrGxB-RyWxC^HU_kAo=&3Ujumg_lLIozi%N-M*8`nE!H+Q%(_B|${rxqm78AnLtTWqY%bgRuo|HuMP{}`gXPYv z<*%dvK*6{@afyPt6h3x7EAL+hnE_f6Vn{_C^~ z7KheVqv2{2Ae8j8PS@@R*~AfDP9$BmrsG_}dM`o-yAZOhkL*sr&J)b@hi#w!#w z>3F6PU4&JBQ=)0oOwx=SBG0;q9Q)zdg=uWeG54Ip8|P>AOvX)DbK2O%Z4&HFBoUuT zC3)x}#DmLWvz$CRrh(&M{6B)OLI^%Z&a+1*K)i^511eT))|w6R{QADOxeX@vQx7>i ztAt9ROt0(8u+x)FDx6^=VZDu*{@fXkgWbBc+XDiJ;en=)Zh_8zKOQxiJT4a}_@x&c z)uP5S*&M;N!JQb#C#9B!w%BQR?jl;;$fC)YC`NFU*Pe#mT<~!*zWQuRB z?O`Bv;Pxotx{5;I%H;&IEnr(Z5n?Yx;S}xdUYXg`>xS)rDe3^t>=UtlBFkP-x3Y4% z;WdMtj#;`Bb(9oab3-1}XO>2sjKw41&7=uY2nD?~DV-d#Un-gHK2Er~4^~{!sX~KE zn=6X3nZy(0kiIn=BYWGw{nOp^K2&8uL)rq3v7C*e_Aa+oRGY2f3wpHh&6nwkOw z5`Q(Lg9PU7l8$s&4;d%>2aAT8K8Gla@{B1#3$*VY)UotdIpS*{O64}-GT+1|nDshv zZZR;`{Zpo_#0Ht&7Ci?flPJYG#&JG<)s43s&wW95t#LbT8&UJ5u9tNd4rW(MUGu0? zY@Ft7ZcAomzWE*G-yH(YvV|no-~nmY*-@IK=16tvk(umg8n9nCo#z?b@e*KG%e(qL zr|%wnp5Cjkv9}Ej;wn1@#(H>r16o7^*V&{`|~G- z))BshF{(2&&e+b>k?1Cm3mDZ(d*(>78|Q;XowC;pb#{;=qo`cgoN(Z8Gi3-$Rq?nm z+E9D5O8Hn3C{DLDh=?A1WoVMKS70+X{Gbw4qXcByoX zkZ>D_=>ea^_k0;L8Z*F{XN$sA(`w_v!EoAPd3?LSdp5F{fQ*+{5K}hqCCt7>r>;g@ z!=0aOd)_SSd49B}>pkdU<>gecOh)o>kcv8Esk7q10V%&FapBC9IMg=_=f>o0q_Bi7>rUKU5R(_^bt2 zQPalO_5vG@E zhgW)mONd_?Yrb@q{+A>W9dw|-);`k$kHGde8|uZYN1)C}_T7q$clPGj1SfjEL@(>fx%?TeKS&BupS>0;Hr57< z2Po3xZK5v}3L0|CUQ%&ozqPuMc4 z*FsVQ7;{2V(7iD-82E8&>Si04A8JPE$&C4vw+ILxo%DeA{sPh57g4EyhXmRPm)3;BCeoj7b!H z8RC4AWugM)yln`UwQ)h_8mo&N_QDyS{c&Ku!`eTq{PY^2hLh$2lt1ScMu69p;I^vF zCusu1ti)o$mwWPPFf}z_qnST_fsR>2xkcYo@dp!)@A-Fh3zvcgCOMpNmml0H_fv{ z+zN;r-}}kMr0R>A@Yu79C$n2kVzNq8p-==({QdsJGkZnBS|WW6b$p{@eCww2lZy8* zdb0Hm=&CC^{kO)pCA9)GbFr6(t^1vSpbkiQw(Rz~W$CT*sT3@3eLs^r?R|cTXA;w9 zkd3LcwiJ(WfeY4s+=4=VOWK-z3bV#%2rppP&3kb2xRAm997OpKhpyUB2E4 z->Q5UwB=;BYkkG%qvF+twkQ}JFO#qAis8h6*^v~ef;r#T30&64vz^A(iUrH!prUJw|055Cd;3j*OkLwZWW#d2Vgq_ zb5&H7r|e9=IoeFkloM`dcly<~YoR&wyH`QR&Q+b9Vxa7;$?~c{pWQkuDCy(7N@-dT z3ADMYR}^PhLSzZ~x91KMYUHI-3KQ6i)Nfs*8mUh91&_zapcpW=ai4O~iM zTQuiW<^-q{^^paM9d8O+O^RLfxTMHNOocoC0#p8C#m^?=NMT?2;o?dqgEq_qy$OHe zZBz1_q0+{P&TTf~^(tnsA*zndxaOsazxvF+OdrOY8(UHl!_SlB5=|(ufJidF>+*!Z z?ZR@>$#P+4_*!Phzhps*&Tza(kD79u1`qHnz(NbK|GCB$^8sPs;AX7zno==sH^`xd z*-BESTCfEFx16A8Zj>gRR(v^%k9#@!N9~ATIrItExunO)&c0ytvvP9T@y>ssH^Gg{ zi?!+;&WT0NFt&eO^~KFUOb{Aa>t*XEx8)^`r};VNe<#o)9&dBzH~R{8M0RdguK#OV zVR3<+WcaEvHfq`RX>gqNjdFV*A=&=349;39%keg1<4*tyZMExk{xmh?d+qKF*;6QK31&g#_WN;$3xkK596=yoUz2xiJiAyV?1M?qKR`fdZNla&($e_*S7^d?;Z>x={ zXvC?;bmz@GqQPrO<%UV&4)xR#}sM zxz5pDY}^iRKGz#xxQ7){Gj0EBZ&APP;J#o9kX>B`+uKddV$Bdd20bjKZxLJm10j^i zq;kEQGUl3^*>2g;quf;KoSWyX!nxYsp$}@%XgcB!s&w(*P6)EEH+usPp_!CeESXw` z5`h5$Wt1v>%1KG(WQzaVH0<<8mot-x(?({_}-4H5_#3%mtE%(=uPw% z{Vl@A8<#HO$_($x{eoEWeJy~^am&@nDuG(RI?49jHy6Oea}=4CU0#JTV)VxU zTa|OHT^Z=mo|_X@E!7R^KYccVS?~-EY3&!#(Fxg2Xq{gpPXHn_C#H-XqCf3sk-hAz8)uMI+z!XG`I6Ghq~G_&>!$ulB>xp z^+O4Mb|kzTDX32uX9);hv2$=X`esOGi=TMVgf+j6tr|-F1p^si)wb9qRuG7AupAHf zqc4kDkP|e+Ptn!9SUGPw>ivK&3SUehL~*_hB4yacH0GEOu=h zc>jUW1oI(V+rQ>WdoP{6((foUo~0UDjk-;59!-q8~E{2e!Tah0HQlEa3YEs3$R+wCec9(vYw zS46k$)B5mSiKXJW3%I=~w6^NXP{bdyW5&I=T^>jHYM(l^?Q){`%=NX3(B33#q%Qb5 zr{;Z)eG$lyR6+IP(@V4&_cU&^)@{90^KwBLK;!6i1s#Dd;KX}WYgyHd6zNLdHfhzu zDOYMzleqGZ`+D6K&c^RX|HVZC%ZZyDu@n?M$BII!JOSogg-D)l!%v4&ImI8w-=w$J3m$rlZlbjRPY20F~uYyv(%>t1`j~uG9o*hkMI&>d+ z_v)HoKtsy?g#qLHZU5{UH1818%7x{kN%MQz3Zl13oQ{=+*WJ|01VXTd1XE-sD(Rz3 zC7?Z*r8S%Ua;~T@jpI9wPbvtmIE<%3{n{CrRNj zuCyO>wOzi{``y1GW;+a7^XVV|+m8sHi~u!}VEfYK1W`_G3I7Yu0Rl-pV1L+2}YY>-MrJyX@ph6JdHJ-dcJr>d6A( znLfF;-B5uY`TEJL)YsX~MB|$}O{Ln-!+wub$@eC4Ph*j~mZ$%pQNU4X!_Rd<8vDaB zG^*7pL4P5Z2+l~duP@f=-<;Oe|wH_;fqFwJ?WG{>mKJ*MpyDKvUgwLoQ@`wrc{(*Ym;?9VL9Ige4(!4K0g1@d7$Tpz4Ap)|u9 zY8rniwOE9&o0-cD2#VQXA7Tiy>%r=;un~An1;x~_6sZRB!vvSC*JmpSQS_2*ZDu9x zi5s)I$9B3r^XvRp&eLM7sg)%D<@qPdtk1Lvf;<&t*28a`iE36*!|k5LOY3Xh$^Gg{;t-wt@m$WL*IqFfo zO>%jBQeG`z$(PO5JFnN^cU8s-eQX0z$MY5Obv>0*`0>8LOOYYoq1|@Tn-gqbtNdiG zG%fWvHMb$%c6_&VzmlSt-CY&=MQZedI=)-H|0O^=UMh5iFbibDxPCZ!S{1==W{ zk<_!9S`*T@O4hm_=Z4+yQdFsM{xHVKUbM|GPXt%~49(Q~Y$1bB92<}h&rf0)owPgu z$e~~#vU$fAcja@ka9LJkjmoa4*IqYV`=PXH0@3i5cNfM~|Gq53a_33B+Fn`Q&)X+& zrUEeDUYT6x3a^LhqY-s9+&;>e6SJ`_S7drt39>b~bB`)jSYg04=QuBW%k!# zh?$aiEx2>5JN0v|)<&zRm=6u$@}?^gl?;N{>mu0Ei98H$#~Jc8j(-g6GPcU%qRhd;u~y7fXlTKT3&(Db=!Z7VT0Y0y z#E9Q~oy>$NmnD5z@+}>!_}%BgE%H}-U^d`6tW^F`-ZawRS!zd)V!24zZ|^65x)$%yhdx3>>s68sbr2fh0A4@n~=%GfnI*6D+z#s z=I_hKfJ_}XUt^_RXqnk~Xmj}G^ntq5+dIH^I+mL5TVy8ko76&(`GWaNL$$d^V`J#( zUa`qI=BofWF#*z^xo})JY#w6|g2p357pe$~^E%V8Sk~nPj2R!9rLM^<_F8<>eCsJAD$ zpIaZjY350giaDRgHzi?sM^NqopC7x8wdj%?j<;dEABA&1VL{EXZUfgIA`6Z&S+2E! zf1jGCl2NJt>DV$iqy8cJ_O)&JZ>Vjc=xzQuG~O~dJ2pQz9Q40kL~_tu7xAVC)j;6n z{U0xh>i=I6s^VI*d;zr_&$~|qf^`~aPb>_BBNc(*`xl!WuD$8(6otm7!DJi30@|c~cub0nV=p95iPgBNdDmI&Oun+Knv2@*PbiI7gcw^34@2Wi=O-p4D zy_zSMDjj!srXl9dON4!CjCnDgs+#jJJuA_seQtyZ9|u}%Ju}&M`fi)tqt&K;Nc5#d z2bKZe5}5lG<@)&7J&k;X6&vNdmzVfh=pG3LsqJxo7!Sy88*^ZDb_; z=YAu%u`R}$?y(*y>{%W>9BYJ02_R9pBLK1a3nI2JrLdF26&Xc-O$jT%Q>CHwbH7I^ zH3V6vY^>vz8fZK;U3r3?tqeyk(=9#Cu1(It22J8W36;y4oxo2#&FkydQF%78n9nFY z!bv{wy)u_21D!+4OX?QXWeIQOlE^H7S6pJfo+IJj3RjQIr1pU@fKwZ$()J(ejDxs&2mj zn?Da!3ttFD+<{xMIeA_&+nxp(cvw(4lB!QxeVaEA$zl#x+l|pKjd6kX4HW)^t@X7J z7ytFt6c$@A_@N@Rg{Y%IpeoA6}uxmYIV+IM! z&%2ep{|7RjVD91ri4GnL6GabSvcvNb3KCP@mws@5giPEm!ajI;MB+z$+J z(d}HCJu5TQGH1^x?QiEuiqm$oZbvLxdPf+g zi9w(oUl5spINc_VETDINZJGL;J%+J?Jr~xN=A1hOq0Gt}Lsu$7C@@hfybsjPuaA|n zq;`AH2zfQ^_jsuNc5w(UpMzz{{+{36WfC5b{@4niUbh|4MV3l?UO~uA>y639vBECV ztkKHFgK|-sYVMH?OIbA|VWPg4qO#ebu4%@vZEK9Gf9UWj2Sx`PSPyj64jP`Yp=OBK zKp6x=NF|8UZq@6`9|Z?7rkwo_kFlSbm-o|=fb*@k~VLd@A=ceAcZ)T z)GPA3(qr?>VQIWqp$(l>Qg5}(tI!GM%&(^(mlY?Z7MX*oxmve1>b&DSH-(3fNy#yw z_*2J%S}a_5fSp_f$yeN|G29~lfRkAb<%zem=}!`FwBMJN5DF`3IxzD#u0&(#XlYHl z@pR*&)T-D8a}N_U;x;|bp5(2st@{?vi-+TV*A5X8>ggmOZn3OiA3xjV z`-P6c4~h^l1!;@3@bCQAxjb&XYBup{hCnlPxeq=3Qnt`TtKoQWDr*(J137c=bTWxv zhKq(Bho8{ppNu)-H>Vx?mmgXiqPkrBy%v%!$*5+_&nbg-2uUR0*PxYqU(AG`atj_PSkTpiw*x3NxA?93SjCH6!np;Q@?n2<9A=zY0ToK^Hdhx zz{o3V+Af~Vr-sS&4Qx?k%^EH6PLYvYY1=TA=H^V!*0=`g08#%yZo^yNZFj;P$>Z?> zC+|&u8#>6&x~3%0x4aOcfdXUe4o1_uPeY#=RVnPc103|o#q=6#3RacgwzPGwV6!j) zT=o-sAE5)JqGx)uk7h4jSWGhv#mg$SI409A^pfv2OV}c~4F+2N`;QUzbESt~Lcpmn zfY#fZxu@EkynCpv2a*HxZg`FV@w!z4&>Q?RlfOqXuZJp6&2J{s?MOnY5g661(~rr|HQ?+RB-q}`Xh$jd zlvP)>#1ulC7}=A^|<46wL zn#tt%jH5N70%Njv80SalJ%hvJm-QuyN%1!6PCrNWHiFr3en$oj3N$EqfieN!TvjT$ zX0+#Y69K0Ky_fy)kzTjtTdNlDL?${a$?5~qz!UoOk7!cl3(tCMTDM*>-Eo*@7}j5GVwPW1?tOE!ytRVpU>d$9;#dF z$qPLybtn88S!e|k!}^N%7U1Yw-b>$B zNNh%opps3qM><8%>2z!FQ8bun!{Z8$Prv!UjVNuR`g}Qwr=q8H99|R(X?_}#=c{i? zw=4)EmiRCWTC>b;NLU=_|203wUgEgT1$SG1kWtWVDi3y{t;r3amJ_Et9l7K?R`2Fd z{3x?;^S&?5wxtpXU}|G4XD)qPBHwZecPkKdlN&x!BJ~Lw2K;sSp#3XExA>jpcg2fz zL(@l1%g2DGTG9GoLvq9$TGBUYwZfzsn|QY)sp#PxD}ag}p4T>g7SAoLRR15y@|3l{ z=7%0gTa<7mOO~#Dy(F=o*VkRu=7Z4f<|+#dyrL4*M1>>k**_32a~RFB;edcr1Go9| zFbgrE$^`Y41cQvtp%s@?t!$>ru1&nNCnIleIJj{4f9+jTreogf`F|Mj>hNs5jiLl_ z-tfRaq8QGFL(<@G`MZY$HOYwCK=8VA&Bkw%vm~6pR=7JWc}5h97aJ8SZ9)y*1hptO zb6a|~le8b&OyiCI@tO;#ENEEEvHj9K`(U2~wrb;V4SctpdP~Ks1+q^w8pfkLL20k$ z#<+#J6`Hk2F?$;Mji!f1xUyEqMhxsReRzPfY4Pw}Z7MEFI2Pd`kFpHN^i{*B*Evbn z_$Q<&c&jD&OK{M@=Mc#E|HwkJZrzN!IOq`|^jPwAHe$z0G0h5GRndtLfxAv>Dmc^^ zI)JIWZ;p)6?*av84gJ0kwA2CY#6u2Z6810QN~huUP|CFof;z^Y_d3ZCR=&TJr>B7R zDkQQTPG>5dI#`q%{S~%1TTu`DM{oBc+pPQQQWi=PS5CN{4wS7fuIOss zVSoFt=N->0Eg^YqrL#Vu93lhV!Tm1seuZ3TBw0<9pKi0@hg-xc45junG%VLl@JA(k@voAaskeDj1Fuhzlzknm zH%$@@yhXqrxQEI$R(CWc9|G#CBpi`rT?4|??YxCj%EO0)J(P*tM9XZ6s`B@vzd1;) zya|@Ss5CHO;D=MyV>oJtPgA**T3tv)lDJlo>SJ;*9f~4n5HY*?E6Ca*W1!%A4-amr zm!Oc$W0#JZ$PoN7B42xZ>1aEz}HmZTt-BH_7%YUkrbcu|jzLG2H)Q|@CP#|Hf7vU})e{0o?RJPlcSjBgr&uSFA zwcVxk{7fy8M2hzKwuL2Y{#px0I!5+6(E=?GuI@;GZ4?Wu)e`Yh1C79zp=9_^f&CBDr*=4UF*6EkHPI=c&O+|Gt$_W5+7f7$ah)Vq~v4Ocp z5$}!L(iDPUjFJXbI4f=t1_Hb8LmOAR<$)9-E4kEDFU6z^-S6UM)Da||YbJqynXpOS zB=`5NxO>Tv;=_ujk2VE0nI5>x9U@Q7Wba#B!t$Z_gS+aR%J}K|((|NX#D`e=< z6uls9ak*j4hX6y&vfzI4E;zBk>xgDiTomR(?Ory?^Ns)`uryfxXGqu3kwWINh-{>B z(XtzpSaTI|7~38N=6rU0hUgYSdGg$EO3)TeJ?*|_JM#mxIW4iR(k=oOp2;!*YM`gW`h{;sHp(`7(Wy#5Bb&!Mi}JW^80FYe>>oK zF}U@W449T9L*6BE^YG>&6m*9cosbpFfgxiHaNL-4U0mc=)x#?cyL7%kJyh4yA~+D_ zbfAyaTJs-x&sB^->LG==oxzg$LkKB@hTN$I9k5tii`z}Ya&V@p`jX++%v-)-#xyR~ z{^c2?lO^w$f_RFF+ywbL2ShV-yUr3v>`4_ctjG7&f4JpJih z=%Qnu0pJzAA2MH%SjmD8aHdj7 z#Qt2xn*I3h)rF=YD2Xf~rzfX7=evHQZgbosuG`9l075hyrajC+WTAivwqe!?^N-!d zE`%VS5PVn-h-San#BwM*#0wn)kXA#BsQtb6Dp;8-SO416^q=h6kYOnCkUj`!DAAlb z$K<#~iPF-HkS99xM_vsc>3%d=8lw|Wm3uP@jYfS$Fc4h6|D_I#EZ0da`N(VB%XKxN zEIJ`NU!i}$_r1NrMmIybjgdtp00-;%Tg-UfcG5LXKa;gDoa4puAXSVPFwi_p0h5fk zn&;fxHSgM5@9^fEFUCO5b8X~B7^fw#koZzjJPh()2|=idje}%AM#R&$zj+EOyjkW< zO8$9$t-7Bw5PB)ydiCPOab~^DC5fAyK65xD9}fqA`wuaCH)Ygz&*=@&Bus5d-}IM8 zw5Y&QhKH9DQ?k;2y+uV31#O1Y!TtJiCqcN!vo#$~2bzE>IJk0_rBb*_^&`-ClZ!3C zJy0jZSc{)588-njr_Sn~RaX%~!ch@%m0w$8<+aw z-?V{uxShxbjKw5d6)L|n>=tiU8qfQI{^WO8EJ<}E&h;sOn&u5-W3kOlg+}@O46_Ek zW-O)OEP2A#37gw4eCK+RAY9_cT6ZgvCg)YG%~KZP5dFhmSAx$SVHcH&XJrF^#CJ@# zQ!S^$9xN1F`wE^&uc?&tz3;jss?ktSy&!;Mp6U*tiR8JeRQtWI(hs@w!c+_7%`p2S zrrBiTu;-x)M4bhwS8@vG6;Q>q>caR;qT_ zO12;SHu2`_NI!#BW)s5YQBgSlfi_An^rTqUa6-4{w6Gv>h{`O~No5M&c4jujYkGhL zT6Gs2i?Y&|h9dl4Hg1mxtV%%4#OWm!E6G-+!_b2fpI@p(_^;~95_=9ZHQ&j{$hi2H;KHS{6ExT`S`YCfS)l7};cax93P@uy(^t z5sW^x(l&sV-h3%M{9HHwkUYz|aK3Yq^BmUAHHY}84cD9K}_?NhR=(=Npp z6$;!B!bARrN)PW%%n%<1wv~g&_?LnZ@lW(o6V(%lFQ`??_F0NQdmC!T;6_lah#h%_ z>ASWKP2KnD>-xA7ym6`(GJt#;2R>7K(2f>H_B9X3kkEu5Zs!{3wjcfMDNS4B6r-kV z?*I)nnl)>iUB4=zO*IpIZcCINnY)8C;9U01+^)zE&+;eA(>}~AB?~uMu4wr``I5{( zR3I=t7)G``Ti@17iW2M+(W>E{l9cqO-AR_XEF##t1O_*v|MQh#`Y*Q6 zg4%n_6#ZK?0h#w4{i((_MJ8yAw!msIesWyZ+1=QNdjUZ<<=Ck{!Q`|`C#TRlO(<@o z$)vS2kiSrju_lGg{FaxZO7HfW;n^9?LK+2Kr#ZLvI-Z)aHV!%Y3FbEif9-(VTQBIJ zNX5xd+wmr-JK)nj0wT(FKh{f;y^k+RU?s4v2 zB}Hhxfn}szOq_dU_4UBsgT|5~h$>bRsy)m_WU9Mgd>77u40!Dn>|{2YGuIz*S2{|4 z!^}Y`@R_+VK9q|gw#MeL4E;r|Ev#PLyo0_y82G|SvYZ|;!OwRc$|SQy4C8MWdh@FW>UJC`j3Up>OL5U0$l zLH%L$9U%pVC{O}pqEbt?s>+XWVPX}fXFwqB^EPSP-tf9B#d@QM8-!81h3ukGu=H#E zK+gCAD`CTVvMmjcu!Af&Gisd+E@t%?i!YE7&z_j2@fs5U{crq9i#!pVO;8DOYtlRe zYUalA%W^kd(uIGLb}V$!y=yBjT8ZRB`=rExB*EKJ1~^L9&FpyHyQ)&YC;xPq$< z3u)3SPjwsaYqU4yBU@a1m_`up^6IGi%h4LHkUM!*52 zPhyeL0Tfk0KY~02(HK!{?Ma)$LKw3$_S-G5eG(%hcVxR zj1CZj$i%0?`^*Pu6=uMY+M<(|K)3(MdXKqr*(1j9SS-Qj&K+(1vPrshf;(Vw19_ zkG1(9n<|&`yndD@TTQzL2h$a!5{JW!>BhfL=s(|wxjvT0^1miB!-wJM=Hpx_9NxF1tYjMlc%}4YiAPd>lpmhClIb)4Z`e3(9oOYh_MHjeHl|gYt>$Zag2oeHea0%`NcMnd0;O_43(gXqo7~GxU?(S|uf_rec z;5Lvq=bl^j>iv5^x~ivYW>0su?ES58Nr$zoT|dqKbWo0XMe(CW$GC3STe=+*uOnSj zf<>CYRn4T;j@ZC2PUp6vDklW?x*&fi8Qu$7wj3jor)1%wjuTB6w_kz9h(&P7v9>^u z&h69>D5hzt!Oj^wWkrY-9K)b%^zx7`p}OW9)S#~K7KwfQLSO809~Jf*DtgT$)YtMM zu|6@T5jVPXhHT%6;<~Qxk>`9DiIe||>j2d3fi;h!g6hEhrS^PcF4$OQdhto7I$e32^Z4nw7VbmcI zY8eik0c!KTQKp_;>q+B}SM}32@KM*_J;+`&+Yf+|?ObzDWGnk1P#0B_2!h_wcRI6P~Rr>h3UO)UiLXOkVmCleGh(r=7o5uG=IbQLpLl z1jh054PuCL(Zd4aJ66ZugZdBlrHoz{lYDAY;-`weLAA;cm+E;LR>c#iGnOe2Iej`= z-I2g8zQ%H1(EheIxu*(vF<$Oz#|e5IY~2=+fIaA9;2ZjNNiPs?*Q8T(8xlXro#t%U zYblZTnKVO-&iKjwu9|W_TiPvgFM5zEH{J_>1QruglC+E!ucXpBUegg*pv=A#$~64# zNPOv!EuQ$$3{tl2yCtwdtP+6`?`@fj%rFqYmllYs1d|oz`F*;iiOe%F5G&D>b{NEA zy5dIgTdTej389Ke(9Is+BBAyZ+7iHE!q!1SPK(E!+~6=>b>_XR;Gn2Cf)E~`RZ+Gy zY5#Qh+7%r;Ue-`yM-dugjG=lfdrChVA8s+cv@deXb5+eW&!v6pwnQG4Vth?xeGF*T zlKtX3YUVJR{DLsnd{zDSlH@XZbErZtcco+3eN-gdW~=l01IrNCM86UTUoTB@v$+WU z$aYDPx6Rx%lleTCtvvp>PtGvc!le(RP$Z=-#TW5D*$+BPUzR}aXZ>cZi16=(Fe@!T zqhBSn=CdK}uPzbZ0Fk&F>HdQd?n~e-juH!Zm?@$Rk9N-0z}3;|ZnC2F$qaH=F~jL_ zM`@MK4KG2b#A_rCJ|!jiR_XW2lt8e-9A@8{r~9;+ar7R;aR4_CKYVTTS2C?jw9;&# z?V=ePjxiX%3}&ij1b0YhBEcsd6cIUo|3X)a;0wc0W3)t0j>%q7G?apXUBGY_I4K7X zhw>t_E0&>XPv=&CO0e(Pi@YoYcRE*1u>C{eBmp?&RMwF%ogn)$nD7Ey%#~K;JX$|Y zOVXvwJZy}xkvjb_;g=3wobrTmEmb8 z@B2ZsGAVw;zfv7_KIvVb{;G$DSss(^ZrV6EgbP9{-O4ibr09EdZas` zicvn(Mf>{)1y?%#D6?!AT~n#nog!05;@ahia$=m~djjIcNEU|cf-m1h}_M^v`;sl>F|ykG;>Y@*neO6ag^xlZZIk_ zQ7g-_Qf042tkzw6%WLIpkHUz2$iFp|7rxw-4#^2{RJ+fM34G1@S*1GAHdI`=^o#iX z7Zn5`KsG?8yzYgT-MmtCanIn(C!@tZEwcHRjFyX*mYA(!rV+Gll1iT_R+!^++bT}V za%3rptw=eYr7%q{_udb0i)68pu1tT%?>JKDX9IC~jNXuDdRFLWght;c#>2NTAiMBm zPF88@)|ZbRxPE8}9ub~DD4aXpkgz^t?@9v7b&s97)%E?(DtlF&)=Xy~HEZO;In8&- z<7OG8#ZjtpJLj9Mo3YC3!o+joLZ*s9LyV0N*4wmmH`;c^`b7f_hqHv8Y<~Y175w_M2`y^`9y$4d-Wd`e2x3?SekCnW<=a6a1w)eG6(sg+9L3K zF6yvxozzah%x}Dfwsp?&V|bz62;V^MGN7H@Xm6U@LB=eT3N358-U`1d|g&d zDqkv~7g6VVuYl7q6TMlrL`lM!vna@genK$28LzEgN5s3Tbx(*lfMde^Q=#>hR!5a5 z{Kh`KqW&{ZnUp4?Yp+OHAwxZcV*Ol#oPLx!nsVUDzcOjpJDVmm6MtJEHK&jpucf}} zno0~y1!<9Z^S^GafY+@aQJwXt?I|__U}bAwef;fR-5t@xdD5RBRqo zc!wKhrCXar=2LV|7oWY^%c`7_#hbors-5NoEl)zl6en(QJl^DKx#jhQ&j}H;|7s?g zdZg^Nb|&*LtoJIO??mq^KcU+wFTXw8wLst5C5}t~R**X?gy0Z; zV^RWaPEJ|u2Q0wq+Q^rl#@cj8-qucuGd}p;%Xm3!hR=t}y3a3%#bZD2>NsyR>}e+K zjqB2Mw$#GsrPPR@Zl-jKaemI{zmiG|DVUYVmq)`td6qAn0^Bef{AjgBro;L8hq^rm zTMlV+q~EFijG-jFA7S09C#8P$crTYRnVyx)P_h`V>wroe)h!mHdkcC*|%rf zGsvFl-)6xc)dqj~x91Mq&#Jp^q3G(~aL%ibi$vQ%4!FO<+I3Z1hp*XU&DZAlKvQl1?4p~S|dMGYxxc+qdUt*WReKp zC!?;vrG+_`h{!dtkf-P-dj}JFI2HUPY6?Uq*lDy!Y}5ctY%o<>ZD4$sGLQ6QWGZca zYrh%*QQfVGDhod{6!#q8huz z8q*1lyArLA=cl%xOTC>(wEKc&nG{(Wxs0N5lP#Sn63tVdhw6(n{HBM4e#MUG-oh6p zD>JVRe6;#)FZP@6c2JL^_>;FjB}2Tk4sJyZutKOEWFN}bh=cB8D@UZ>P-{Dcu4^rb z9xI^o0@2o5(T!_dbBsMG0(vwcSA(wbl?}(r-eZ{uCwlcMf@^IQCKb`Tuh<&@K-mhC z_GiH30rJbWq$Z~?*g`ePbx7$_<44ZDzb!U9PQ0#gAZkrBD(|3=b6QZOyo$bo%iSgL z-Wy%4T50-~R?ACuD>?E5P;hLI#-JNI^t(co`H&6r4rUeWO#&S;Ql;@IN8fH8WkF6~ zRTPhh6Df2y#di5}Sg>B<^AZCIEiCW~dcEy4(Bql7exriYR|YYQo2_(?)9a9%bu`Bx zbqE&GIbd?PX4WHF%@+xv>D4&PB+LO+7R}};BIdEkzp;zc9sA23+eRouvfGKI6zn8s z(Smdo&4!tPAF9|pM!MdFN*{O6R3Yi@mLx&qp=Q`$)?z26580H`UuPEdYnF9CL|3$T zXWOi5%q6b)5G-6Zc1%FdMEbMmORe2;a6Pd`N$=9cOYz5=T(bjGpDdDBb*+Ia!~ivh zaqglKby>bmbkwyJiFum%H*a+wA^s(d_k+aLIl{w2}zb# z@U=mznnOQG+2*7qc?j1w9Hzq|!eL;D>G+d&$~U#8^Q2!lQL3wZi{2;u_J()?2Z1f| z6>L{~OSSWex;WE_SdW)-F^y;9n{yp;rv@lBz3+M7He-k?3|WKyoAb^3p>-#m#_pY zsqo$Zcv1UU;wWp{S`75rm*%H+4*wvhFOBaP$oJ|&FFw<*$FDWgf#~8fUMq=Vow2h6RfM?pamz}JZ=H!hLwWc2Xo)yWn*iO>-$d#`6NGQC|8Kd8ygWg`W zkX@EE>e^;7E+e|g{N~J~HhH*4Hh~d&OXYRn?-ULz^PD4zAyx)OR8YB zn|ZPZLkA6`FLbrWRfsa>0DOBBS;koe!H5zT7W*Rl{V8IIN35YWE!2AO*BN4>+a3w{ zenYc)z5OC8wYcEtqXJv%!Gn4@v{vK1QQ%oNRpB*?G7mZy@Rt}NE_3eE>*|u(G|bGv z1|C-&q8*OtItz_pd7^Mzt`|9D>)8-0mpF*U$9ht$U0Y%dTW$;k#5rEP$_arV7u8jy zM5FPdFo)@C{m7WzfW$|rBvU1^CpT^sHVb^7$CTj}J@Iavh5qOmS z%KX7W;5k4})BimIf-MUghx@Cb=~eMxP%k9{{-?}^5?K6Hf$F}O8#>HSDkA*$0tFAQ zfnE(OlzfV;lCk->g((BfxWWk8{vYVYMk!9-I0IwKAV(2kw4v)D@xj$PtHOd?k%48j zqAw`6n-*wQ;NiM@H(hhkt?a(nB=$UrlRLC#&xr>P_LZ(5l(jePW?w8|YIB%+drnGKzj)u z$dbA(x&|f&%0G&-PqIph_2M6$sR|bZ^dSYU*WyiQRXC*wKgp65+O@2^*>8V$c2HdH zZ(Dfq!lee~Vg>|586e5q7LrMQ=R|d7Xk^twR`xF299^72xQJDUL%+pNrM!!yq|a;w zTk<~8F`egDoxUrubljycCg;MIj9%e;_Z+T8j|i|#DX#md?h^Wa$9ZJ+fp-zuNl;hJ zi^0;68IKAwBN%})%op&h9mcr(OmlA&Xb5-QP6+vgul~fs-4_pbEhi}(tj)Zy3Yrz0 zt1RMKn3l{?`XiEhylLzj)GD~s#7Mevdf`UZfO>a#aZLb!=4V+=^1^5UfQRlX;c5*z zYypNkxnG$OO9X=9LJZk%H|wF5w6>~Bpi~moP=F_1Yq%ADOP64Hmm!Gh`h6U2>gkfY z+JyB~x#3v*(szxqXn8OR%6SXQGDR96#+V zS`bY$pEVM7)W`4GHYPk`hdCewZzuUisQ^qPwhOHs2MhnLaN1G}z5{#6kh%DPW<-Y!pK4)An4yyFJ+Rkm6isIuNd`y@J`pGQ9 z8m|c%{=tQP;rX9C#&nOpu8<{%y-*Vqb0b9pj~&XtPpY3-%-Tbk({`e%5`TSLbO!Kw zp&^zW?O6K)Ik^**{H9@yr~Npv35jm7t8k-k`5$QN7tBPA5^7b}8uscN16y%wUwfy! z2#;vnuh1G1`xQIPxSoBXp2L_ds8;NF1(#Pa-Pe~!QKyP?6L1IO<5Hnx-Uk*%A*;Mk zL+7P(SdkuQ^%nvP)#n?H%Y7(60o2h55X&Id?j6PJ_uQT}JH#xguSrIdoaS+}$j_Z@ z4=Q%<>(8CVe8L-rnv9g`)GFhw9+o0*$wwDD3p%EqWq$;Ne=#|MM(x~BR#(adQKrx7 zeufVthCbcE+zZERD&8_hM6A|?5x=_mt_QE5yVX4CDlc&Ex7K?hFebgP2kfcP-G)h? z7aB-0+G=VwaQ9`K!s24a2Ro7Y;q5~Ox)gy@SCix@QYAzQl(J&iiV5%AI z&*%Z6b(uC?W7co`*!LywR&=I(s!LZVz)dnnf#*}kQ5`DBI;3&bJ@VYCtBHtV##w96 zu8#|4(9h!H3dIfOQ0b5-VAFNb^yKwZeQR^VsgG*^M*>Z4?&eLPaa#{KoGEx$IWj*Eu3>W}&M{u3*-XE)D`E25D6OND@2h$S z^ZG;&2FKXrE|Mv%JHNg z=(V2B1h*8)H<)8Yp~Ka-Z^u_qeFRXQVhW;XCVP|>W&7+3655d!fb8=w)Q{) zfRdH^DtM`l=i??BDV~dY9rzNR;}n}5AW0kcB7R8I}K{SuovXP-Sz7u8B`ry)H&Ymxq2z&EC07E zi7xHucdh~U_frCl9K`p%J4Mn9F<5A}{+u>=p?eZyU%lm~Ly_Zp1hdx`la64zP6zuP zXF)dEeUf3cb#DWK*nYuh6D2dD~$E zCPbHHlw=wkNd8ft!`F(8PiaMrHDxoo;5bdFW!lceW8kb2zOHMtB|`}@rHXmLaB1^k z*^Db_Wexcls7YPFq-ro)$%Wa7uW)ESxqyyGrW~wW!e}#|S!IB&!1+fRL~P#v?d)-` zmr7%+^#E9%g)$U2|KQTK=IJ+YXdXKlp~5=!stQ6o(aO7Ws0^4VF4RixmHG^EQZgux zDP++Im*wCxZ~Gj3u!b<3F49m{BgShaq~Ol2!xC0T?yIk%>n(DSxhG4ON&r1#>A<5f z|2cP7NclXb`DpRIwtYWE}Mby=$c2NK(w zMTKZGOS@TIo}>8pm~lddyo8p#FaEDt?~p&O?=9_dK)N^%HdtzB=q=T>TVu<`@1w$wnaZ;a_py3L zkg}p|B_saLi)7w2XW!SJCY*#oShmK2@bK2ESO4gntvIO#4L@AI?$WiME$ z=&K}^q?Wndb-LNp--bu*ebwxU?=fR_4%qaC8+Nsv_8~HBb_@c$*}PA)R86V$>^d^F zAXX*v`eT2Fmtq%UL-F}PWhsbh0ByX+BdV7XtB{4n${GFCf0$_us|XwLqh^dWjtt|Un^L+=%<`$zl0~tueJO~)0!q$W6@etJ zXs>eui2b!20^jHms8r&dAdzpA6v1N{r!~hU(d5pYx+SjnWmC9S$5y5v{fp_5Vs~7c zvV7)+^5{KS#u9SIm?FYDC2Et<${v*!N$LyKO6olebwjUXULSE(_Qg!IJ>pWuzne#E zN51#kfoRle7dF-;O;h^;?oODFg*a+TX7=(jO=>M2NtsUhhzy&i1UO>$4*Y36tq9Kj zrpSLH7_#Gj|2Uy_p|_AZ4;U{S*RE}iw$Y}d?kn5;@GbdJgn_OIvX@VSZ@r4vLku0r z4oLcG>M4|XSz~mW5EL~X%@)s3NLNUmOKagKOg>YQAQPAKxvE5+{b=0q%O5SxZ!_jQ> z+00?ko7FLg?=_p2wC7~wnxBP+auaHrL;tv~2NuB$84%5`Ul$$v((iS$AGw!?C^h@) z<@mm?<=90_+MXT%193brr_>Ze%g?2l>K=5kw<;brqGYaC%S+9NfojmaSgDs@sN-oX zYi$KYLZN3Aoo$hFwiKD7O@v2-9<4K^otL@QZ!!$RD%7$*e4;`IxO#)v+KeS|m6OE-EtB>UGqO>DFE#=~`@w|0S zXpZI`QWQZI>NMO3eDVJ0Y{W6&9TCIAbOxWM|AA1>u+na@0`?1?XfCTsT{9 zFCIN^i;1F?CO}%lds{Ak=iUgsPsA@)ceg;=%c)SvCt%Oeg%T!&^@P>ZIVjyaB3mRg zA_sk+781^Msy_8e_+KC;|`Q_Hl)$B=-P2_G@1?>7#(;6qy}+_*ed21FOWudczsZT{-~tL1&o ze}6yR`Mq&>z-od$o}l1^J&T%O3&AawM@c}RK2^dq+5YHK4Bth(?EM-r;UGoNd$y8DHz`Sg=`Ti(`2cT>jU@o#qf=>z(x4S-h?E`0X}?Z~HZ% zVq@o&etY{E*CTljhgO6tjWSRmP(-H@eR?t@-wv`F#42_}*@zvi^W7plMCnvtVDzeM ztewYUNXgKkVdIpUXOzu95r--h*K~Bqd#a}V{0RS7UCAvim~7>&U5P;W+c(a5M>8I( zW;5J2g``X%Pm6p77Dc`DJ2OtxhOALKrv1~)ljGkK#X>xD(^C?TM~4Znx5D3B2OUPZ z9N!-i5=pdWK{blL%DsL2SPPRSuxTR?b)lQc&fC2ex}3VI$oY{?w&3osD%(Eew&WPn z;L2Dq`Ay6TG-ASW@}NoDg?cGIwE3Vooz^qTqwFLFY{gA_W1K9R;w0Fbq${~jcW-h3 z{qfuemGd>R-1&Q?;r8PBdC_5_Gqm!}USFwy2)Ii*+6PnlPe-dDCQR~<;3YSmYfUJI zx01IRo9mjnX)kg=T?xGP`ZSQ7&CoQ*Vy`L_jb=>L@rgK+4b@lX#SV-j{o4Xr>|0vrp9Jb(WG7)- zldm7X5pH>nj&g2kaGAn9GAkDkKNr&pNN9FN8NyoV0Y(g!yUq-eBj4@vFC6sy9Rq|~ zhr1UliFiMo=c^_x#@ck1;;>qI%0kFLFV5Y(0M2rSTGPQLZJ#=9GRuTD=dzfBvU=w+ zU)aMnAA?n1(v+B~#{K>JM8v+SpCP6YlC;Rm$=scUgC^fiPYTS5n9hAyfjB?AGu-He6lO0RQgrvKotb)!3SrMWEat(Kjm8W2RG=JP&>~GmCGgA z1LrETcCIFGw-zG zx062JG+WpbW&UL-Luww_7J5y)J-93ZAf;nGK6rF5!>?&S9T$1Y!b=p>a4OquL#)N?ei##_T3((!p|YiFE%uKk z>Sut_C64A*ZN={H+4`-~WzkzC)X9!m_)+Z^)1rptc1_bVcm9D$3tML`nwr_KDHw?J zZVh-3x))>q&eu18njtVJcS|oNS^P)W*SsxjtIv1 zm+K|Zetr01MsRYk^g8hmv{;IbL}!YXsIe7^mFa{2;VIpIVvOlKr)C&nb%M=?d{y*V z+Nx=Or?n%Xi;(GhbOM87ee>(%$3w3u1`ViRj#_(-dq2WE$KBvGVc~B#S}Gqnx_Jy! zfut~ZMHp~;%-461;esux4M95u&=RC2;XV1QekP<*w(OVMSEWwF2EC4EauvU|1uhhH zl#lOy2}kD6Vx{SV@aKVfJS(lm_=%V=3qP7w;I3&7=0}QzzN_$hc!%S|SfrIpyPmft z#ni~YDJt)r8zTta+d9IgzOl<^Md9xxQ8ocT7WzumQFB53aOxr7<>?azSEp3>o1439 zN`=Qo4hp*O|4ysOIoyMJc^S3xOC|Rsqsq|RP1Q`;rL>~yV{b@*`U(X`B7hWk1?W8OJt#*%93PDO9oRHm}ldb?)R{QDUCs+0Y#YXBZ^VMt%s2iSk)MTpeabmsgaTTKOE!(%>Z>xe*~Hh_({|3HJv|3GMr zFyDe4-HYcfk%uz6{AVJx<(I9OR>*l53@rcu9QglpT$KMEcqgUyFI+kz8#fQ<|AN|& zuMu>)@UZPoL0-enI_ZJxpJ{LBep12FJ^zxlqbb+LJy1e$pw$wyD|^J5y&smjlXzD{ zPux7SJi^T{gqRX=K62kpmr)b{4K}tD;_n9Ur}tVg%N^1gp$VbHXHxf>_%;!&2U`8V z9XXfm^^920_2lRfAu;fzdQtWOC$Ip41tlTkG$ek7pO(Z4gnclMDjO&kh_gmK8 z72F`FBdbSILO>nfLk4UALN2AtnL`qgXHW45k%Uhnyw*zXtW&cHx!|N+8GA>IPQAyb z-yB2E_j+6Eoe{}vLUSr&nGj;OlDGn_Me7-vb}DpzR`wR z*5N^#bPW!x!h%8fY%f4rif#}@e@It&CPfcQRN0O&!Dz5AEG*CuJu5_|DTuhyk?gOE257Fx=r#>Q{0<=B&^4;OtT z8@r<2@ps|A=Q9m#UJsLS#2N5y!&a-87z0t{Ni3K-#NQ8GnjL$Bxe?6Efm;l@17)}CT??&Vt=`x7iZ*{o*XspsBO>(W@No*1|0Ld2 z)lXo@Cr6lt!@5t1u&5}}cX<(XOmgnj1S`BJ&{9@pUO3>xmqF0x?tJWzql7>qX`2Eu z?hG$xhuCg9ElVMoibWNcNm|@4`@sSmhAfO-kC4t!umj*pX}KfX?m#b{F&SKu24pKs z&D|gn!?;;5T;IOW{#KHc4}lbOKFDvN#);B?5`{T7iKh~hlmMh<({Q0uD}M=rjm!`=hQFhx!=W~(F) zh*0jouLaEimYUtr{|0NSH@9fPMPsB)yo3KAt0FZ-PA;zh>s2%g2i!g6&<6#W^Ey^P z?zgVqX*JS6Ah^{wE8R;!%&e7H&dPKBViQAS(F!5sn?gX~J(qM9=C~Bp5xSP9tj;`+ z&MieOap+`Q1*>SR<$RV`O_Tmnk-*#<3%PNBM>_q z07WN@J_ivuM^skJfQb|f#m!F1E!jf*iS1Iy!`ivJww8nOw}m3^R(2H~JU^a-mBV|T ztf+LmARb8B0q?k}NTr3rMpKq$$*Sl!!FeMAg{*4~9gc?OK?}ifEBNfWE3ki1tK)6OP#t#{|W1K9qY))^H*GX@EWB_s_^mq zL;t&S=bbwWpsnci^?VY^SFOe?Qnr;9g=IlZz+OBzR;jztYj5K2$CLdymdFLFz3dk| zBqv^UBHk(0Zx1&`vLuZ`I%}cL*UHLwBLfu!f%r{C32||&$k}r{e4H7xyOSc8;5?yc zD};}hM|xGY6{Ga=L_Aj6Y|n#9K5(H_PtMVb(!3>{fFrh`4^NgaJ3*R;MqIR-1Hlj+ z@6Iej%oOGT|5DwwBkA_`%F6zcc2crZx;Vf6ju3pd=<`sE^So}vcTY=66spHGIU)h` z>4t-Na%bY%B$L4i7BiE|=s>KCmkqgNdqfX3*j5(HVJ<-&=!9v&%6pPv;J8J!8fCJo zJW~N|#_M|M7g;*}1b@%rndA7-GX>7i*Re@SNm2fF&DAiNAJ?m4PHU~_!fyokZRsH5 z@{+UBMrHMO=|q7uT?k$}cpR1!xR#Rv=rCppQ!W_M;M?u6Nnic^Bc3D z{|D-&J9MbBw1^jtqevCDU$*FR?7{53Ft7$L{TkBezvq_FtfypWvWYx%xdl*OVkAdd zelQT4Tu#=CQz4lMR7;q94+4)ur8E`RimaG?CYigYi9p(fHfyY2sOT%4=0J9HYV@5;3{jl~d> z;KD`~wBfG$k<>Ma|3k!CU?5S|L{BEW%HlF(H(A#xjmsA0r$AM{n^Ju&kylFH%Ak^eF{gl z?=*zHaL$8SmP#gNyb@bx~15u2gj z5aopWAgpJ6v*(ZZ1nY*OhD}qKvN-H(6x$u~Ptk~jk z+bvDYjE289H64q0iS}^6o{ttB(n}CO_dTTF4VwhmoC-c~2Gv7c;$5hFsQYm(9b^(nV6n z7}yIH*|OP!r${`m_)TN5^r^IBKPNnAM;H2!)RkG)$LaI zLmA_&ox>SYjve-z9Tp3)k<;`BeBi4I?S5n{jFvX|TUEM!MniDg2nTMkrON)=%%rt@ zu+JP9*8_3^l(=x6V94S7kG~trms1q15oKFA7#OO@#cS_OBW^7oGPWuy`ZgrLua8se zSMnrt=cx9Zp(n%?@92H{?k+ENxlmj_^^vDtsYmDLelG2tB z%^qj#&zl;zJC=9=NrkgYa+JKQ=hk6Um}LB=akNO|7j-#^11bu^?SZ?Ujp|Be!@|PT zcMUwICG66F*8k-A#jGm6}*so{lu>9F$Vh#B? z+EQd}K@|!^05J7eyWjg`xJ==p$W7kgSVTb5+c+vKa-4v;4wd?m#Ny>!O8cs^kcgZfLR@pi8wF?x6IJ>;j&W`ByfBQy=!}oqa*kL!<+Kra zQ-wD8L<+=N1OC1M$?$5C!gSRP1sR=z4F05;kn4o6c}J)(uleqU=rUvQ$jzDFrvYC3 z^A5hs6-W3R-HN~8X`NQYC=ur18SC6T3x(p6@XOTI3d_2Re{3A`G~+HHQ7Pla4&piU zlG@&Er>5(lVo8MJr_vJz8!Mp`1w$Y=2V6Iwf&ru7Q^7ahZ0IvwiMnZvRPj9At{bjg zcB7<0yxa>pf9XO+lDu79mnB7Vpa^9ykqL=zUmjf?F^@eJx`@D6qlgs_L{y$dSqPe+ z6AIVLoOq)$ZmY{p+8Wfgwz0~hzbS&CY$^?xAtPiDe=9OiKGk*Izlz2S8^-isr_MDd zy#m`v!1P8njAZA}a~E@m{Bqa5BPq@0xCfQ169n`hTnmmDd8iv7PR~sxwM??a$tAy* z2MseJtzmO4Es_-kkol)k5_xf)yx7>2HB zEO(yR>|CKNTh2$nufyPY_r#5ZqqFWMz1SlNQVNc(EPoz^XFTx4E=h zo>k zAbU^UE>4p^@9>3gynHXz^!Jw7xfA2mcK009EmEgG(pkRUKvUH(?4L{>kf?%e=h@P8 zSA&q!a06dYZG4IY7dpcnUgCr$7q62ib%kFaHRw(V^jE_fgR|j?$tJs8@mO?bW?)k= zhl4ZFfaUX+}QoN=+_M1GKGx;*l zq-+90N5+N#d4kiMEZza<=yJD%-E6hBbYU>H1u`1rhpgdl;jWGa;p#G>KLwN3!5>Jf ziqRFl`KoO(k`$)*6Dyur7B8-@d5?GI=S+znbCk5p{iB&5*6@%WzdUQE0#K>wJ2EWJ zWTv==WH|j@)dq}lzTujx>aD7L=h6q78Qaoy>!fV8fnMdGP!ah9NqL;R+Z`~Own!0(lS4O46wYZC|^CZ z{Ti#_FHm!w?}XYdH_9$I3xvg)LO$G!;**6qYE9+6$GANt7hNgII*F*%zI%=tHT@lEt>+K?q zAPd!CI?7%9oA$Rw)q19HoY@&p#H-*^d#Y1`)df#Ln7vyJh&H`YcCr z_RK!7J}}?GEilDJ^dkp1+uC0YXI8IzgC=#ETfSw@5N(-Qx*MWzJr(nW>?vF_$Eu0( z4F+M2w85`L`R0xKCaQ;OF?;ysmsT6-_IVqhRy3$jnEUHKz1%n(5Qs!~NDCr;D6u!# z=Z(YMFT*ealssL%X`Um)Er1J|!I%?$mx`3W<%r^S%A-}xa8i`NFKtIp%zYW6B%?%= ziz6Un$maE6 zuf@tox3v5Q9!V@?zeIw)o?|ulkCxSozjs1i9TYeKPjm2Cg+;ihyNgn5G4dLYv7%6o zjrPsS52mwf63hhm_A$zbrY54>vWhX@73tcF<*cPk@=vi9EvMe)$)2T-+;=L&zcrj$ zIFb=o60dqT-w9ds7FFn2YQxHJY*N3bgO{I@F0HCZPs&=)_?YSXQ}2f7TfJW0V0RZb<2rkvbfee8@MnQ$@HN_4&tuCQM(l054< zUk|~cwc+vIUkUQr$}~!>bL=mxnSlWL>;{a}>c0A2lO9XcC)4r=_4Q9F285JR-aFV_ zt;v0msVs@p1xnsEj<(*0nO`WT^b*P}`e_5jM^UuN&Ddr2_h=iWw>L=#VI4v)i@3Aa zfily~bt4d$l6TY50jj~1{Pz<$Uy}v0RJ?dn!>vx#j;}wNu zCcHVQtO(L%Ha0G;2O0r5EWf@PAf6J)m4rVEq zf8a1v0!ZNhD`abq?t=@$Oqped7iuv2BR#=nH2DYMWXSYtoiH6n~v=EM+Ed z3bF+fw^GZ^TLiBF2Gf9$$p!w^NIKeYCfQW64BxI5oN7Iv$5S4Sz)Lo`gIJ2aF+^OM{Td=sq-z27pppnyR9&!{N_cv8dt zDfi@crp+Dz=mkUG=a9Oo5DmaPR2}D8XTq4ZJD$#&GikF*)5nVIedGD=v6@*@w~}IV zYjMA2HPMchsFQcXC(#BA?BP@nQKl=P8#~+*?7s}g!OaF z{3t8r0SQgoYFyD3c77uOCra%Fe?m?ofu#!iITrwQrNqWyMfj2)vcQ5r$(#|#CSI}M z?x;bKHOqe>5|JI9-^O;JVcrUVztFZCaYdfmgH>=dcJWe}(3{Vky2N|uuxf!h1QOTJ zSTER&?LuJy>N!_(SR>r^Gqf%{nq8i3`=vL~lVlB_v_2P&?5EKVgLx{B-%?1-&@Eqo z0Rv6JBWQC^2Yf{jeUmE({q>UYU#h}8*;i{cvt1`xY-I_38GE~mQi40aJTkUw} zhgHp9)!dR5S}AS8%p)v2taqbLRux&*LMVwfbG+csa&+n}H^-tY{AE;M!L!E!9~T3CL`!zQm}%u&aX-XLphK&A{Z9DaR6O8>=FgQt=|MD#`~*c_5S#@sfuJgj zy{3v(=w<%1NXm~@%kj#k^P6Ft`2D^q_4@Rg8w?10WhPiS_h|u z!TO>|fcMep=@yKppg@uhv4m2n08@L-FSn9zq&ojV^^%%`AtO<{RPh(YcF-Z%m@&74$Qiy>~m`TkcD~1lP7ZUPG5`#Gd5!(L#*n zYwu1=C)sAg0`fEtodfu?&k5}RtXPIG(2(cHmL9Xk{l2--$Ia?~=AIpo%l?d=Y;ip7 zNHs5HDAPE9kZoW2SDysgWarGvyyV3)py zYmy7eYjP55pDXmR_9f@+bd-o0@0v5RcIRo#w#=a8y81?nerrM@O45w)2{{~xN}GODepYu64^D8;R~w79!#OY!3F z?(WWpQlv<5cXuf6F2N~Y+}+*jm-l(z?~HSP?2M88%Gf(uYt1?D`?|N9J5-dKdDxfa zy!N_l&v^Bb2#7k4I@0X7?xuHlCBJO)z3c2UKE0xgw@0@Pir&{RO5+0O)U62cCK)8u z^5ClsGW74dCJ|6bvpNzv9`OUg9!r$k`47VL|3I>>i7ebrnHWpzauuSzS#Tx)pd-UYY_nr2gC%$E3Jg&PP{GLOe=Bp4+1Lk6=Lsv{1>=_(EkF-4 z$?!O$gD7}TXqO{~Za0Q%HfGd_5psgHeyPDI2-#Fl`zn}J>aFVhZId!w8XIsd7GirO z+!J*CRDW?5AvKM3Mx_~47HmtrpWWL6#rJEkS+TuB0}+2*s>RSK=961o7v0W&42RfM zdB)yEX)9g~e8!2=Om$B@J`%eA4s>09`&5Y<0pXPI^9|=g@qi=Vzo`8C!jiwTE|Hev z_tm_IiLSTYBrp&>;=NbTx$Mb!t94SD(-cDcCs8U#4KC~b=jy*J*_IP5{oZzO)hMII ze^n8Toj`SL|8n89!1C_Q@% zD?3|b#t3o*)-jnM8f|Ea#Ftj=>>cyz77Q{9s{zaaE=1_Kq_M8ieU`l0G34porcwAP z?+mgBXphZ)96m8>)ld(g1>zkGf5Z*^R{J6(Nh7=!r+?)CHF+Rcf4R>abtmjs(aIpz z_mB|3Vgmfly1?72F1d>WezTuRcWIS#zf*(CCd$SF9G7LXi>){E=Ji;rs^XT!6=-qn z`au0m?~5sJ9e~{6;?f%J%P5q=-l&G*_8dp zRLBHz9RfrkuxB5BueP0zoM-x!yb)&mbyH6y;`FS+4j1L!9_>IjJOVjPB+SA?dGv*A zE|>IOr)V^4ThmyB;FP0p{!Uz)v$}=RSaG)t{1-(OYL zEB?7&4a>Va!k+ZGr}2QqH10@qDm*GDW9Py@QAc`VU9P4@np{FnJwZAq$26|Yr-pJ) zM^BOzuMtb9Vyd!FGQ_b$nn1a;0Q(VJH>uEt;#gQCOBqA@1Mmd`9|=9Se{%~1M+`n~ zbOcF7ijgb!8jpxE_;$eD@gb6{I=DE`#}Hr-gU674>r+uyvK}Dve)JhsKwWUhjvZ5a z=U-F(52HQZlZvAIq;sivsrC(8>prYei$CHcEwYpU>_seE3b$tUSX7UeYL~tL+FD}n z7FM-^2+v^x2HKzJ_P}>5gInSe<8nO-NxV1P9p(?_6NCHWc;<-VTWWnA0`?nO#e&h( zIsB2{zNJJ411a)&uHo-VGtv%%XVn%ttj4c0`K4W~JU)ua5C`bqJ_eA#`IIuVRIN>K z`rcwm()LmFDkD~t*kCOW5c=G^ zxe*3;1%?B#|G8_FgHXL3qa5QYU82GWkKInSSm1z{e`im_ax6XrVH-xviL}Uk!6ibI zlfxFnVMSpYZ;|=mo>VjsXQzc?;yDVJGF{e;G5b8WWD`c~hd~(l-;*jz<2d2Fwu`e3 z-~4cyfNe^oL=B>7amekP+GIoF=pYMI{>t4+i+~sise8ij@NyDm+ioE8TQz~C8O6nf zh)nbE{zm1>h}FSq6!!8^c%LkR?FPO%m6a4_$G^w*=NOAc3A(KiUa>12+Mej&k5czr zHI=^HOjS9WXWvTwE5;k7=*vf0oZ_6uU3er;0b|u=#yI*~Zk!$B%h;Q$<6a&k7S3{; z#Ym1m+W|!|K994X6IiG`Q8KYprOIV5eDA=S$%;GO$@{46?n*$1+?=v%{`>}6Yf4Pe ztjbi{ECAvA8DxA?`&gqs?uUg0sg|M<0~4SGq>nsTUm=_^BSMf(83B zfQU%e?f`*pcD|`5aKFFiMdm zBOKAat;bU8Yty{RdE{ieO5)C=rmlVNUIyS(@y1$BHipl2XkNQ*bCaPp1T4^e6(Zm7 zk%Zj4@{+}y;<#NeZ5##!i{l%oAEk=|mQHww+}x=Y8s(hj3MC7zHGY3wQ5IFpL&Z14beD;hY>GITv4g)t17E@n`60`E663G zQFFsIO~X%9;tnf&-_rDxsrE|68qQMuQqPciza)>I9{zDdyeOMbb4~WAN&7RFo8O$; zWV;c~geVHlW6gvTAf=%y+&*CP0h&za^gluxaa=r;T9N;bse2^;x432J;$#2c;`S%) zO|hZ3ip2Ss$C=u`vgnCcdzaYn#a3IttIVbL$OBw-lCdx`KY2baFnPOk5Szv?aABFp ziXZH%k!L0PBcg|#coXhT8;efJY0HMdfquj0N)=<5N5eY}m467&A>6lfLJFT2hfVF=WgxS7;%WVo03US{Q| zc~7)#LiVL=3arXcL1+Pn%7RuD<#B3>T4HF;T%s%Bz|ej9XQ@FR^a-%h6%a3O<>2rs z4o5Af>W|YO=q)>bvH48Gcf#e?>}-#v5)#{5j-9dnd&pptcG9} z+>*2|pqDQ4>(&Q!h;&Cf3N9OE5M^u8R|xZWHF2dgNw zW-(40-o4bWs@E`Rrc!w8k`g`{@leX#YO_We>f$M?%N0lfB4_4BH8SW(4g(IHE7PW$ z+Sq=R&l?MS6YqD>*`k;S@aU+~_aRc=a!z?i$E@tt@MQ6ArSh^b4`Vn7C&PqVgL*E7 zw=1RkqY70^Cci{qjw}9lB6+Qg52!5_Ny&Sp3O}8;LV>msC^Ih46=s-{&YpNPN2)1f z7oueXv*O}`3z#ZkF!}UOz=rGKL~pWc4fLw8s~y`ZRV6uqUEkUwG4c1$yB9B-+gJJ& zf<_Gv?UjO$jsQSK(bP+`+veUo)v{%`euS;Lfj)kv!b;$lX4grl{xp}O}5P>fJ^+<~; z6J`jYI97VEnco`W=(KC1=snxK^P+clRb z-b(fmVOG8X?h2?%Opl|pkm7q}8QLtRA%>8U_x@$oqVbaGpq$A=?IJi8<=IhLt{B`8 z+y-+apojMG-)0e!wG%%*Ym^4nINMD6V%r0C$Aya?UP>ILLSWI!BbzCzXx2_|JCTuy zz%iiL0jg>eo`jY};S4{!p^0j^JSH`V>Q9}C+*ONAi{1m&0&j-3aqK~Lpd$y}kMF3sSzk$wsDL>?4s{QE&~RbWQf zYGz4dXOP0EMG7B6Zr=W6Krcb9;qEe_bx-((n7(3A19{o0aE!P(f4QTMQ5relD;4<% z`j>Ho9}`qDLz`?jxVx<1u)Z+zypx)EPl>7it*#Y5T``4zCzx4YoVaIX@d&W5*ZKxC zyJ2b=^yVEsk!v$*o|td0Ms7g^W&no!v%W)jk>oLzM8m%W!qP>}G4?Hq>90kUTiL9d zH+*m7{H%f7F|c0@zw}hhSYzH@u=@~hW7?A|Q)HAumC!4GP7l+Sb62e5?Y`(KzN>Hb zvw=lAm%^D$4I3@w_(dQD#9R;xVO}Y7hHb<9A*fw~J>$lV*GwdN$Es{^>OBOU zN^+px)ZPqYbQx7fc9&r&Lrq|ud^f;kS*VoIP~yXtWHpY`SNvXCVJFD0ykfVb=m3sl zKYi&wiiEWaeEdr#9l0}yIP~WxnskiGYre)$jG`KuN)bHyeJdQQL?>18@vm1BXZ_E< zj+5M@3d_-yV+`AXnQU(i%hp6K0Mqk6S=AL*C>cElMjD=-lb!Fs80ZhNFi;Hi4Hf6> z9DZ3^RZgpVqKp5OU^y%S0bVIwrE4l)1erFE&pb=Wi@4R69>=MBcRqt%95tV*P~C|n zbg~|7t2mdLf;LW2G$r+JoZ7NrD*)w>lO#?8NNE82VyXlsuUO!i2jIC89kSE0)50tt z6b$7BP=YK7_VQaAW!tnW3xGYo*jPvnzQ{z4ugtZU_CWbEot14$UCA4-!n(m9o)-kD z)K-2$y(au>!Ym2e_bQzbiq5?&Z6k>$xrjR=C0alUu@u!JB*RgmEo$TV8>^tFkl`> zUc8_9?$0}w)+^0af0(sxd=jpOUlSYQ=zjO1tyX}PZZSg4Ie=rj<Ds(9GNsY5PG`7u<4JKA%NBS8Z#nDfP)hbhITCd`AF3y(qHH+sGD{wE-mNc^X#hO-7fqrCKvRFrq*#nvnXKL)X zD8+TaviXWX2uK|K5|TF3D&Hje%wzs6vy<_<8P1o-z>$>R|65PD+s(#u7bOKtezUPk z;XXF(%qe!h^?d_6(jr~5>>Ou9^PpN);a?VA#3KLYDj#q!Hgt@^}G)Vxs~Uw}bE3(gPW{P0^gv4dKBOMM}V z(-@eq{&(4W9d}~x$ z-Tecuy+-wS6#BGd*Gcq4EBNUnp3l^6lGxwO(C<^4m;!(Bm_*C(r(M2U^xU<|r_3BS zVH@ZnC<2(Ok#KVX#Fr8go1P7*eD+*E;}QgmDfnKzpbIa8y~5$@;3%ru1FmYkgWpGl z{U7Itik8GNR_uU17YDDE-MAOu-A6cCXlO%@`VOxnIo z8l)dXN9(VgOL0ZXIKwBZ4rw6-KFI$B@#>im0+Xs?5=^ADy_-tp3=PeXfvdyY9Sj4O zw~w_A7N339wjjX;cpMcn>{`Yja{QdMwe_0%QQgP%56^vs>ev*a>KUnHusE-$@;lMC zYWzqG7cBG*wo^T-g5*XvagvO9oxva?H5d}-_qrR383HWL`j>$sp>Lm;zs|@kgqKIg z1CAX-q@A~gMn+q!>z?s14-fHb* zQihDWl?Tto_b#6yfJ-*CzN@7{eK{dyRZC$+$cEdrqeVHHu&QW8 z^3!LvapeT>Ujt3Kjc*h!8b)^ryu2e<=zq4;7?R(H;@^H~7w-TMWpvkK&Ca7WnYHII zQL_a=`}(#ho}Tamxo~<~8DshI@Jp!}wXLuZ*bQIB>0hZ z^_D@MYi5tPOIB~j7>KEm-}$M*v8;q49Iv^o|3HmV5~rfBv(zt?))DVvpuBB%tMmnO zBpkQ}R7nox&)s(4+-5CaOpRpsj)V|$S+=3W98uT|UnuyqJ4z6Qh#n^ZZOCHFrUw5K zJMxpyWqEyZxXd4$)r@i2oqPq{9WG0xKZ$`9rt0LeYVe2g`2?rNdWT|!^Azx|{js?| z`6)EKJd)kal?Fe;V@F#QrK00A3VCgT%|D90tg4#eU2i;%SU&4lA|n$1Y*A`MrT+4Q zu5G^0Cy;(!$ovJh`Euo2AvJuchHJ0f5q`KtHUxi#%#sp>4l=2-W^)3{O+=R1vmN+T zsKkS@SVwSbXz+=*mzQFz2-44gLkz82gtzOxKO59r{{vk=^Sr)ts_FyJa*x>;dC44S z49xw=v(ruDFP3?M5o9+-D}GRTX>6o@cCZjIHzm%7s&K3je~w;=qk_QpM2HCFKo#-i z&v^y8bHag|Msb<}E=<3a;i!nPpW(MH~m^%e^EtZlQqUzoa9B0N4R%la3er6(H)|GQ3xY#ZYPvFZpfpjX$Nk5- z0)<%rAHnhp^ATa8qeUrYf3*c$J& zDBaG1xE#M(o%NI`^J`GtBL0Ru?&dZJk9=`mu>Q`;@3{g&6G~$dkFwSBOyq1kyv7ucd-lj@%)Mut{lzv;reWX`wj8X8#VmnRCAmwgAl3>y7%iP174p#W9mKxGDbtj29*Ubbdzo}%dufAG$g>t3almibb*mgUe zW>z|&a<(0^A&n^oJc*BcHa1!GeX5C%CbP3h3YhahY)FaUD;oSg6&i(I&(`jqcPrWK z3Vo)x;X6%zpX}O9zZ~-6>2j%=B4aAPiNV0*F*BO6Ea{;6@}>J9=r@44qwp|`PNqGt zBbn5@_6Uc+%UHr4BL(lfE>m*3kSkGPhG*etu;;AyGyXoYUP3qaSxuVac)&)QtU)bF zxLrdgHY#$RIlO82SxIe-frK>nUGD??>1j@gJ3EIU2Qfp5Qfzi#hohsfavIbbhV}Y+ zaOGyD1n~;CL#*$DGYh~^qk0~rRLWL8DT1(im1FVC=sm zQ_-I+d;k<`>XKC&8e0(HKcKr?cF^` zg7F12o~NW~s0gH8AN_V^QL9Fcv&9)klf6PY;(o@AHwP@(#MB-cXc^Se9!U?MLLs6;+kVQXX@(4PGF~? z<>{8t%aG1{D&W)f_%_|6@*0Aw8XUgLs{$0L*w9~6I>Nc$cKnpOxz8*$Vt~1Cofg$G zrlFmc%-ML%X4Yt1LTLfIp`pymxKtnPDm&_=ow1uW-16 z&Uj0TmDTr@=I|)9qR!m(Nt^0*4mT4Z#FaEdKS4V0TX?w=FVSpX1*BsR&uXyYWGe99 z5y(Uaoe{L&4|r7&o)x=nt@5vt$Zyp12*51 znY$9h3z*0Lh;IvM-U*COxjWR_!pSt_SpdlM5{yQ?s6wM}!#J0Fgv^_KBme${Xp~$FJhjy`ewX#C`*iBsmZcsv!U3E*3Hu?WI8IpD3r?oBK3RsiQppHCC%R0;-5`qCLfS&0+uh~9tZ)z_}J zXj$5|>|C(rDCPE~0&&9rUU3A*2fx^)3!_EoU9MI^N0Jx{Ms`IN61yaN-_mt{3ue8| z)#E0nvS_$WHHcswE>TsUzFxHg0~F=o$z$qDL9{mz`_TFJ9>%J62Ro*-(2_N#fp$>q z7Aj$Np$r*D z5`L5V4W+NOO;Q!i+M>WtU_%ca$ppICQm1Ling}n7so}oh{90m3Ptln0lx;FM=1&V=Qg|or zp4KqlTV7#}8ze>&YgLsvkF1EfZFt3LsS-;DXyvO z=gFwwg|#*7BXgK$S2}mXF5EnFjxre3FBdL#4~;g{i3soF3!XhgBBRq<4?QVw5o4_B zC8p_FzIMfRCMW}EcX>G;Ty_*nHcqsj?SFofyMvg4uzfH+ayH3>K%e>_olIpsOPoNG zHUb@?>!!$TKzs8=&&$fKD55w()|vxbAjyC!{j83DBXL5q=4l@7*TyFg(`039^(nj| z18Up^+{4VpsxjL+nc9T(+CO`JVsUBG)~;!jgOx1G=q3O{JjWMa){e1hJGOk(3RPx# zM+GO{j)|@Uonz%C%e2H3el~G<0zI+c#Eo+zFlGQS`Th$W1w48>4OuXsJgPv)w|E_5gD_u%D(fZJ7`-D8 ztYzWVDUP^;NN33^37eE4^^V4dqyF$ZBQcr-=<7uH*q$i{~@Kd}}ETIIi0i#8< zG7@YlSx~F4M}##OLunx~fB)1=@o&BZ1wr!!n)ica&dNTd->%2mJ}eGOTBk%soa^_H z^^|{0OhJ|ZrqBHt3-_?Gpyjq1jeH=CU(4~}zP39(p_RI-R$!bij|PJxWnZ7E$zw`f zX*~&~|9pngy``Ml3OTy@ZWz3SF=!T3GBF1a3t5hRT=4KIIb14?iujUe_2kRrB8viU zJZ`3?|AHcE=zTe^V6^#6hK@YgJe%Xk{Hi@%W#Vc@fjVRkia{LBu;^;Ab8XU&FV*Qe zN8u+K%=fx;ZJ60+0}T;WrA}-_ty}i+o(BLzHXMnS|UN)P46fFL&Q(_xUf1^*vJ(sI}lb zt~8tr2#T!T35;_ZDk!78#s0O=&4KK5P-KQy(w#^d`E2U)sL^1>rm4TUc$B6#KF|uB zK5k%hR6on~{OXx}SfK1eb8ULeTUZh&yB_~+3|vu(s5i~H63u_)kGjjWy`--#BY2p15Q!L&|NXN8d+}JN|^_ zU2Hv_#NCO3!=R=jsF`)26w&7|xfEb%nMTtbOO3_huJoh%@YOP}X@JR~_%T({n{?PL zPZ9=;Kr84QNBj`Y%ucHm*)JYHKi~02hs&c?uf>_&5NU?dCPd|5TPh${iN&2j5m_75!f?w1ChC&M6=={ zd{!tDXO|%Gou16zL_NIC1H#YpPQUj8n57#4X#F8?@a||?MfO`D($W_JFvkym<3?Xt zJN>O=sb-syme}v+N#WC8p46;`$ev=*U*Q~G7ob0>xFzT$vq1+eque&_z65Ov`^Nc+ zOj3{xIJ(a_v8~lxJ-4OI)*FKH!Ruc+^pb;?6=%OEJ(;qO8+&%vw2(733u1A+2(Ks7 z2#9)+8! zN;2g*=_Fe=@--fkb2DoTZ-%?$wqXR;Ur@hvQ?2nm< zryqf(vN6>9L26f`hZ8vsG7Mh<*W$4@g?rQBu9A{HWsTpDwx=%KB9XBZ>U8x=q*pjy zOYAtL56im#xs7zO_Dmm<>Oyu5V6>_+*RVTVf_z=nEdFCA|9XUDV%J^8L4`;!J^_wD->%@phEkueuT{ z3>@ygae(mLP@+(r`FXle#>a-L<0k(0CJjcDBsGoq7)Ce&swg)b;o}2u)%=gw(lo#` zg!c(;PB;sxQo`f&8L7QYC-C^4akJrpR zN{c@}7FSh_jLX@a;FIrI#Uo(na9W^R_j1zXSuLk&RE&T$*gB`9sSfQf1_CGjR+F!Y z9PP4JqwFGRhfhUDT<$1t{~|oYcy=4n%%u?_Ag1&9)7fPLrka~`#$Cv2c2{@4d0Cp7 zOVZL%+MH!j^2cpuk$K0x{(q=*F)vy!zs<5O~2!CjQzd-!ukUN>h5)0 z3{0$fYu_&!cLFxBCtXg}XnVuYCaly;byg279;*A6+>2SB?@=`bZY+0w|LL9hX?BJiK&kEmpZ%j*O$$J~9QJa{p`3dqcuo*^nf5F2d@ z{p!RRnFv7paga);f~kJ^wnQl+DJU(h@u|P!v^n#gpZ-s)O#oHS-OjkH#Vb@*Ls{}o zKrbq^&kj~kSiGSliQ!kWwJaMV;?VDdL)kQBda3G4+I{-ewF*|Cr8M{4&{o+IG8N&Tyd( z?9pfa!Q=hl)?lH9Whm)pPLDd-uE0jctJU<_p#6#!u0GRy z(Kv}+4Hh#I^0ioGB2gO}E?N1CYSkmMTGi&Ag(+^ca)90A#tF!BGM4O$eH;|!ouIA6 z)f6t^=fV@KyQEyUl3)6%#l@;Sw<09Y{zjWz!RPG`2+%7Vau}u@O&WA+n5q54)`1w43YHZNL3GqwnEB znabb>-`MnrXAI1$)`t0t>Izk0GBHgtyU8jpB%Sz{=Gj$@o{8iRRnbSJYHM@4IqR$y zS55@=5~|%sbSM{|an@R7Ydf<-IW^-s5k~BSs5< zLN$?Y2$g8lao}3DkICR2WaW6BndIs_OxxDM#O@;w@St?7F!@@{!X`Y8m095C!SmG% zC9Z^>Pas5eXO1@ymYtIRBhNnkM~cJQSql9SHcW0SW}W>J*ZXq3rx&S!uNS2>ITWAk zB5CkUn|OePZL0FWHB7ULI?@7cL@@6oy=ZD)7=E;-skqc~1O;XZEJ(%aTHoiJFaoee)R zb{ssoJ@eN;k-HpyF^hnJy$2oMZ9lx)rqvNnzc^negcn4J zwki#fc0=0r%5PVdMlv&~YXV&%$}o&S4d}Wm_C#hmH`S*srWaTQLih!T}3^hsNbkHbVO2 zNDM^2-B|6B7WjO)0j(JxJXw0T9gU3vZ)d>KYI{WNfe)7C%w=_{AVuMfm$O}AzR4}|#&~3W< z(34Eg|DbpA)PFb5RT3`9T`7(U_Bim%lAB98Wvn=eJBrRMR^qjcqX7ngLOb z2_gYID%f%z34tW_wcd7LZC0vpBJ6~BQcn7(v1hA9aq~CLp50crbaU0hXf^+C6F?L7 zurnln>NK3V&h+q=XQ7gXa{WSDE?jk5V8aYQ78JS|RhJ6jxy+%+$BUuRS0k8w`+m~mu6@0(5L>7}MnK1F8(Nlq?;d|KI3aUT z@ZLJzl@+pHBG^f?)RU%%0q7z(uoOtj%cu7}nY)|pQtWXRT* zG={g~KM<>vj)tUE+gG=26hUmV_DjjO?E9GgYuurM@d~p*|InH=SyD%=aQ8#Zs!vg8sqhr**xcAA|?DfqOYq$1axfD zk(lh$xEWcyV~4AQCalW1ia*vTulbQ0aPf27mX=%do0s|(_a={I^F4m)@#j}xZOFs8 zmiYFqss|jp)~v}`|EyJ2an|@4BQi|StXaB)-rI@_r`DMTs94+~=i3HhPF!L_Ivi!9 zq$n@OpS!B<-$L!Im3A6#7(caxH@BM;bq%?D(h3e*o-#kpyaSMH)~$_NyvH0&648RG-qjCa?TV)Wq+PnX`y-D>&>q8!ABu6 zus)uB=n(z~fVwX)-4aUaUGLcPXXh#^H;}?K=npczv$dzE>MiX*rJc>~(%BL`Fi&`v&?H|xzZ=3;bXmVwF$;$QS z&xEE=Gxa25Iu770oc{PC~sT`j#{1oAl}fVc?*yC9w|%R@$}O@a)!z8 zYMx}3&NjPykGd7&3rgp|FXO7&igAX9VJ|Ixv9sA{;eDxVe+;}9P>2nysl9()zWs>Q zIMuK~B)~u+d+`pxR+}!Q=Wr}@njxVrds@Gb5-#5HswUqdCiH4a4I%vc@b(Wh4wZj) zTn`fg`y$UGKhQ5qKgCJJs&cdYy~9y$GUct5OXxQjv@>ABW(A)yl<*XS|b_Ipx5$*Vp{2|HVo-YgZ^aue;`vm5rr?q&qBYM z9vf{wKM!Pmnho-+*6whH(AFjz3>hkkn;!N8%u~`NuFH;lJ}EsYCH9oYqV{-I3Z2%o zie`Pn$Ye8z;<(rj%6UmYCtasDF$}XfwB4;5Sq1L%!uKoU!fR#}oUJHhq=_*xs@b|t zmWpTcBUxj=z(~JGKT_zx(O|p@z1`F0DlIME6KTLv(oK>y`mdqZ#nsu&$PQ|)O?F&^ zd6#UM4lNJ6pkbKsYe43*8(2%0*H-X;+n`nVZw@x9+&rafZ$fbE_q{HfvTSG!1vD zTL{-tnti!VL0(JL>R-5EWofQz^xkT821L9jlmi}OZprNd6U{u$VWIkyYGV1XK+^GT zX+peqCa3Y48{EJ_-n!qm?0ei985vgppXyOd!nSPC)BpT> zSpBh`h<wSU(NU!XrPe z&KJV8&VDiQJPZ$DV11mNkC|CN&#q*h4};H34yT3vLy3JT#Xlpl)t{A+Unz=>mgpjr zT6v3~sTUJM#(Jt6xS_IbA-U2aPFaOlb0ZSsE4~TT;kM6KEEc`KUMqcGe>VzYMn2C zaC&32&@Az-Q5Wv&%r?eF^+k3|=N|~wX1sW$)34>1nfS!KgxP-9KTwplwNiCR!!tgk zp-n2a-6XoWy#x-KN*wSCxJ|rhWFfC(F0FozBI2s8h;8npfORgu#%;&pHMDbrX%6IS9r&f>hX7Do+f<0Lj`#` z5^ukrB6C2W)wdr(#)+EZ^7wh*V%yiWe?@1_>8eX{Ku9P@vp4?w6mzVHo@W@ZqHt+3VznYXo6B| zn2i-axL73$yS*p?g;g7}6pZN}V<#67X*2#lyq=MxdFm`b9>e+Qt{iR$Sp$5p)Oc>Bbb)ujm^?+UzKzC>e@-Qc=;E zRU)~Dvv)-2h9D?08HW$|QX2IhEOjMK6-r$c+QALnUiw)-y$=jvuYp_=IwDqbylL}1 z4;C7DYhz;;2d$@m<;5lhXcA+giA%nGts;dEX6Io|rI3zzOYGx)Yj#Y85F2!a z=!vq0AD$v!XS7E*OqqHN8A2rl-HW82cT85)5}rd!vTvhqE3AEK8`@CP+|N*{NE;@U z^g1sK3mn=l%Q2uJ1(^T#-u@Lq7guQhu4~C?6(@{H$&A)nrM?$ZHT}6jN>qPVZ#@QlG}qUyd4|Dv zS08T71gA0g)(OtE_czsM`0dwBezq*o1?R79Zw zN>*ssGvGhh-TGqpw(bIOyd?7ae&Lr!!`lRKMYJIDpZ9+dr`|o@RcHCLyhzU4-`ZrO zTLC;0sKVsNEp$DpU19cb=eB6=3l^8aKysQ{f;L*l5&yuVT4!Vff;rBWtlM4F8|Olz!(i4i4M#QR@-Z;6X?r7QYl zcVEqdO+g#Pt|S~mv-6N&zC>pE51!DYm|3slGE3T+mjwwDO(%!G1@3ago>+}B?+XK; zba7+I)Rg6|Q2eIUGeT~u4gs8C7`UJKsvvqta#z30UR#s^Ea$thaZFS`E*G8cV!60d z_jOrI)7ygLLda&h{au;0cX05*98F`!vR+5KazA$+eTG?bj)=_X^U{pO)OiJf8XK+) z=kFkBT=cvXnwXK$I7>N0d2Il$Y}>4yeD&@72g=nLRl9|z7G#Gsk=1Q373Rj}gC}&h{)yu+43`2+$1aO{6A`G}cq`*Ud;2wq@o_>Ar40hV7=4kM zpkgB{h0iQ?6&1le7|keO-mq9X*17fxzhOzc*56 z<{dWQ=V?sf_;Uf1o{~E08dJtT^;gw+43uUvS?H)iejN#s#51v0#-~aEEU{e7>;j#bcD*xETVyiposAT~u~5tEZuz@nVLWCZ~=M5!8#qJqwI#^`9CsHq>e=E6{Ar3PQdk9&8~}X?LBJr_nXr<7rAoopM_)b zY(>+8*dGRo(89~9_mrKoIw9-ft2ONx73$UR>e(O;AF#S9-l^&OxUbLw7Rl<; zb*K&Xu^>_P-t5)_m+W)ULzRW^odXh8ZBFBBb>H~{C^)VjP-Z{$0)6h+vq361D65y%4#$K(!YKdy)U{| zb>b$w?Lb7I$6OR~wZW3qjDNtdE_!JZk?VnNqa6Sj|GZZ|`ql!F?P{e>K5f43l1{65 zgH>}CHq=S%wgCg|`ekreiIEricc+`u=zcP+U+?A2FGD;@jrgkEyk}b#UVf?^E9BB> z;DOt}kDxTQ{>WBK*}kIA^w@&_(|gQI_kfkZ7ATXXeZqqHyiWZjz|3?aEe6Q&EmKGTF)& zU0Zf$NMy;96ha|OmO*OB7DY5j{7(0NySIDhH~-A*^**0-KFjm|e4f|qIp_I2O0weT z?+?APtvK@e%5NVuhdblk6K;=-8osZgDkUly6z{nj8d&LVJSDPtg@zt3IC@~|+QYr^ zXfOPuo?k8nZ;S?)KD0CDN7{9N5%7C3S5eW`}Iml_}6TgHuOmgaVtb}5uZ znrag?(MG_3_4*ZyNv=V+RiMXU8t{WK@ux|5l)2CG^6whk%vzmy)$d<&Xm9CM>?E3m!2ZFY{zmyIp1kcu;nOyIxtIBGPRCgM5Qr1~BqUAir z?2U6s4Oz<$S~o!`_paIdG3q|w;4ic%rUdn$yzP&&o%CZ7h~eRC5`5Q`Tit zfC&4CipY!+m`q39WDh>4$!E%3Ihd|3<0wPB`x<`!FzUkKG!ty**y+CQk}}Lm9ZvUV z2av|42E#m4`U-D6xfn>1D{70dJM(s>RayBts(tZLkAQyfVG3(2`{pK>Q?w#e9Y*xn z)GqNJ!#`Iv8Bc$6;nP(ZOM1r4aPvKEiQJj>P~lv*q&?TkI{zYHCO_Y;U|QwG6#6Z; z&v;>uue83@67rP}{ zzA}5q8YEarUThO3x@klUor5mcQ)kM`RG;2(3c33=IRH`a4^^;~*_lCJn;v1Df)H5& z*DdmBofc*VuaX#IoA%v#D!8Xx&QbP0Dryv=O(vQM(Bm(u$6k`@ zC_C9ctxDjUe{k)m8M4*14&O9=sM<;!vdR8+%rBsPedGpdiDtLXv_+{7W}6)nq17Hk z+md~h@0kCC(3Go-1_wy|6^>@g219J~mOjbYi^Z$yQ}wcTf)DraiWbT|!jZQ0j+hhr zIPj`)D<6)C;6;kG~WIiJY{@iLoa&{8tv(~1XX@xHXKyA!zXa5 zz|J@MXrp5)DDj{Tu&*^1lw5qmkBqpsSE`K(h=`2R8!os;-<6$I;zzU1G1s*!N4!69 z<$Ja47Y&xBUs)xxFGDP1cCT_Rli3nbm>N1MO*i3JjD>XNCw}ph%r53yJ-X;tU8^({ z?R2CuQ%*i%*nd~*m5qNClds7%uHd9w-`5>2^gFvJJz`VO4TlihBNy5Jlw9O|W4{VV zfRjAzbN1OIbd}@v2DYwffOAoV>rO>UPUzA%ku;y^fXVyHBzEsMT#i21e`ZI{cWYl2 z=-TrQf5crC{FFs}wuYveDHCOJ0=LWBt0J5usY~B?xyAZar)rdChVqM-`!lt8^mSBlLy%*7Ew&$iWSIWB3aK*%?=fnc`6=!*kqw zS#sj==&b~83k$RMfYiQM!wK@m4A(v>L+99gcgWGVq0{=uj}BZkWTh=Wb_jjNT8x#z z+t9L)w!^Yw4yBW8G|hoa>y`$aM6n9cOs)l z&F)ee-FK`~OCu9T1~+_WJO~sw5*9wyKsx1cq`8&h@i9$og$`H>{aO*C?@oM8HR-Dw z+Hw80UN>?*a!?j+cGDzc;O(*gR$_IUr@hW4S=n0Kog=T?YV5t$8lR&n1S+V|4R!CNKSx246y^oP<1xY4mciY6d!)Pse4sxkMRAF zH=(#C%?d@mq7vWwy^aSB6Un)LZb)K7Irm*?y!Vb$(u+S{BAZ_TcJ%l<%3{tbE019r zYdhW8loK5{dU8HEDoTpYx=}TPJc$-I6(boZlyKD0gn(3G>X2v5_#vGJ|MMs9ZYE#c zS<=p&`1sIpja=)9uyohwk0LHHqNjUP)OB>dM9?FeKQry6Sw^D`>|cj` z)3whF%t{CLxtR|HOm~aRB@EmPb{8G=E9{fA*i@bFFki;GWs`Nm&B9+-Jk=R(4;2*^ zR~q4R;zW4!HbnJ~ee`Z*vzjqqDT_WoyT{s%<2mz(MZx7oqj15u?NoiH9XY(;gk8I0 zHrM#j{RH1K_I+VKrfVWMY;Kdel5K1QwIkl~&t2>Eq$O5o8+UrnlHMH$W`Ba%I^j5C-H3yNDiM!kn_s@#ZYAITp%OrE1A zmbT!|))uu!*fqG2%k`2gS5#HWfME@l-gD?j$O>Be=w_zJ3wv_LH*t-WJj^JDefq4_ zBP3r7L+cW-R-HrdRZ|<^^2|iA(3S6<&YJh#FB9JMaqFg8A2%=Ko(qkCYaX||z}Yvy zrBH;cyX4<-RVAzDm%PBq^pf^{v%4bEz61H&cU(Bpg(!Z0iGKK%CfdU;JtolmR54i* zZNFunggloL;ci*zOrNt~(m0KjAYYC$?xx6s%yvu1mSA5$`;ArV^Ri9lYpn~;lRlsK zpS0?SXV9H;M=O?bCd)X>E#JIj<{49c&P$r22zo?kL-M30Sn;VXt%GTnp**&pHkq%n z(Y<^DU11#%ndj58b^o{!vEMAu0Y?eWP_uW7Rdk|9c$Ze~3a?2uz0t+% z4!z5`Y$S>G{4u9h7FDR36%;vGTb|>2MxJ?k<+>)d%HyB%woD1s5~Uw6{~-ez1Z)y7xFw~9m}638)cI{4x?Q^2kG@4u}cTZO*=1274X zhhxHC^HC5I0R8tOdYMEaVlj|R;E@AiJdYfS0F$uyl0b+@4uVMVcRA!=tMGV;4E_cF zjKMI47o(7|7=Wh`uu1>`&to6}5&+;Q15y2`!ytk3Gx!%qgbC!I1pme;cpeM_N!Z8$ z5E10TUiiTF2${6h*nfecf4 z1j!UK4@QAt3RW?N3}G=4Ks~|8fdB#e5B5F&AQ~+^R`C0_J}gE?S;&JCNjw-#hOtov zVVH-6L_C3jV7(*aK|BuzkN_; House Minority Whip @SteveScalise rips into Democratic ""soviet style"" impeachment process:> > He says that @RepAdamSchiff ""started telling witnesses not to answer questions by certain Republicans."" pic.twitter.com/5mcEU8NZuq> > -- Daily Caller (@DailyCaller) October 29, 2019 Scalise’s comments come after the House released a draft resolution instituting a formal process for the inquiry, which includes allowing Republicans to present subpoenas and call witnesses, but only ones that are “authorized” by Schiff.“Adam Schiff, among many things, has been trying to claim that this is a fair process by saying that Republicans are allowed to ask questions,” Scalise told reporters alongside Ohio Republican Jim Jordan. “Now he gets to choose all the witnesses, and him and himself only, which means it’s not a fair process on the face. But even his claim now, that Republicans can ask questions, has been undermined, because now he’s directing witnesses not to answer questions that he doesn’t want the witness to answer, if they’re asked by Republicans.“He’s not cut off one Democrat, he’s not interrupted one Democrat and told a witness not to answer Democrat members’ questions, but today he started telling the witness not to answer questions by certain Republicans. That reeks.”House Republicans have been hostile to Schiff’s handling of the impeachment probe, and last week attempted to pass a resolution to censure the California Democrat and demanded his resignation. Following the failed party-line vote, House Leader Kevin McCarthy (R., Calif.) accused Democrats of electing “to put politics over truth.”",http://l2.yimg.com/uu/api/res/1.2/uXJvDWBba6YdJ.fQv44IaA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://i0.wp.com/www.nationalreview.com/wp-content/uploads/2019/10/steve-scalise-capitol-hill.jpg?fit=1024%2C597&ssl=1,Scalise Claims Schiff Has Directed Witnesses Not to Answer Republicans’ Questions During ‘Soviet Style’ Impeachment Hearings -U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal -Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported -He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse -"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears -View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -What Baghdadi’s Death Means for al Qaeda—and Why It Matters,"Tue, 29 Oct 2019 13:14:08 -0400",https://news.yahoo.com/baghdadi-death-means-al-qaeda-171408420.html,"SITE Intelligence GroupWith ISIS leader Abu Bakr al-Baghdadi killed one day and the group’s official spokesman Abu Hassan al-Muhajir the next, there’s a giant hole in the pseudo-Caliphate structure of the so-called Islamic State. The group must now, by its strict religious tenets, find a new (supposed) descendant of the Prophet Muhammed to fill the role of Caliph. But the deaths of those two are equally consequential for al-Qaeda, the bitter rival of ISIS for leadership of global jihad. Al-Qaeda has spent the last six years branding the Caliphate as illegitimate, too extreme, and ultimately harmful. When ISIS declared the establishment of its so-called Caliphate spanning territory in Syria and Iraq in 2014, al-Qaeda and its affiliates unanimously rejected it. To this day, al-Qaeda leader Ayman al-Zawahiri’s speeches rarely come without some critique of the “epidemic” put forth by ISIS.Trump Officials Had No Clue Where He Got ‘Whimpering’ Detail in His Baghdadi Raid AccountOddly, Baghdadi was killed in Idlib, a haven of al-Qaeda-linked fighters and Hayat Tahrir al-Sham, a Syrian Islamist faction led by Abu Muhammad al-Julani, a former al-Qaeda comrade who had become one of Baghdadi's most bitter foes. There has been some speculation Baghdadi was not just hiding out but trying to recruit from the ranks of his enemies.Neither al-Qaeda Central nor its affiliates have commented on Baghdadi’s death as yet, but within hours after the news broke, al-Qaeda ideologues and supporters already were celebrating the event and discussing what it will mean for the future of jihad. In chat groups online, al-Qaeda supporters voiced resentment after years of bitter strife with the group, and the scale of these responses illustrates just how much of a big deal and opportunity they see with Baghdadi’s death.“Based on his orders, thousands of the mujahideen were killed,” one post read.“How thrilled were they every time leaders from al-Qaeda were martyred?” read another.Some wished Baghdadi the ultimate condemnation:  “May Allah send him to Hell.”Messages by others, however, particularly al-Qaeda-linked ideologues, balanced expressions of justice for the jihadi movement with restraint, making sure not to celebrate excessively the result of an operation by the United States.The tactful enthusiasm is calculated. Many ISIS fighters, much of its military infrastructure, many media officials, and supporters were pulled from al-Qaeda. Now, with ISIS’ “Caliph” dead and that Caliphate itself destroyed, al-Qaeda has been given its biggest opportunity yet to bring many of them back under its tent. SITE Intelligence GroupPerhaps the most profound instance of this outreach was a lengthy essay by “Adel Amin,” the pen name of a prominent ideologue linked to the Shabaab al-Mujahideen Movement, al-Qaeda’s branch in Somalia and most powerful affiliate. The message, disseminated widely across al-Qaeda-supporting channels and chat groups (many of which are also frequented by pro-ISIS users), demanded that ISIS supporters “return to the road of righteousness” after the Islamic State, in all of its excessive aggression and delusions of destiny, has proven itself a failure. Amin wrote:The situation here is not one in which to gloat. It is a situation for reminding and calling on those who remained in the ranks of al-Baghdadi, to reconsider
 Indeed, we witnessed its back being broken, its leaders getting killed, and its banner falling, and we hope that we can witness whoever remains from its soldiers returning to righteousness.Statements by other ideologues and supporters voiced the same points. A statement by Sirajuddin Zurayqat, a former religious official in the now-defunct al-Qaeda-linked Brigades of Abdullah Azzam in Lebanon, urged: “Now [Baghdadi] is dead and there is not one from the Ummah grieving over him or giving condolences... Therefore, those who were deceived by him should reconsider before it is too late!”These messages echo the same calls heard from Zawahiri and al-Qaeda affiliates over the years calling on ISIS fighters to “repent” and leave the group. Yet despite these new circumstances, ISIS supporters will not easily be moved. Since the summer of 2016, the group’s followers have seen the loss of the major cities Mosul in Iraq and Raqqah in Syria as well as the death of revered ISIS figures like Omar Shishani, Abu Muhammad al-‘Adnani, and others. With the latest setbacks to its leadership, ISIS-linked accounts online already have poured out calls to stay steadfast and have even used Baghdadi’s death as a rallying point to carry out new attacks. Reinforcing this undeterred support is an ISIS military and media machine that has shown no sign of stopping in the last two days. While ISIS has not yet officially acknowledged the death of Baghdadi, it has continued reporting on day-to-day military activity across Iraq, Syria, and the Afghanistan-Pakistan region.ISIS' Yemen Province - AQAP Prisoners as Featured in the video “He Who Starts is More Unjust”SITE Intelligence GroupFurthermore, while al-Qaeda affiliates like the Shabaab serve as powerful representatives of the organization, al-Qaeda Central is weaker than it has ever been. These days, al-Qaeda Central’s role is largely symbolic, limited to leadership messages and other content while steering the big-picture ethos of the organization. Its attempts to bolster its image, already heavily weighed down by a less-than-charismatic leader in Zawahiri, were upended upon the death of Hamza bin Laden, the son of Osama, whom al-Qaeda likely was grooming for an eventual leadership position. These variables considered, al-Qaeda may not be the appealing alternative for jihadists that its supporters want it to seem. So, while some fighters might very well join the ranks of al-Qaeda affiliates in their region, we shouldn't expect to see any drastic migration from ISIS’ ranks into its rival’s.Despite any notions of good-riddance that al-Qaeda and its supporters attach to Baghdadi’s death, and for whatever number of defectors it may win over as a result of Baghdadi’s demise, ISIS is not going anywhere. The barriers between these terrorist organizations have only hardened over the years, fueling deadly clashes and jihadi PR wars. Baghdadi was not the sole barrier keeping ISIS members from joining al-Qaeda, and his death is unlikely to diminish existing disputes.How U.S. Commandos IDed a ‘Mutilated’ Baghdadi So QuicklyRead more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/QcYdXaN_8T4S1wGgb4g_rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/61b52f4bd864d7492e1a1855d59b3e16,What Baghdadi’s Death Means for al Qaeda—and Why It Matters -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -Scalise Claims Schiff Has Directed Witnesses Not to Answer Republicans’ Questions During ‘Soviet Style’ Impeachment Hearings,"Tue, 29 Oct 2019 17:24:21 -0400",https://news.yahoo.com/scalise-claims-schiff-directed-witnesses-211926210.html,"House Minority Whip Steve Scalise (R., La.) lambasted House Intelligence Chairman Adam Schiff for allegedly shutting down questions from House Republicans in an impeachment inquiry hearing, calling it “a Soviet-style process.”“That might be what they do in the Soviet Union, not the United States of America. We can’t stand for this, the American people are being denied equal justice,” Scalise stated.> House Minority Whip @SteveScalise rips into Democratic ""soviet style"" impeachment process:> > He says that @RepAdamSchiff ""started telling witnesses not to answer questions by certain Republicans."" pic.twitter.com/5mcEU8NZuq> > -- Daily Caller (@DailyCaller) October 29, 2019 Scalise’s comments come after the House released a draft resolution instituting a formal process for the inquiry, which includes allowing Republicans to present subpoenas and call witnesses, but only ones that are “authorized” by Schiff.“Adam Schiff, among many things, has been trying to claim that this is a fair process by saying that Republicans are allowed to ask questions,” Scalise told reporters alongside Ohio Republican Jim Jordan. “Now he gets to choose all the witnesses, and him and himself only, which means it’s not a fair process on the face. But even his claim now, that Republicans can ask questions, has been undermined, because now he’s directing witnesses not to answer questions that he doesn’t want the witness to answer, if they’re asked by Republicans.“He’s not cut off one Democrat, he’s not interrupted one Democrat and told a witness not to answer Democrat members’ questions, but today he started telling the witness not to answer questions by certain Republicans. That reeks.”House Republicans have been hostile to Schiff’s handling of the impeachment probe, and last week attempted to pass a resolution to censure the California Democrat and demanded his resignation. Following the failed party-line vote, House Leader Kevin McCarthy (R., Calif.) accused Democrats of electing “to put politics over truth.”",http://l2.yimg.com/uu/api/res/1.2/uXJvDWBba6YdJ.fQv44IaA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://i0.wp.com/www.nationalreview.com/wp-content/uploads/2019/10/steve-scalise-capitol-hill.jpg?fit=1024%2C597&ssl=1,Scalise Claims Schiff Has Directed Witnesses Not to Answer Republicans’ Questions During ‘Soviet Style’ Impeachment Hearings -U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal -Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported -He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse -"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears -View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -What Baghdadi’s Death Means for al Qaeda—and Why It Matters,"Tue, 29 Oct 2019 13:14:08 -0400",https://news.yahoo.com/baghdadi-death-means-al-qaeda-171408420.html,"SITE Intelligence GroupWith ISIS leader Abu Bakr al-Baghdadi killed one day and the group’s official spokesman Abu Hassan al-Muhajir the next, there’s a giant hole in the pseudo-Caliphate structure of the so-called Islamic State. The group must now, by its strict religious tenets, find a new (supposed) descendant of the Prophet Muhammed to fill the role of Caliph. But the deaths of those two are equally consequential for al-Qaeda, the bitter rival of ISIS for leadership of global jihad. Al-Qaeda has spent the last six years branding the Caliphate as illegitimate, too extreme, and ultimately harmful. When ISIS declared the establishment of its so-called Caliphate spanning territory in Syria and Iraq in 2014, al-Qaeda and its affiliates unanimously rejected it. To this day, al-Qaeda leader Ayman al-Zawahiri’s speeches rarely come without some critique of the “epidemic” put forth by ISIS.Trump Officials Had No Clue Where He Got ‘Whimpering’ Detail in His Baghdadi Raid AccountOddly, Baghdadi was killed in Idlib, a haven of al-Qaeda-linked fighters and Hayat Tahrir al-Sham, a Syrian Islamist faction led by Abu Muhammad al-Julani, a former al-Qaeda comrade who had become one of Baghdadi's most bitter foes. There has been some speculation Baghdadi was not just hiding out but trying to recruit from the ranks of his enemies.Neither al-Qaeda Central nor its affiliates have commented on Baghdadi’s death as yet, but within hours after the news broke, al-Qaeda ideologues and supporters already were celebrating the event and discussing what it will mean for the future of jihad. In chat groups online, al-Qaeda supporters voiced resentment after years of bitter strife with the group, and the scale of these responses illustrates just how much of a big deal and opportunity they see with Baghdadi’s death.“Based on his orders, thousands of the mujahideen were killed,” one post read.“How thrilled were they every time leaders from al-Qaeda were martyred?” read another.Some wished Baghdadi the ultimate condemnation:  “May Allah send him to Hell.”Messages by others, however, particularly al-Qaeda-linked ideologues, balanced expressions of justice for the jihadi movement with restraint, making sure not to celebrate excessively the result of an operation by the United States.The tactful enthusiasm is calculated. Many ISIS fighters, much of its military infrastructure, many media officials, and supporters were pulled from al-Qaeda. Now, with ISIS’ “Caliph” dead and that Caliphate itself destroyed, al-Qaeda has been given its biggest opportunity yet to bring many of them back under its tent. SITE Intelligence GroupPerhaps the most profound instance of this outreach was a lengthy essay by “Adel Amin,” the pen name of a prominent ideologue linked to the Shabaab al-Mujahideen Movement, al-Qaeda’s branch in Somalia and most powerful affiliate. The message, disseminated widely across al-Qaeda-supporting channels and chat groups (many of which are also frequented by pro-ISIS users), demanded that ISIS supporters “return to the road of righteousness” after the Islamic State, in all of its excessive aggression and delusions of destiny, has proven itself a failure. Amin wrote:The situation here is not one in which to gloat. It is a situation for reminding and calling on those who remained in the ranks of al-Baghdadi, to reconsider
 Indeed, we witnessed its back being broken, its leaders getting killed, and its banner falling, and we hope that we can witness whoever remains from its soldiers returning to righteousness.Statements by other ideologues and supporters voiced the same points. A statement by Sirajuddin Zurayqat, a former religious official in the now-defunct al-Qaeda-linked Brigades of Abdullah Azzam in Lebanon, urged: “Now [Baghdadi] is dead and there is not one from the Ummah grieving over him or giving condolences... Therefore, those who were deceived by him should reconsider before it is too late!”These messages echo the same calls heard from Zawahiri and al-Qaeda affiliates over the years calling on ISIS fighters to “repent” and leave the group. Yet despite these new circumstances, ISIS supporters will not easily be moved. Since the summer of 2016, the group’s followers have seen the loss of the major cities Mosul in Iraq and Raqqah in Syria as well as the death of revered ISIS figures like Omar Shishani, Abu Muhammad al-‘Adnani, and others. With the latest setbacks to its leadership, ISIS-linked accounts online already have poured out calls to stay steadfast and have even used Baghdadi’s death as a rallying point to carry out new attacks. Reinforcing this undeterred support is an ISIS military and media machine that has shown no sign of stopping in the last two days. While ISIS has not yet officially acknowledged the death of Baghdadi, it has continued reporting on day-to-day military activity across Iraq, Syria, and the Afghanistan-Pakistan region.ISIS' Yemen Province - AQAP Prisoners as Featured in the video “He Who Starts is More Unjust”SITE Intelligence GroupFurthermore, while al-Qaeda affiliates like the Shabaab serve as powerful representatives of the organization, al-Qaeda Central is weaker than it has ever been. These days, al-Qaeda Central’s role is largely symbolic, limited to leadership messages and other content while steering the big-picture ethos of the organization. Its attempts to bolster its image, already heavily weighed down by a less-than-charismatic leader in Zawahiri, were upended upon the death of Hamza bin Laden, the son of Osama, whom al-Qaeda likely was grooming for an eventual leadership position. These variables considered, al-Qaeda may not be the appealing alternative for jihadists that its supporters want it to seem. So, while some fighters might very well join the ranks of al-Qaeda affiliates in their region, we shouldn't expect to see any drastic migration from ISIS’ ranks into its rival’s.Despite any notions of good-riddance that al-Qaeda and its supporters attach to Baghdadi’s death, and for whatever number of defectors it may win over as a result of Baghdadi’s demise, ISIS is not going anywhere. The barriers between these terrorist organizations have only hardened over the years, fueling deadly clashes and jihadi PR wars. Baghdadi was not the sole barrier keeping ISIS members from joining al-Qaeda, and his death is unlikely to diminish existing disputes.How U.S. Commandos IDed a ‘Mutilated’ Baghdadi So QuicklyRead more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/QcYdXaN_8T4S1wGgb4g_rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/61b52f4bd864d7492e1a1855d59b3e16,What Baghdadi’s Death Means for al Qaeda—and Why It Matters -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -Scalise Claims Schiff Has Directed Witnesses Not to Answer Republicans’ Questions During ‘Soviet Style’ Impeachment Hearings,"Tue, 29 Oct 2019 17:24:21 -0400",https://news.yahoo.com/scalise-claims-schiff-directed-witnesses-211926210.html,"House Minority Whip Steve Scalise (R., La.) lambasted House Intelligence Chairman Adam Schiff for allegedly shutting down questions from House Republicans in an impeachment inquiry hearing, calling it “a Soviet-style process.”“That might be what they do in the Soviet Union, not the United States of America. We can’t stand for this, the American people are being denied equal justice,” Scalise stated.> House Minority Whip @SteveScalise rips into Democratic ""soviet style"" impeachment process:> > He says that @RepAdamSchiff ""started telling witnesses not to answer questions by certain Republicans."" pic.twitter.com/5mcEU8NZuq> > -- Daily Caller (@DailyCaller) October 29, 2019 Scalise’s comments come after the House released a draft resolution instituting a formal process for the inquiry, which includes allowing Republicans to present subpoenas and call witnesses, but only ones that are “authorized” by Schiff.“Adam Schiff, among many things, has been trying to claim that this is a fair process by saying that Republicans are allowed to ask questions,” Scalise told reporters alongside Ohio Republican Jim Jordan. “Now he gets to choose all the witnesses, and him and himself only, which means it’s not a fair process on the face. But even his claim now, that Republicans can ask questions, has been undermined, because now he’s directing witnesses not to answer questions that he doesn’t want the witness to answer, if they’re asked by Republicans.“He’s not cut off one Democrat, he’s not interrupted one Democrat and told a witness not to answer Democrat members’ questions, but today he started telling the witness not to answer questions by certain Republicans. That reeks.”House Republicans have been hostile to Schiff’s handling of the impeachment probe, and last week attempted to pass a resolution to censure the California Democrat and demanded his resignation. Following the failed party-line vote, House Leader Kevin McCarthy (R., Calif.) accused Democrats of electing “to put politics over truth.”",http://l2.yimg.com/uu/api/res/1.2/uXJvDWBba6YdJ.fQv44IaA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://i0.wp.com/www.nationalreview.com/wp-content/uploads/2019/10/steve-scalise-capitol-hill.jpg?fit=1024%2C597&ssl=1,Scalise Claims Schiff Has Directed Witnesses Not to Answer Republicans’ Questions During ‘Soviet Style’ Impeachment Hearings -U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal -Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported -He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse -"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan -U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -Bernie Sanders says he doesn't intend to release a funding plan for Medicare for All any time soon,"Tue, 29 Oct 2019 15:51:13 -0400",https://news.yahoo.com/bernie-sanders-says-doesnt-intend-195113050.html,"Sanders said in a CNBC interview that ""I don't think I have to"" release details specifying how universal healthcare coverage would be paid for.",http://l1.yimg.com/uu/api/res/1.2/.2orRAETSkwQQaeN6_h7LQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/e21d07626ec59c81d309d983d53a0df4,Bernie Sanders says he doesn't intend to release a funding plan for Medicare for All any time soon -Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported -London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial -He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears -View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -What Baghdadi’s Death Means for al Qaeda—and Why It Matters,"Tue, 29 Oct 2019 13:14:08 -0400",https://news.yahoo.com/baghdadi-death-means-al-qaeda-171408420.html,"SITE Intelligence GroupWith ISIS leader Abu Bakr al-Baghdadi killed one day and the group’s official spokesman Abu Hassan al-Muhajir the next, there’s a giant hole in the pseudo-Caliphate structure of the so-called Islamic State. The group must now, by its strict religious tenets, find a new (supposed) descendant of the Prophet Muhammed to fill the role of Caliph. But the deaths of those two are equally consequential for al-Qaeda, the bitter rival of ISIS for leadership of global jihad. Al-Qaeda has spent the last six years branding the Caliphate as illegitimate, too extreme, and ultimately harmful. When ISIS declared the establishment of its so-called Caliphate spanning territory in Syria and Iraq in 2014, al-Qaeda and its affiliates unanimously rejected it. To this day, al-Qaeda leader Ayman al-Zawahiri’s speeches rarely come without some critique of the “epidemic” put forth by ISIS.Trump Officials Had No Clue Where He Got ‘Whimpering’ Detail in His Baghdadi Raid AccountOddly, Baghdadi was killed in Idlib, a haven of al-Qaeda-linked fighters and Hayat Tahrir al-Sham, a Syrian Islamist faction led by Abu Muhammad al-Julani, a former al-Qaeda comrade who had become one of Baghdadi's most bitter foes. There has been some speculation Baghdadi was not just hiding out but trying to recruit from the ranks of his enemies.Neither al-Qaeda Central nor its affiliates have commented on Baghdadi’s death as yet, but within hours after the news broke, al-Qaeda ideologues and supporters already were celebrating the event and discussing what it will mean for the future of jihad. In chat groups online, al-Qaeda supporters voiced resentment after years of bitter strife with the group, and the scale of these responses illustrates just how much of a big deal and opportunity they see with Baghdadi’s death.“Based on his orders, thousands of the mujahideen were killed,” one post read.“How thrilled were they every time leaders from al-Qaeda were martyred?” read another.Some wished Baghdadi the ultimate condemnation:  “May Allah send him to Hell.”Messages by others, however, particularly al-Qaeda-linked ideologues, balanced expressions of justice for the jihadi movement with restraint, making sure not to celebrate excessively the result of an operation by the United States.The tactful enthusiasm is calculated. Many ISIS fighters, much of its military infrastructure, many media officials, and supporters were pulled from al-Qaeda. Now, with ISIS’ “Caliph” dead and that Caliphate itself destroyed, al-Qaeda has been given its biggest opportunity yet to bring many of them back under its tent. SITE Intelligence GroupPerhaps the most profound instance of this outreach was a lengthy essay by “Adel Amin,” the pen name of a prominent ideologue linked to the Shabaab al-Mujahideen Movement, al-Qaeda’s branch in Somalia and most powerful affiliate. The message, disseminated widely across al-Qaeda-supporting channels and chat groups (many of which are also frequented by pro-ISIS users), demanded that ISIS supporters “return to the road of righteousness” after the Islamic State, in all of its excessive aggression and delusions of destiny, has proven itself a failure. Amin wrote:The situation here is not one in which to gloat. It is a situation for reminding and calling on those who remained in the ranks of al-Baghdadi, to reconsider
 Indeed, we witnessed its back being broken, its leaders getting killed, and its banner falling, and we hope that we can witness whoever remains from its soldiers returning to righteousness.Statements by other ideologues and supporters voiced the same points. A statement by Sirajuddin Zurayqat, a former religious official in the now-defunct al-Qaeda-linked Brigades of Abdullah Azzam in Lebanon, urged: “Now [Baghdadi] is dead and there is not one from the Ummah grieving over him or giving condolences... Therefore, those who were deceived by him should reconsider before it is too late!”These messages echo the same calls heard from Zawahiri and al-Qaeda affiliates over the years calling on ISIS fighters to “repent” and leave the group. Yet despite these new circumstances, ISIS supporters will not easily be moved. Since the summer of 2016, the group’s followers have seen the loss of the major cities Mosul in Iraq and Raqqah in Syria as well as the death of revered ISIS figures like Omar Shishani, Abu Muhammad al-‘Adnani, and others. With the latest setbacks to its leadership, ISIS-linked accounts online already have poured out calls to stay steadfast and have even used Baghdadi’s death as a rallying point to carry out new attacks. Reinforcing this undeterred support is an ISIS military and media machine that has shown no sign of stopping in the last two days. While ISIS has not yet officially acknowledged the death of Baghdadi, it has continued reporting on day-to-day military activity across Iraq, Syria, and the Afghanistan-Pakistan region.ISIS' Yemen Province - AQAP Prisoners as Featured in the video “He Who Starts is More Unjust”SITE Intelligence GroupFurthermore, while al-Qaeda affiliates like the Shabaab serve as powerful representatives of the organization, al-Qaeda Central is weaker than it has ever been. These days, al-Qaeda Central’s role is largely symbolic, limited to leadership messages and other content while steering the big-picture ethos of the organization. Its attempts to bolster its image, already heavily weighed down by a less-than-charismatic leader in Zawahiri, were upended upon the death of Hamza bin Laden, the son of Osama, whom al-Qaeda likely was grooming for an eventual leadership position. These variables considered, al-Qaeda may not be the appealing alternative for jihadists that its supporters want it to seem. So, while some fighters might very well join the ranks of al-Qaeda affiliates in their region, we shouldn't expect to see any drastic migration from ISIS’ ranks into its rival’s.Despite any notions of good-riddance that al-Qaeda and its supporters attach to Baghdadi’s death, and for whatever number of defectors it may win over as a result of Baghdadi’s demise, ISIS is not going anywhere. The barriers between these terrorist organizations have only hardened over the years, fueling deadly clashes and jihadi PR wars. Baghdadi was not the sole barrier keeping ISIS members from joining al-Qaeda, and his death is unlikely to diminish existing disputes.How U.S. Commandos IDed a ‘Mutilated’ Baghdadi So QuicklyRead more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/QcYdXaN_8T4S1wGgb4g_rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/61b52f4bd864d7492e1a1855d59b3e16,What Baghdadi’s Death Means for al Qaeda—and Why It Matters -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -Scalise Claims Schiff Has Directed Witnesses Not to Answer Republicans’ Questions During ‘Soviet Style’ Impeachment Hearings,"Tue, 29 Oct 2019 17:24:21 -0400",https://news.yahoo.com/scalise-claims-schiff-directed-witnesses-211926210.html,"House Minority Whip Steve Scalise (R., La.) lambasted House Intelligence Chairman Adam Schiff for allegedly shutting down questions from House Republicans in an impeachment inquiry hearing, calling it “a Soviet-style process.”“That might be what they do in the Soviet Union, not the United States of America. We can’t stand for this, the American people are being denied equal justice,” Scalise stated.> House Minority Whip @SteveScalise rips into Democratic ""soviet style"" impeachment process:> > He says that @RepAdamSchiff ""started telling witnesses not to answer questions by certain Republicans."" pic.twitter.com/5mcEU8NZuq> > -- Daily Caller (@DailyCaller) October 29, 2019 Scalise’s comments come after the House released a draft resolution instituting a formal process for the inquiry, which includes allowing Republicans to present subpoenas and call witnesses, but only ones that are “authorized” by Schiff.“Adam Schiff, among many things, has been trying to claim that this is a fair process by saying that Republicans are allowed to ask questions,” Scalise told reporters alongside Ohio Republican Jim Jordan. “Now he gets to choose all the witnesses, and him and himself only, which means it’s not a fair process on the face. But even his claim now, that Republicans can ask questions, has been undermined, because now he’s directing witnesses not to answer questions that he doesn’t want the witness to answer, if they’re asked by Republicans.“He’s not cut off one Democrat, he’s not interrupted one Democrat and told a witness not to answer Democrat members’ questions, but today he started telling the witness not to answer questions by certain Republicans. That reeks.”House Republicans have been hostile to Schiff’s handling of the impeachment probe, and last week attempted to pass a resolution to censure the California Democrat and demanded his resignation. Following the failed party-line vote, House Leader Kevin McCarthy (R., Calif.) accused Democrats of electing “to put politics over truth.”",http://l2.yimg.com/uu/api/res/1.2/uXJvDWBba6YdJ.fQv44IaA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://i0.wp.com/www.nationalreview.com/wp-content/uploads/2019/10/steve-scalise-capitol-hill.jpg?fit=1024%2C597&ssl=1,Scalise Claims Schiff Has Directed Witnesses Not to Answer Republicans’ Questions During ‘Soviet Style’ Impeachment Hearings -U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal -Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported -He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse -"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan -U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -Bernie Sanders says he doesn't intend to release a funding plan for Medicare for All any time soon,"Tue, 29 Oct 2019 15:51:13 -0400",https://news.yahoo.com/bernie-sanders-says-doesnt-intend-195113050.html,"Sanders said in a CNBC interview that ""I don't think I have to"" release details specifying how universal healthcare coverage would be paid for.",http://l1.yimg.com/uu/api/res/1.2/.2orRAETSkwQQaeN6_h7LQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/e21d07626ec59c81d309d983d53a0df4,Bernie Sanders says he doesn't intend to release a funding plan for Medicare for All any time soon -Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported -London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial -He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan -U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -Bernie Sanders says he doesn't intend to release a funding plan for Medicare for All any time soon,"Tue, 29 Oct 2019 15:51:13 -0400",https://news.yahoo.com/bernie-sanders-says-doesnt-intend-195113050.html,"Sanders said in a CNBC interview that ""I don't think I have to"" release details specifying how universal healthcare coverage would be paid for.",http://l1.yimg.com/uu/api/res/1.2/.2orRAETSkwQQaeN6_h7LQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/e21d07626ec59c81d309d983d53a0df4,Bernie Sanders says he doesn't intend to release a funding plan for Medicare for All any time soon -Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported -London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial -He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears -View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan -'Everybody has read your words on the call': Pelosi responds to Trump tweets on impeachment,"Tue, 29 Oct 2019 14:46:16 -0400",https://news.yahoo.com/everybody-read-words-call-pelosi-145151698.html,"Nancy Pelosi responded to Trump's tweets about Alexander Vindman's testimony, writing on Twitter, ""Everybody has read your words on the call.""",http://l.yimg.com/uu/api/res/1.2/eTwHjSKEkaxGGzlnz8WQQA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/81f943677d57859fd9379365729009f9,'Everybody has read your words on the call': Pelosi responds to Trump tweets on impeachment -Anger mounts as utility imposes more blackouts in California,"Tue, 29 Oct 2019 22:19:03 -0400",https://news.yahoo.com/frustration-rises-amid-another-round-213206029.html,"With no electricity for the fourth straight day Tuesday, chef and caterer Jane Sykes realized she would have to throw out $1,000 worth of food, including trays of brownies, cupcakes and puff pastry. ""I don't think PG&E really thought this through,"" she lamented. Frustration and anger mounted across Northern California on Tuesday as the state's biggest utility, Pacific Gas & Electric, began another round of widespread blackouts aimed at preventing its electrical equipment from sparking wildfires in high winds.",http://l1.yimg.com/uu/api/res/1.2/gHk4DdbHRLs_QfWj0r20KA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/166263d36c4f8e3529708e8424c36bec,Anger mounts as utility imposes more blackouts in California -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported -He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" -Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden -"Russia is finding new islands in the Arctic, while the US is still trying to figure out how to get up there","Tue, 29 Oct 2019 13:18:24 -0400",https://news.yahoo.com/russia-finding-islands-arctic-while-171824970.html,"Russia already has the world's longest Arctic coastline, and five newly discovered islands give it even more territory to work with.",http://l2.yimg.com/uu/api/res/1.2/qrloLwli.Jx_bcUMPTdvBw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/1801c54af7a2425d59827698505e68a3,"Russia is finding new islands in the Arctic, while the US is still trying to figure out how to get up there" -Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears -View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan -'Everybody has read your words on the call': Pelosi responds to Trump tweets on impeachment,"Tue, 29 Oct 2019 14:46:16 -0400",https://news.yahoo.com/everybody-read-words-call-pelosi-145151698.html,"Nancy Pelosi responded to Trump's tweets about Alexander Vindman's testimony, writing on Twitter, ""Everybody has read your words on the call.""",http://l.yimg.com/uu/api/res/1.2/eTwHjSKEkaxGGzlnz8WQQA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/81f943677d57859fd9379365729009f9,'Everybody has read your words on the call': Pelosi responds to Trump tweets on impeachment -Anger mounts as utility imposes more blackouts in California,"Tue, 29 Oct 2019 22:19:03 -0400",https://news.yahoo.com/frustration-rises-amid-another-round-213206029.html,"With no electricity for the fourth straight day Tuesday, chef and caterer Jane Sykes realized she would have to throw out $1,000 worth of food, including trays of brownies, cupcakes and puff pastry. ""I don't think PG&E really thought this through,"" she lamented. Frustration and anger mounted across Northern California on Tuesday as the state's biggest utility, Pacific Gas & Electric, began another round of widespread blackouts aimed at preventing its electrical equipment from sparking wildfires in high winds.",http://l1.yimg.com/uu/api/res/1.2/gHk4DdbHRLs_QfWj0r20KA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/166263d36c4f8e3529708e8424c36bec,Anger mounts as utility imposes more blackouts in California -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported -He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" -Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden -"Russia is finding new islands in the Arctic, while the US is still trying to figure out how to get up there","Tue, 29 Oct 2019 13:18:24 -0400",https://news.yahoo.com/russia-finding-islands-arctic-while-171824970.html,"Russia already has the world's longest Arctic coastline, and five newly discovered islands give it even more territory to work with.",http://l2.yimg.com/uu/api/res/1.2/qrloLwli.Jx_bcUMPTdvBw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/1801c54af7a2425d59827698505e68a3,"Russia is finding new islands in the Arctic, while the US is still trying to figure out how to get up there" -View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan -Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -Anger mounts as utility imposes more blackouts in California,"Tue, 29 Oct 2019 22:19:03 -0400",https://news.yahoo.com/frustration-rises-amid-another-round-213206029.html,"With no electricity for the fourth straight day Tuesday, chef and caterer Jane Sykes realized she would have to throw out $1,000 worth of food, including trays of brownies, cupcakes and puff pastry. ""I don't think PG&E really thought this through,"" she lamented. Frustration and anger mounted across Northern California on Tuesday as the state's biggest utility, Pacific Gas & Electric, began another round of widespread blackouts aimed at preventing its electrical equipment from sparking wildfires in high winds.",http://l1.yimg.com/uu/api/res/1.2/gHk4DdbHRLs_QfWj0r20KA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/166263d36c4f8e3529708e8424c36bec,Anger mounts as utility imposes more blackouts in California -Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden -Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported -"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse -Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears -View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan -'Everybody has read your words on the call': Pelosi responds to Trump tweets on impeachment,"Tue, 29 Oct 2019 14:46:16 -0400",https://news.yahoo.com/everybody-read-words-call-pelosi-145151698.html,"Nancy Pelosi responded to Trump's tweets about Alexander Vindman's testimony, writing on Twitter, ""Everybody has read your words on the call.""",http://l.yimg.com/uu/api/res/1.2/eTwHjSKEkaxGGzlnz8WQQA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/81f943677d57859fd9379365729009f9,'Everybody has read your words on the call': Pelosi responds to Trump tweets on impeachment -Anger mounts as utility imposes more blackouts in California,"Tue, 29 Oct 2019 22:19:03 -0400",https://news.yahoo.com/frustration-rises-amid-another-round-213206029.html,"With no electricity for the fourth straight day Tuesday, chef and caterer Jane Sykes realized she would have to throw out $1,000 worth of food, including trays of brownies, cupcakes and puff pastry. ""I don't think PG&E really thought this through,"" she lamented. Frustration and anger mounted across Northern California on Tuesday as the state's biggest utility, Pacific Gas & Electric, began another round of widespread blackouts aimed at preventing its electrical equipment from sparking wildfires in high winds.",http://l1.yimg.com/uu/api/res/1.2/gHk4DdbHRLs_QfWj0r20KA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/166263d36c4f8e3529708e8424c36bec,Anger mounts as utility imposes more blackouts in California -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported -He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" -Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden -"Russia is finding new islands in the Arctic, while the US is still trying to figure out how to get up there","Tue, 29 Oct 2019 13:18:24 -0400",https://news.yahoo.com/russia-finding-islands-arctic-while-171824970.html,"Russia already has the world's longest Arctic coastline, and five newly discovered islands give it even more territory to work with.",http://l2.yimg.com/uu/api/res/1.2/qrloLwli.Jx_bcUMPTdvBw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/1801c54af7a2425d59827698505e68a3,"Russia is finding new islands in the Arctic, while the US is still trying to figure out how to get up there" -View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan -Trump allies on Fox and CNN preempt damning testimony with smears,"Tue, 29 Oct 2019 12:43:30 -0400",https://news.yahoo.com/vindman-impeachment-fox-news-ingraham-yoo-duffy-ukraine-smear-164330029.html,"Hours before Army Lt. Col. Alexander Vindman was due to testify against President Trump in the House impeachment inquiry, conservative pundits on cable television launched an extraordinary attack against the decorated war hero.",http://l.yimg.com/uu/api/res/1.2/RVWDZ8cKrYpg7LhblbUpyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/e544f2a0-fa66-11e9-8dff-62cb0ed6aa1e,Trump allies on Fox and CNN preempt damning testimony with smears -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -Anger mounts as utility imposes more blackouts in California,"Tue, 29 Oct 2019 22:19:03 -0400",https://news.yahoo.com/frustration-rises-amid-another-round-213206029.html,"With no electricity for the fourth straight day Tuesday, chef and caterer Jane Sykes realized she would have to throw out $1,000 worth of food, including trays of brownies, cupcakes and puff pastry. ""I don't think PG&E really thought this through,"" she lamented. Frustration and anger mounted across Northern California on Tuesday as the state's biggest utility, Pacific Gas & Electric, began another round of widespread blackouts aimed at preventing its electrical equipment from sparking wildfires in high winds.",http://l1.yimg.com/uu/api/res/1.2/gHk4DdbHRLs_QfWj0r20KA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/166263d36c4f8e3529708e8424c36bec,Anger mounts as utility imposes more blackouts in California -Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden -Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported -"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse -View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden -"Pelosi, Schiff Prep for GOP Impeachment ‘Stunts’ and Attempts to Out the Whistleblower","Tue, 29 Oct 2019 15:31:34 -0400",https://news.yahoo.com/pelosi-schiff-prep-gop-impeachment-193134453.html,"Congressional Democrats are struggling to protect the identity of the U.S. government official who filed a whistleblower complaint about President Donald Trump’s Ukraine policy. And those efforts have fueled friction behind closed doors. House Intelligence Committee Chairman Adam Schiff (D-CA) ruled in a closed-door deposition Tuesday morning that any questions that might lead to the revelation of the whistleblower’s identity were out of order, according to two sources familiar with the meeting. His move frustrated Republicans. One source relayed that Rep. Eric Swalwell (D-CA) and Rep. Mark Meadows (R-N.C.) ended up “yelling at each other” during a closed door deposition of Alexander Vindman, the National Security Council Director for European Affairs who testified that he raised internal concerns about Trump’s call with Ukrainian President Volodymyr Zelensky that is now at the center of the impeachment inquiry.Meadows declined to discuss the deposition, but acknowledged the tension. “There is a great frustration among some of my Democratic colleagues because I know the rules extremely well,” he told The Daily Beast.Schiff’s office declined to comment. House Democrats Plan an Impeachment BlitzTuesday’s tensions underscored a growing fear among Democrats that Republicans may use parliamentary maneuvers to cast doubt on the whistleblower’s complaint and disrupt future private and public impeachment hearings. Top congressional Democrats, including members of the Intelligence and Judiciary Committees, have been meeting privately for weeks to discuss messaging around the impeachment inquiry. And in a meeting on Tuesday morning, House Speaker Nancy Pelosi (D-CA) and other attendees discussed how to handle potential Republican efforts to reveal the whistleblower’s identity, according to two sources familiar with the talks. A third source who was in the meeting said they were not aware of discussion about protecting the whistleblower’s identity. But the source did say that a good chunk of the discussion focused on how to handle Republican-led attempts to disrupt future public hearings, which impeachment investigators officially teed up on Tuesday. Some Democratic members have raised concerns that hearings could become chaotic political circuses with GOP lawmakers using the parliamentary rules to bog down the sessions. Republican members have used such tactics successfully during Judiciary Committee hearings led by Chairman Jerry Nadler (D-N.Y.)—most notably when Trump’s former campaign manager Corey Lewandowski spent much of his time refusing to answer questions and berating his questioners. That hearing embarrassed many Democrats and was widely viewed as a mess, underscoring the need for new direction and leadership in oversight of the Trump White House. Going forward, the third source said, Democrats wanted to better prepare for such “stunts” by setting firm rules for hearings. “It is going to happen at every turn, so we have to be prepared to address it,” the source said. “So we may do it through the rule. And we need to come up with a message to deal with this.”The House Rules Committee is slated to vote on formal rules of the impeachment hearings on Wednesday, and the full House could vote on the new rules as soon as Thursday.Meadows said that any accusation that Republicans were trying to out the whistleblower were untrue because they did not know who to actually out. “We don’t know who the whistleblower is, so there’s no way that we can out someone that we don’t know who it is,” he said. “I do believe that we need to hear from the whistleblower, but in terms of any ability to out the whistleblower, you have to know the name of him or her first and I can assure you that there’s not a single Republican that knows the name of the whistleblower.”Nunes Aide Is Leaking the Ukraine Whistleblower’s Name, Sources SaySources have told The Daily Beast a different story. According to two knowledgeable people, a top staffer to Rep. Devin Nunes (R-CA) has been circulating the identity of a person believed to be the whistleblower among House Republicans.On Tuesday, Rep. Debbie Wasserman Schultz (D-FL) exited the deposition and railed against Republican lawmakers for seemingly spending “most of their hours” of questioning using a variety of tactics to try to get Vindman to reveal the whistleblower’s name. She said that Republicans had been “repeatedly halted” from asking about the whistleblower during the session. “It certainly appeared they were trying to make sure they could put a universe of individuals who had been communicated with on the table,” Wasserman Schultz told The Daily Beast during a break in the deposition. Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/VwR53joFHajc34X73g_9JA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/cea860978efe46cc1b3ace53c4fa9790,"Pelosi, Schiff Prep for GOP Impeachment ‘Stunts’ and Attempts to Out the Whistleblower" -Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported,"Tue, 29 Oct 2019 12:42:33 -0400",https://news.yahoo.com/iranian-beauty-queen-stuck-philippine-162424186.html,Bahareh Zare Bahari continues to await her fate at the Manila international airport after arriving nearly two weeks ago from Dubai.,http://l2.yimg.com/uu/api/res/1.2/wMiy4G5eWGz2hBF7335HUQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_818/d7889da5b7828ac591d323cbc13fad9d,Iranian beauty queen stuck at Philippine airport for nearly 2 weeks fears death if deported -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial -"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" -Trump Sides With Indicted Oligarch Over His Own Diplomat,"Tue, 29 Oct 2019 19:10:45 -0400",https://news.yahoo.com/trump-sides-indicted-oligarch-over-231045762.html,"Nicholas Kamm/AFP/Getty ImagesPresident Donald Trump boosted a tweet Monday promoting a controversial allegation from an indicted Ukrainian oligarch: that a top U.S. diplomat put fabricated information about the mogul in a diplomatic cable. That diplomat happens to be one of Democrats’ key impeachment witnesses. And that oligarch happens to have a long-standing beef with Joe Biden.Scott Adams, a Washington, D.C., talk radio host, sent out a tweet Monday night about U.S. Ambassador to Ukraine Bill Taylor, who delivered some of the impeachment inquiry’s most damaging testimony yet. The tweet alleged that Taylor lied about Ukrainian natural gas baron Dmytro Firtash in a cable to State Department headquarters in 2008. At issue was a conversation Taylor had with Firtash in Kyiv that December. Taylor wrote in a diplomatic cable (later published by WikiLeaks) that Firtash told him he had “acknowledged ties to Russian organized crime figure [Semion] Seymon Mogilevich,” one of the most notorious accused mobsters on the planet. According to Taylor, Firtash said “he needed Mogilevich's approval to get into business in the first place,” but had not committed any crimes in the course of his business.When WikiLeaks published the cable in 2010, Firtash issued a statement on his website disputing its contents. Firtash, the statement claimed,“has never stated, to anyone, at any time, that he needed or received permission from Mr. Mogilevich to establish any of his businesses.”Earlier this year, Firtash reiterated that defense. Without mentioning any American official by name, he said someone must have fabricated the detail about Mogilevich. Taylor, meanwhile, has defended the State Department’s notes. The Justice Department appears to side with Taylor; its lawyers have argued in court that Firtash has ties to Russian organized crime. The criminal charges he faces, however, don’t involve any such alleged relationships. Instead, the Justice Department charged him in 2014 with helming a conspiracy to bribe Indian government officials. Trump’s retweet, however, offers a presidential thumbs-up to Firtash’s side of the story, and raises a new line of attack on Taylor’s credibility for the president’s allies.  Asked about his sourcing for the allegations against Taylor, Adams told The Daily Beast, “My sources are solid Foggy Bottom people.” He also noted the explanation for the cable that Firtash provided to The Daily Beast earlier this year.This specific defense of Firtash took hold in The Hill over the summer, when columnist John Solomon, whose articles informed Rudy Giuliani’s Biden-Ukraine investigation, published a piece in July claiming that Special Counsel Robert Mueller’s deputy said Firtash’s criminal charges in the U.S. might “go away” if he shared damaging information about Trump with Mueller’s team. Solomon cited “multiple sources with direct knowledge” and contemporaneous memos. Firtash and Solomon share the same lawyers: Victoria Toensing and Joe diGenova. The husband-wife team are veterans of the conservative movement’s most contentious legal battles, with longstanding ties in the Justice Department and Trump administration. Ukrainian Oligarch Seethed About ‘Overlord’ Biden for YearsRead more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/img4cdxZ1ieXCNFd4Mc9LQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/587ec0455ae1dd540b5137a1aa5a82f6,Trump Sides With Indicted Oligarch Over His Own Diplomat -US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken -Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -View Every Angle of the 2019 Rolls-Royce Cullinan,"Tue, 29 Oct 2019 12:59:00 -0400",https://news.yahoo.com/view-every-angle-2019-rolls-165900681.html,,,View Every Angle of the 2019 Rolls-Royce Cullinan -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -U.S. appeals court blocks release of unredacted Mueller report pending appeal,"Tue, 29 Oct 2019 20:24:18 -0400",https://news.yahoo.com/u-appeals-court-blocks-release-002418002.html,A U.S. appeals court on Tuesday issued a stay that blocks the release to a congressional committee of an unredacted copy of former Special Counsel Robert Mueller's report detailing Russian meddling in the 2016 U.S. election. U.S. District Judge Beryl Howell on Friday ordered President Donald Trump's administration to hand over by Wednesday a copy of the Mueller report that included material that had been blacked out. The department is trying to block Democrats from accessing the full Mueller report on the grounds that doing so would require the disclosure of secret grand jury materials and potentially harm ongoing investigations.,http://l2.yimg.com/uu/api/res/1.2/Fz1VCBgFGaVmKO3x5szMOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/eb5d09674854a637e10155f5ff0e2aed,U.S. appeals court blocks release of unredacted Mueller report pending appeal -"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" -What Baghdadi’s Death Means for al Qaeda—and Why It Matters,"Tue, 29 Oct 2019 13:14:08 -0400",https://news.yahoo.com/baghdadi-death-means-al-qaeda-171408420.html,"SITE Intelligence GroupWith ISIS leader Abu Bakr al-Baghdadi killed one day and the group’s official spokesman Abu Hassan al-Muhajir the next, there’s a giant hole in the pseudo-Caliphate structure of the so-called Islamic State. The group must now, by its strict religious tenets, find a new (supposed) descendant of the Prophet Muhammed to fill the role of Caliph. But the deaths of those two are equally consequential for al-Qaeda, the bitter rival of ISIS for leadership of global jihad. Al-Qaeda has spent the last six years branding the Caliphate as illegitimate, too extreme, and ultimately harmful. When ISIS declared the establishment of its so-called Caliphate spanning territory in Syria and Iraq in 2014, al-Qaeda and its affiliates unanimously rejected it. To this day, al-Qaeda leader Ayman al-Zawahiri’s speeches rarely come without some critique of the “epidemic” put forth by ISIS.Trump Officials Had No Clue Where He Got ‘Whimpering’ Detail in His Baghdadi Raid AccountOddly, Baghdadi was killed in Idlib, a haven of al-Qaeda-linked fighters and Hayat Tahrir al-Sham, a Syrian Islamist faction led by Abu Muhammad al-Julani, a former al-Qaeda comrade who had become one of Baghdadi's most bitter foes. There has been some speculation Baghdadi was not just hiding out but trying to recruit from the ranks of his enemies.Neither al-Qaeda Central nor its affiliates have commented on Baghdadi’s death as yet, but within hours after the news broke, al-Qaeda ideologues and supporters already were celebrating the event and discussing what it will mean for the future of jihad. In chat groups online, al-Qaeda supporters voiced resentment after years of bitter strife with the group, and the scale of these responses illustrates just how much of a big deal and opportunity they see with Baghdadi’s death.“Based on his orders, thousands of the mujahideen were killed,” one post read.“How thrilled were they every time leaders from al-Qaeda were martyred?” read another.Some wished Baghdadi the ultimate condemnation:  “May Allah send him to Hell.”Messages by others, however, particularly al-Qaeda-linked ideologues, balanced expressions of justice for the jihadi movement with restraint, making sure not to celebrate excessively the result of an operation by the United States.The tactful enthusiasm is calculated. Many ISIS fighters, much of its military infrastructure, many media officials, and supporters were pulled from al-Qaeda. Now, with ISIS’ “Caliph” dead and that Caliphate itself destroyed, al-Qaeda has been given its biggest opportunity yet to bring many of them back under its tent. SITE Intelligence GroupPerhaps the most profound instance of this outreach was a lengthy essay by “Adel Amin,” the pen name of a prominent ideologue linked to the Shabaab al-Mujahideen Movement, al-Qaeda’s branch in Somalia and most powerful affiliate. The message, disseminated widely across al-Qaeda-supporting channels and chat groups (many of which are also frequented by pro-ISIS users), demanded that ISIS supporters “return to the road of righteousness” after the Islamic State, in all of its excessive aggression and delusions of destiny, has proven itself a failure. Amin wrote:The situation here is not one in which to gloat. It is a situation for reminding and calling on those who remained in the ranks of al-Baghdadi, to reconsider
 Indeed, we witnessed its back being broken, its leaders getting killed, and its banner falling, and we hope that we can witness whoever remains from its soldiers returning to righteousness.Statements by other ideologues and supporters voiced the same points. A statement by Sirajuddin Zurayqat, a former religious official in the now-defunct al-Qaeda-linked Brigades of Abdullah Azzam in Lebanon, urged: “Now [Baghdadi] is dead and there is not one from the Ummah grieving over him or giving condolences... Therefore, those who were deceived by him should reconsider before it is too late!”These messages echo the same calls heard from Zawahiri and al-Qaeda affiliates over the years calling on ISIS fighters to “repent” and leave the group. Yet despite these new circumstances, ISIS supporters will not easily be moved. Since the summer of 2016, the group’s followers have seen the loss of the major cities Mosul in Iraq and Raqqah in Syria as well as the death of revered ISIS figures like Omar Shishani, Abu Muhammad al-‘Adnani, and others. With the latest setbacks to its leadership, ISIS-linked accounts online already have poured out calls to stay steadfast and have even used Baghdadi’s death as a rallying point to carry out new attacks. Reinforcing this undeterred support is an ISIS military and media machine that has shown no sign of stopping in the last two days. While ISIS has not yet officially acknowledged the death of Baghdadi, it has continued reporting on day-to-day military activity across Iraq, Syria, and the Afghanistan-Pakistan region.ISIS' Yemen Province - AQAP Prisoners as Featured in the video “He Who Starts is More Unjust”SITE Intelligence GroupFurthermore, while al-Qaeda affiliates like the Shabaab serve as powerful representatives of the organization, al-Qaeda Central is weaker than it has ever been. These days, al-Qaeda Central’s role is largely symbolic, limited to leadership messages and other content while steering the big-picture ethos of the organization. Its attempts to bolster its image, already heavily weighed down by a less-than-charismatic leader in Zawahiri, were upended upon the death of Hamza bin Laden, the son of Osama, whom al-Qaeda likely was grooming for an eventual leadership position. These variables considered, al-Qaeda may not be the appealing alternative for jihadists that its supporters want it to seem. So, while some fighters might very well join the ranks of al-Qaeda affiliates in their region, we shouldn't expect to see any drastic migration from ISIS’ ranks into its rival’s.Despite any notions of good-riddance that al-Qaeda and its supporters attach to Baghdadi’s death, and for whatever number of defectors it may win over as a result of Baghdadi’s demise, ISIS is not going anywhere. The barriers between these terrorist organizations have only hardened over the years, fueling deadly clashes and jihadi PR wars. Baghdadi was not the sole barrier keeping ISIS members from joining al-Qaeda, and his death is unlikely to diminish existing disputes.How U.S. Commandos IDed a ‘Mutilated’ Baghdadi So QuicklyRead more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/QcYdXaN_8T4S1wGgb4g_rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/61b52f4bd864d7492e1a1855d59b3e16,What Baghdadi’s Death Means for al Qaeda—and Why It Matters -The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women -US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken -Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial -US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken -Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial -US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken -Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women -He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial -"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" -US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken -Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women -He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial -"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" -US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken -Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women -He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial -"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" -US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken -Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women -He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial -"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" -US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken -Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women -He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial -"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" -US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken -Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women -He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial -"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" -US helicopter raid reported in Syria after trove of Baghdadi intelligence taken,"Tue, 29 Oct 2019 14:29:53 -0400",https://news.yahoo.com/us-helicopter-raid-reported-syria-135329505.html,"The US is believed to have carried out fresh raids on suspected senior Islamic State members in Syria overnight, as officials assessed a treasure trove of intelligence gathered from Isil leader Abu Bakr al-Baghdadi’s final hideout. Helicopters reported to be from the US-led coalition flew late on Monday night into al-Shuyukh village south of Jarablus, around three miles from a raid the previous day that killed Isil’s spokesman Abu Hassan al-Muhajir. Donald Trump, the US president, tweeted on Tuesday that Baghdadi's ""number one replacement"" had been killed. He did not name who that was, but it is thought he was referring to Muhajir. Analysts do not agree that Muhajir would have been Baghdadi's natural successor.  Just confirmed that Abu Bakr al-Baghdadi’s number one replacement has been terminated by American troops. Most likely would have taken the top spot - Now he is also Dead!— Donald J. Trump (@realDonaldTrump) October 29, 2019 A spokesman for the Kurdish-dominated Syrian Democratic Forces (SDF), which is believed to have jointly conducted the mission, said there had been a “successful raid targeting and arresting senior Isil members” on Monday night without elaborating. Local sources reported that the mission lasted no more than 20 minutes and no clashes were heard. “An Iraqi family had moved there in recent times,” Aghiad al-Kheder, co-founder of anti-Isil activist group Sound and Picture, told the Telegraph. “We think two men were taken away by the helicopters.” The men’s identity, or relationship to Baghdadi, was not immediately known. “We think it's related to the Baghdadi raid,” said Mr Kheder, whose group has sources on the ground in the area. ”For sure US found important documents and maybe in the next few days we will see many operations like this.” Pentagon officials told the Washington Post that the documents and other information gathered during the raid on the compound in Barisha in Idlib province close to the Turkish border would prove useful in hunting down remaining senior Isil figures. The officials said two men were also captured alive in the raid who they hoped could provide intelligence about the group. Evidence was growing that Isil had an established smuggling ring, taking senior members from Deir Ezzor in eastern Syria and Qaim in western Iraqi to Idlib. The last moments of Islamic State leader Kurdish spies cultivated a source inside Abu Bakr al-Baghdadi’s inner circle who was able to steal the Islamic State leader’s underwear for DNA sampling and provide a detailed layout of his compound ahead of the US raid, the SDF commander said.  Mazloum Kobani Abdi, the head of the SDF, told NBC his intelligence officers had turned one of Baghdadi’s security advisors who was able to give critical information about the jihadist leader’s house and the tunnels beneath it.  The source took a pair of Baghdadi’s underwear and a blood sample to help US forces confirm who was hiding in the compound. The source was at the site on the night of the raid and was whisked out by US commandos. Polat Can, a senior adviser to the SDF, revealed more detailed information about the group's role in finding Baghdadi.  ""Since 15 May, we have been working together with the CIA,” said Polat Can, a senior adviser to the SDF. He said their surveillance tracked the 48-year-old reclusive leader moving to the village of Barisha in northern Idlib from northern Deir Ezzor in April. Iraqi officials confirmed to the Telegraph that they had arrested members of Baghdadi’s inner circle who were part of the ring and gave up the leader’s location. It is thought fighters with the Islamist group Hurras al-Din, an al-Qaeda-aligned group which is usually hostile to Isil, were also facilitating senior Isil leaders’ movement through rebel-held Idlib. Baghdadi was discovered at the house of one Hurras al-Din commander, Abu Mohamed al-Halabi, who was killed in the raid. Mustafa Bali, SDF’s spokesman, said that Muhajir, described as Baghdadi’s right-hand man, was believed to have been in the area in order to facilitate Baghdadi’s movements in Idlib and possibly on to Turkey. Muhajir was targeted in the village of Ain al-Baydah near Turkish-administered Jarablus with the help of SDF intelligence. Local sources said Muhajir had been travelling in a convoy made up of an oil tanker and a car. The SDF has questioned how Ankara was not aware of the presence of Baghdadi and other senior leaders so close to areas in Syria under its control.",http://l2.yimg.com/uu/api/res/1.2/B6KeUW_UtUzwNngkCtKRHg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_telegraph_258/71d3f202cf4591cbce4db9a6c924df4d,US helicopter raid reported in Syria after trove of Baghdadi intelligence taken -Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden,"Tue, 29 Oct 2019 19:28:12 -0400",https://news.yahoo.com/senior-adviser-jared-kushner-time-232812737.html,"Jared Kushner, senior adviser and son-in-law to President Trump, responded to former Vice President Joe Biden’s claim that he was unqualified to serve in the White House in a recent interview, telling an Israeli journalist that he’s spent his time in the administration addressing problems of Biden’s making.",http://l1.yimg.com/uu/api/res/1.2/gbfkvL8rEZWBtZivoY1qzQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/giraffe-314364-1572391239373.jpg,Senior adviser Jared Kushner: Time in White House spent 'cleaning up the messes' left by Biden -Biden's communion denial highlights faith-politics conflict,"Tue, 29 Oct 2019 19:04:54 -0400",https://news.yahoo.com/bidens-communion-denial-highlights-faith-202010024.html,"A Roman Catholic priest's denial of communion to Joe Biden in South Carolina on Sunday illustrates the fine line presidential candidates must walk as they talk about their faiths: balancing religious values with a campaign that asks them to choose a side in polarizing moral debates. The awkward moment for Biden came during a weekend campaign swing through South Carolina, a pivotal firewall in his hopes to claim the Democratic presidential nomination. The former vice president on Sunday visited St. Anthony Catholic Church in Florence, a midsize city in the state's largely rural northeast.",http://l.yimg.com/uu/api/res/1.2/0eAikis68MbjXlmIWhfCrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/6f42ea748e997cd468168b71c0f2c7e4,Biden's communion denial highlights faith-politics conflict -"In a Kurdish prison, former IS fighters never see the sun","Tue, 29 Oct 2019 13:29:40 -0400",https://news.yahoo.com/kurdish-prison-former-fighters-never-see-sun-170546772.html,"Just months ago, the most hardcore among them were still bent on defending the last sliver of the Islamic State group's ""caliphate"" in Baghouz, Syria. AFP correspondents obtained exclusive access to the site in Hasakeh province. IS fighters were accused of carrying out beheadings, mass executions, rapes, abductions and ethnic cleansing in territory they held across swaths of Iraq and Syria.",http://l.yimg.com/uu/api/res/1.2/swlXvmCIOivBfvHkHX8OUw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/c04e21e89450ec03633d81b49e5a3b956e34ed42.jpg,"In a Kurdish prison, former IS fighters never see the sun" -2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious,"Tue, 29 Oct 2019 21:00:00 -0400",https://news.yahoo.com/2020-toyota-land-cruiser-heritage-010000263.html,,,2020 Toyota Land Cruiser Heritage Edition Is Even More Capable and Luxurious -The Internet Wouldn't Be the Same Without These 11 Women,"Tue, 29 Oct 2019 15:54:00 -0400",https://news.yahoo.com/internet-wouldnt-same-without-11-195400407.html,,,The Internet Wouldn't Be the Same Without These 11 Women -He was undocumented. Now he's exposing detention center abuse,"Tue, 29 Oct 2019 17:49:46 -0400",https://news.yahoo.com/undocumented-now-hes-exposing-detention-100018960.html,"Tom Wong, a UC San Diego professor, has surveyed 600 asylum seekers and says the president’s policy is ‘sending people to die’Tom Wong, a UC San Diego professor, is uncovering the abuse immigrants face in overcrowded detention facilities. Photograph: Erik Jepsen/UC San Diego PublicationsTom K Wong’s world shattered at age 16 in 1998 when his parents told him he was undocumented. The Riverside, California, teenager thought his life was over.Now 37, Wong is one of the prominent scholars in the US on immigration, most recently uncovering abuses inside detention centers in his latest University of California, San Diego research. The political science professor, whose family migrated from Hong Kong when he was two and overstayed their visas, released groundbreaking research on Tuesday on asylum seekers, exposing violence and suffering at the border as the Trump administration is escalating its crackdown on migrants.Wong surveyed more than 600 asylum seekers affected by Donald Trump’s controversial “remain in Mexico” policy, which has forced tens of thousands to return to Mexico while their cases advance. Roughly, 85% reported that immigration detention facilities failed to provide adequate food and water and that they were unable to sleep due to overcrowding, cold temperatures and other conditions. Only 20% reported being able to take care of basic hygiene, such as showering and brushing their teeth.More than half said they faced verbal abuse inside detention, with some saying they also suffered physical abuse. Roughly 25% also had their property seized when taken into detention, including important documents and cash that was not returned to them, he said.A majority said they were forced to return to Mexico without any further investigation of the violence they might face there, which Wong said was a direct violation of the policy.While waiting in Mexico, one out of four said they were threatened with physical violence, and more said they ended up homeless.Asked about Wong’s research, a spokesperson for Immigration and Customs Enforcement (Ice) said the agency “provides safe, humane, clean, professionally run and appropriate conditions of confinement” and access to legal and translation services. A spokesperson for Customs and Border Protection, which also detains migrants, said it “takes allegations of mistreatment of individuals in our facilities seriously” and that employees found to violate standards “will be held accountable”.Wong talked with the Guardian about his non-traditional academic career, the crisis at the border, and how he uses his PhD to fight back. The conversation has been condensed and edited for clarity.Can you tell me what it was like to discover you were undocumented?My parents told me I couldn’t go with my high school basketball team to Canada. Then they told me I couldn’t get a driver’s license. I couldn’t get a job. And there was just a cascade of no, no, no. And finally my parents said it’s not because we don’t want you to do these things, it’s because you can’t. All my hopes and dreams about growing up were literally shattered in a single moment. And it was during a time when there wasn’t the undocumented youth movement, so I wasn’t able to find other students.I grew up in a predominantly Latino neighborhood, and before I found out I was undocumented, California was becoming a ground zero for this emerging anti-immigrant movement. I remember there were policy debates with the white kids on one side, the brown kids on the other, and me feeling like I had little understanding. But everything that was being said negatively toward my Latino classmates actually applied more directly to me.How did you overcome this and become an academic?I barely graduated high school after learning I was undocumented, because at the time I thought, what’s the point? But I got married when I was 19 and I was able to adjust my immigration status. I paid for a summer politics class, and I thought if this professor can make a living teaching, maybe I can do the same.It took me years to realize I bring a different perspective to the study of immigration, politics and policy, that my history is my comparative advantage. It’s a perspective that helps me ask questions that others don’t. It took me a while to talk about my experience of being undocumented, because my parents’ immigration status was still tenuous. But they’re fine now, and I’m able to speak out.What has been most shocking to you about your findings on what happens to asylum seekers?Some findings were simultaneously shocking, but also very expected since we’ve heard anecdotal reports. There were over 200 incidents of verbal abuse, dozens of instances of physical abuse and even property being taken away. I heard of someone losing their life savings.The findings about language access also really stuck out. Individuals are getting instructions about critically important steps in languages that they don’t speak: often Central American asylum speakers who speak an indigenous language by default are given instructions in Spanish. In San Diego, there are a lot of different languages – Asian Indians seeking asylum who speak Hindi were given instructions in English or Spanish. I find it hard to believe that we as a country can’t find a Hindi speaker. This is a basic due process tenet.What do we now know about the conditions people face when they are forced to return to Mexico?So many have experienced or been threatened with physical violence while waiting. Despite the handshake agreement between the United States and Mexico that Mexico is responsible for the humanitarian needs of these asylum seekers being returned, we are putting people in harm’s way by returning them to Mexico.What do you think is most important for the public to understand about the impact of Trump’s policies on asylum seekers right now?This administration wants to see net zero refugee admissions, which we are getting close to. This is a core part of the agenda. It’s not just in disregard of international and domestic law, but it’s in disregard of the fact that so many of the asylum seekers who are being turned away are seeking protection from persecution. It’s an agenda that is blind to the experiences of these families. The inevitable result is that people will be sent to circumstances where they will likely die.What do you hope is the impact of your work and your findings?I used to believe in facts swaying public opinion. But I fear we are in a political moment where the ability to select which facts to consider true is making the work we do less important. Now it may be very difficult to move public opinion when opinions are formed on such a visceral level.But facts still matter. The truth still matters, because what is happening now is the administration is often acting first, and then the courts are litigating later. So even if the public is less and less swayed by the facts on the ground, judges still are.Were there moments in your career where you found academia unwelcoming?It can be strange having lived through something and then hearing about that subject through the perspective of somebody who studies the topic, but doesn’t have that personal connection. But I do quantitative work, and at the end of the day, the data speak much louder than my own personal background.What’s the hardest part of doing academic work that is relevant to urgent policy matters?A lot of academics are just scared about being wrong and being publicly wrong. But I believe in the importance of the work, and that means I need to be confident that I can stand by it. A few years ago I thought my bar was peer review in an academic journal. Now I understand my bar to be that as well as, “Can this pass muster with a federal judge or can this withstand a deposition from attorneys for the Department of Justice?”What effect does the work have on you personally?It’s often miserable. It’s difficult to hear. It’s difficult to interact with people, to see women and little kids who are the ages of my own children in shelters in Mexico, not knowing what’s going on. It is difficult to not internalize it. But I believe in the work. If it’s not me, I’m afraid there won’t be others who step up. Because it’ll be too easy for those others who want to step up to then step out after really understanding how difficult it is to have these conversations.How do you think we can get out of this crisis moment?We have to know our immigration policy past. Every generation gets to decide for itself, whether it embraces diversity through our immigration system or pushes it away by closing our golden door. We are defining for this generation how we are answering the question of what it means to be a nation of immigrants. And we have done that historically. And in some periods in our history, we have closed our doors to immigrants, and in other periods we have opened them again. This is cyclical. It is difficult to live through, but this has been a cyclical part of our immigration policy past.Every four years we as a country get to collectively answer whether or not we still believe in this idea that we are a nation of immigrants. In 2020, we will get to vote.",http://l.yimg.com/uu/api/res/1.2/5mTp_BGJvUvwmexmBzFrEg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/9a0dd9c25d5ea0ca1353ff565b5c5106,He was undocumented. Now he's exposing detention center abuse -8 Hero Dogs That We Don't Deserve,"Tue, 29 Oct 2019 17:51:00 -0400",https://news.yahoo.com/8-hero-dogs-dont-deserve-215100143.html,,,8 Hero Dogs That We Don't Deserve -London police detain jailed former Mexican governor's wife; faces extradition trial,"Tue, 29 Oct 2019 14:05:51 -0400",https://news.yahoo.com/london-police-detain-jailed-former-180551277.html,"Police in London on Tuesday detained Karime Macias, the wife of a disgraced former Mexican state governor who is serving a 9-year jail sentence for money laundering and links to organized crime, a spokesman for Mexico's attorney general's office said. Macias will now face an extradition trial in Britain, the spokesman said. A judge in the Gulf Coast state of Veracruz, where Macias' husband Javier Duarte governed from 2010 to 2016, issued a warrant for her arrest in 2018 for the alleged misuse of over 112 million pesos ($5.9 million) in funds from a social welfare program.",http://l2.yimg.com/uu/api/res/1.2/EclFAkzG_HbggplvD3D..w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/5c4bb46b7d6966fdb858429a7358666b,London police detain jailed former Mexican governor's wife; faces extradition trial -"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records","Tue, 29 Oct 2019 15:56:29 -0400",https://news.yahoo.com/iowa-man-killed-wife-she-193954042.html,"Roy Browning Jr. is charged with murder in relation to the death of JoEllen Browning, who worked for the university for more than four decades.",http://l2.yimg.com/uu/api/res/1.2/G6vTHYita0RpdmE7rjla7Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/0c6031c4ccd8b5cf61a34f3b7efca4cb,"Iowa man killed wife after she found 'problems' with finances, planned meeting with banker: Records" diff --git a/news_feed/news_cash/20191030.csv b/news_feed/news_cash/20191030.csv index 3852b30..e4dd24b 100644 --- a/news_feed/news_cash/20191030.csv +++ b/news_feed/news_cash/20191030.csv @@ -1,1135 +1,3 @@ title,pubDate,link,description,imageLink,imageDescription -UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, -The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, -Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, -The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, -Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, -The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, -Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, -The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, -Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, -The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, -Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, -The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, -Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, -The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, -Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, -The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, -Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, -The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, -Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, -The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, -Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, -The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, -Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, -The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, -Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, -The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, -Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, -The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, -Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, -The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, -Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, -The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, -Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, -The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, -Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, -The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, -Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -UK to hold early election in December,"Wed, 30 Oct 2019 15:38:10 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/C3ryCPK8bkg/brexit-general-election-december-12-boris-johnson-jeremy-corbyn-nd-intl-ldn-vpx.cnn,"The UK will hold an early election on December 12, assuming the House of Lords passes the bill backed by lawmakers in the House of Commons on October 29, 2019. CNN's Max Foster reports.",http://feeds.feedburner.com/~r/rss/edition_world/~4/C3ryCPK8bkg, -The looming UK election is one big gamble for investors,"Wed, 30 Oct 2019 12:47:38 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/ZbUky5IsPgI/index.html,"Brits are being asked to vote in an election that could end years of paralysis caused by Brexit. For investors, there are new risks—whatever the result.",http://feeds.feedburner.com/~r/rss/edition_world/~4/ZbUky5IsPgI, -Plastic milk bottles are being recycled to make roads in South Africa,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -"Elizabeth Warren fans are beginning to ditch the 2020 competition, which is exactly what she needs right now","Wed, 30 Oct 2019 09:56:12 -0400",https://news.yahoo.com/elizabeth-warren-fans-beginning-ditch-123647436.html,"Since the spring, the fraction of voters who say they like Warren and at most one or two other candidates has gone up by 10 percentage points.",http://l1.yimg.com/uu/api/res/1.2/pWZ.MdamT6NwDSjc54qpoA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/76c21804d602d8ded06df7207a9d27ac,"Elizabeth Warren fans are beginning to ditch the 2020 competition, which is exactly what she needs right now" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'","Wed, 30 Oct 2019 17:14:25 -0400",https://news.yahoo.com/joe-biden-describes-health-care-211425414.html,"Biden on Wednesday referred to his health care plan as ""Medicare for all who want it,"" employing the phrase used by rival Pete Buttigieg.",http://l1.yimg.com/uu/api/res/1.2/Sj5K6np5jul6JsE4mN3xMA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4b698050c974ee811746d4918f10c5a8,"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'" -Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation -Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" -"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" -"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it","Wed, 30 Oct 2019 15:26:00 -0400",https://news.yahoo.com/u-government-spent-16-000-192600418.html,"Sen. Joni Ernst (R-Iowa) wants to rob the federal government of what little fun it has left.Every year, the U.S. government spends more than $1.4 billion on its public relations and advertising efforts -- not that Ernst has a problem with all of that. She's just not a fan of the .002 cents each American taxpayer essentially spent last year on federal ""mascots,"" as well as the several thousand more dollars it put toward various trinkets, and is proposing a bill to end it all.Ernst unveiled her SWAG Act, which stands for Stop Wasteful Advertising by the Government, on Tuesday, which would block federal agencies from creating mascots unless it's done via statute. Smokey Bear and Woodsy Owl, for example, would be safe, but Sammy Soil, a literal chunk of soil with eyes created by the USDA's conservation branch, would be rooted out. So would Franklin the Fair Housing Fox, The Green Reaper, and some other mascots Ernst says have been known to make babies cry.A variety of knickknacks are also targeted under Ernst's proposal to ""Bag the Swag:"" the $605,000 spent on coloring books last year; $33,000 on Snuggies; $17,000 on drink koozies; and $16,000 on fidget spinners. Ernst would also ""prohibit the purchase and distribution of 'swag'"" like these, unless they're also authorized by statute, per Ernst's press release.Overall, the federal government spent a total of $250,000 on the mascots last year. The Tax Cuts & Jobs Act, which Ernst voted to enact, is meanwhile expected to cost at least $1.5 trillion.",,"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it" -A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -Researchers: Chicago must overhaul homicide investigations,"Wed, 30 Oct 2019 16:58:30 -0400",https://news.yahoo.com/researchers-chicago-must-overhaul-homicide-194803945.html,"The Chicago Police Department must make significant changes in the way it investigates homicides in a city where more than half of killings go unsolved, a police research group said in a report released Wednesday. The Police Executive Research Forum found problems in the department that included inadequate training; a lack of a detective unit devoted solely to homicide investigations; and a failure to adequately help witnesses or even have a witness protection unit that is critical in persuading people to come forward to help solve crimes. The report shows the clearance rate for homicides in 2017, the most recent year listed, was at 36% for the nation's third-largest city, compared with 84% for New York and 73% for Los Angeles.",http://l.yimg.com/uu/api/res/1.2/27.enbYrr0qTq2xQ9xiLBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1257f48a666ef06156bf37a7ab479b80,Researchers: Chicago must overhaul homicide investigations -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -"Elizabeth Warren fans are beginning to ditch the 2020 competition, which is exactly what she needs right now","Wed, 30 Oct 2019 09:56:12 -0400",https://news.yahoo.com/elizabeth-warren-fans-beginning-ditch-123647436.html,"Since the spring, the fraction of voters who say they like Warren and at most one or two other candidates has gone up by 10 percentage points.",http://l1.yimg.com/uu/api/res/1.2/pWZ.MdamT6NwDSjc54qpoA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/76c21804d602d8ded06df7207a9d27ac,"Elizabeth Warren fans are beginning to ditch the 2020 competition, which is exactly what she needs right now" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'","Wed, 30 Oct 2019 17:14:25 -0400",https://news.yahoo.com/joe-biden-describes-health-care-211425414.html,"Biden on Wednesday referred to his health care plan as ""Medicare for all who want it,"" employing the phrase used by rival Pete Buttigieg.",http://l1.yimg.com/uu/api/res/1.2/Sj5K6np5jul6JsE4mN3xMA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4b698050c974ee811746d4918f10c5a8,"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'" -Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation -Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" -"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" -"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it","Wed, 30 Oct 2019 15:26:00 -0400",https://news.yahoo.com/u-government-spent-16-000-192600418.html,"Sen. Joni Ernst (R-Iowa) wants to rob the federal government of what little fun it has left.Every year, the U.S. government spends more than $1.4 billion on its public relations and advertising efforts -- not that Ernst has a problem with all of that. She's just not a fan of the .002 cents each American taxpayer essentially spent last year on federal ""mascots,"" as well as the several thousand more dollars it put toward various trinkets, and is proposing a bill to end it all.Ernst unveiled her SWAG Act, which stands for Stop Wasteful Advertising by the Government, on Tuesday, which would block federal agencies from creating mascots unless it's done via statute. Smokey Bear and Woodsy Owl, for example, would be safe, but Sammy Soil, a literal chunk of soil with eyes created by the USDA's conservation branch, would be rooted out. So would Franklin the Fair Housing Fox, The Green Reaper, and some other mascots Ernst says have been known to make babies cry.A variety of knickknacks are also targeted under Ernst's proposal to ""Bag the Swag:"" the $605,000 spent on coloring books last year; $33,000 on Snuggies; $17,000 on drink koozies; and $16,000 on fidget spinners. Ernst would also ""prohibit the purchase and distribution of 'swag'"" like these, unless they're also authorized by statute, per Ernst's press release.Overall, the federal government spent a total of $250,000 on the mascots last year. The Tax Cuts & Jobs Act, which Ernst voted to enact, is meanwhile expected to cost at least $1.5 trillion.",,"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it" -A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -Researchers: Chicago must overhaul homicide investigations,"Wed, 30 Oct 2019 16:58:30 -0400",https://news.yahoo.com/researchers-chicago-must-overhaul-homicide-194803945.html,"The Chicago Police Department must make significant changes in the way it investigates homicides in a city where more than half of killings go unsolved, a police research group said in a report released Wednesday. The Police Executive Research Forum found problems in the department that included inadequate training; a lack of a detective unit devoted solely to homicide investigations; and a failure to adequately help witnesses or even have a witness protection unit that is critical in persuading people to come forward to help solve crimes. The report shows the clearance rate for homicides in 2017, the most recent year listed, was at 36% for the nation's third-largest city, compared with 84% for New York and 73% for Los Angeles.",http://l.yimg.com/uu/api/res/1.2/27.enbYrr0qTq2xQ9xiLBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1257f48a666ef06156bf37a7ab479b80,Researchers: Chicago must overhaul homicide investigations -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -"Elizabeth Warren fans are beginning to ditch the 2020 competition, which is exactly what she needs right now","Wed, 30 Oct 2019 09:56:12 -0400",https://news.yahoo.com/elizabeth-warren-fans-beginning-ditch-123647436.html,"Since the spring, the fraction of voters who say they like Warren and at most one or two other candidates has gone up by 10 percentage points.",http://l1.yimg.com/uu/api/res/1.2/pWZ.MdamT6NwDSjc54qpoA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/76c21804d602d8ded06df7207a9d27ac,"Elizabeth Warren fans are beginning to ditch the 2020 competition, which is exactly what she needs right now" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'","Wed, 30 Oct 2019 17:14:25 -0400",https://news.yahoo.com/joe-biden-describes-health-care-211425414.html,"Biden on Wednesday referred to his health care plan as ""Medicare for all who want it,"" employing the phrase used by rival Pete Buttigieg.",http://l1.yimg.com/uu/api/res/1.2/Sj5K6np5jul6JsE4mN3xMA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4b698050c974ee811746d4918f10c5a8,"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'" -Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation -Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" -"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" -"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it","Wed, 30 Oct 2019 15:26:00 -0400",https://news.yahoo.com/u-government-spent-16-000-192600418.html,"Sen. Joni Ernst (R-Iowa) wants to rob the federal government of what little fun it has left.Every year, the U.S. government spends more than $1.4 billion on its public relations and advertising efforts -- not that Ernst has a problem with all of that. She's just not a fan of the .002 cents each American taxpayer essentially spent last year on federal ""mascots,"" as well as the several thousand more dollars it put toward various trinkets, and is proposing a bill to end it all.Ernst unveiled her SWAG Act, which stands for Stop Wasteful Advertising by the Government, on Tuesday, which would block federal agencies from creating mascots unless it's done via statute. Smokey Bear and Woodsy Owl, for example, would be safe, but Sammy Soil, a literal chunk of soil with eyes created by the USDA's conservation branch, would be rooted out. So would Franklin the Fair Housing Fox, The Green Reaper, and some other mascots Ernst says have been known to make babies cry.A variety of knickknacks are also targeted under Ernst's proposal to ""Bag the Swag:"" the $605,000 spent on coloring books last year; $33,000 on Snuggies; $17,000 on drink koozies; and $16,000 on fidget spinners. Ernst would also ""prohibit the purchase and distribution of 'swag'"" like these, unless they're also authorized by statute, per Ernst's press release.Overall, the federal government spent a total of $250,000 on the mascots last year. The Tax Cuts & Jobs Act, which Ernst voted to enact, is meanwhile expected to cost at least $1.5 trillion.",,"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it" -A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -Researchers: Chicago must overhaul homicide investigations,"Wed, 30 Oct 2019 16:58:30 -0400",https://news.yahoo.com/researchers-chicago-must-overhaul-homicide-194803945.html,"The Chicago Police Department must make significant changes in the way it investigates homicides in a city where more than half of killings go unsolved, a police research group said in a report released Wednesday. The Police Executive Research Forum found problems in the department that included inadequate training; a lack of a detective unit devoted solely to homicide investigations; and a failure to adequately help witnesses or even have a witness protection unit that is critical in persuading people to come forward to help solve crimes. The report shows the clearance rate for homicides in 2017, the most recent year listed, was at 36% for the nation's third-largest city, compared with 84% for New York and 73% for Los Angeles.",http://l.yimg.com/uu/api/res/1.2/27.enbYrr0qTq2xQ9xiLBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1257f48a666ef06156bf37a7ab479b80,Researchers: Chicago must overhaul homicide investigations -Former Juul exec alleges company shipped tainted products,"Wed, 30 Oct 2019 15:42:51 -0400",https://news.yahoo.com/former-juul-exec-alleges-company-161657802.html,"A Juul Labs executive who was fired earlier this year is alleging that the vaping company knowingly shipped 1 million tainted nicotine pods to customers. The allegation comes in a lawsuit filed Tuesday by lawyers representing Siddharth Breja, a one-time finance executive at the e-cigarette maker. The suit claims that Breja was terminated after opposing company practices, including shipping the contaminated flavored pods and not listing expiration dates on Juul products.",http://l2.yimg.com/uu/api/res/1.2/ZJe0yLkkCrtXTL7CI9vB3g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1b773f8bc9f5d70267924b0c415b6653,Former Juul exec alleges company shipped tainted products -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"Special Report: In a working-class Hong Kong neighborhood, the protests hit home","Wed, 30 Oct 2019 08:05:30 -0400",https://news.yahoo.com/special-report-working-class-hong-120530805.html,"From the top of Lion Rock, all of Hong Kong reveals itself: the sprawl of the Kowloon Peninsula directly below, the iconic Star Ferry plying the waters of Victoria Harbor, the moneyed heights of Hong Kong island beyond. In the shadow of the revered mountain rise huge monoliths, drab concrete tower blocks far removed from the glittering glass highrises of Hong Kong island's steroidal skyline. Here, in a neighborhood of public housing estates called Wong Tai Sin, seemingly endless stacks of aging windows heave with drying laundry and hum with air conditioners sweating droplets onto the pavement below.",http://l.yimg.com/uu/api/res/1.2/F9Ge8Jbxe9MBf8mEm7JaUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/6360044a87d60947847b5654efb286ca,"Special Report: In a working-class Hong Kong neighborhood, the protests hit home" -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" -California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation -Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -"White House blocked effort to condemn Russia for seizing Ukraine ships, Congress told","Wed, 30 Oct 2019 16:46:00 -0400",https://news.yahoo.com/white-house-blocked-effort-condemn-204600202.html,"State department aide makes revelation in testimony, while Russia envoy nominee John Sullivan grilled at confirmation hearingDonald Trump with Vladimir Putin at the G20 summit in Osaka in June this year. Trump voiced concern over the 2018 capture but did not blame Moscow. Photograph: Mikhail Klimentyev/TassThe White House blocked the US state department from issuing a statement condemning Russia for seizing Ukrainian military vessels, according to a state department official, in the latest example of the strain the Trump administration is under in pursuing conflicting policies towards the two countries.The revelation on Wednesday came from Christopher Anderson, who was a senior aide to the special envoy on Ukraine, Kurt Volker, in November 2018, when Russia fired on and captured three Ukrainian vessels in the Sea of Azov off the Crimean peninsula.“While my colleagues at the state department quickly prepared a statement condemning Russia for its escalation, senior officials in the White House blocked it from being issued,” Anderson said in his prepared remarks to congressional committees holding impeachment hearings. “Ambassador Volker drafted a tweet condemning Russia’s actions, which I posted to his account.”In the face of silence from the White House, the then US ambassador to the UN, Nikki Haley, condemned Russian behaviour, after which the secretary of state, Mike Pompeo, followed suit. Trump voiced concern but did not blame Moscow.The 24 Ukrainian sailors detained in the operation were returned last month as part of a prisoner exchange.Anderson, and his successor in the Ukraine job, Catherine Croft, both testified to House committees on Wednesday about the role played by Trump’s personal lawyer, Rudy Giuliani, in foiling state department efforts to bolster the president, Volodymyr Zelenskiy, in the face of Russian military intervention in eastern Ukraine.In his testimony, Anderson quoted the former national security adviser, John Bolton, as saying: “Giuliani was a key voice with the president on Ukraine which could be an obstacle to increased White House engagement.” On Wednesday, the House committees asked Bolton to testify on 7 November, but it is unclear whether he will attend.Bolton’s former deputy, Charles Kupperman, is currently seeking a court ruling on whether to comply with his congressional subpoena in the face of a White House order not to testify.At the other side of Congress, the nominee to become ambassador to Russia, John Sullivan, faced pointed questions on Wednesday at confirmation hearings in the Senate about Giuliani and the split US policy towards Russia and Ukraine.Sullivan, currently the deputy secretary of state, said he was aware of Giuliani’s role in a campaign against the former US ambassador to Ukraine, Marie Yovanovitch. Asked if he knew Trump’s lawyer was “seeking to smear” Yovanovitch, he replied: “I believe he was, yes.”Sullivan confirmed he had been shown a dossier of material attacking Yovanovitch, saying it had provided by the White House to the state department legal adviser, but he was not aware it had been put together by Giuliani. He said the dossier “didn’t provide to me a basis for taking action against our ambassador”.He said that Pompeo gave Sullivan no explanation for the decision to recall Yovanovitch before the end of her posting, other than she had “lost the confidence of the president”.“As I understand, [Trump] may decide that he doesn’t like my testimony today and he doesn’t want me to go to Russia. The president can decide when he loses confidence in his ambassador – then that person is not going to continue as ambassador,” Sullivan said.Sullivan sought to avoid taking a position on the testimony by several former and current state department officials that the president, through Giuliani, had made a White House meeting and US military aid dependent on the Ukrainian government investigating Trump’s political rivals.“Soliciting investigations into a domestic political opponent – I don’t think that would be in accord with our values,” Sullivan said. But he would not confirm that was what the president had done.Democratic senators signaled that they were prepared to support Sullivan’s nomination as an experienced and respected diplomat, acknowledging the difficult position he was in. But they expressed concern he had not done more to find out what Trump and Giuliani were trying to achieve in Ukraine.The ranking Democrat on the Senate foreign relations committee, Bob Menendez, told Sullivan he had been playing the role of “see no evil, hear no evil, speak no evil.”“You’re going to go to Russia, and you’re going to be saying one set of things based upon your testimony here,” Menendez said. “And we have the president who, in his public statements, is totally aligned differently than what you’re going to be saying.”“Do you understand the incredibly difficult job that you’re going to have as a result of that?” Menendez asked Sullivan.“I would say, senator, you’ve cited the president’s statements. I’d cite the president’s actions,” the nominee replied, listing sanctions the administration had imposed on Russia.",http://l1.yimg.com/uu/api/res/1.2/3dFxIoizaUY49lyZT_4bZQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/e71dc403755334597d5e870705964abd,"White House blocked effort to condemn Russia for seizing Ukraine ships, Congress told" -D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request -Clinton impeachment figure makes return in Trump sequel,"Wed, 30 Oct 2019 23:52:01 -0400",https://news.yahoo.com/clinton-impeachment-figure-makes-return-214101537.html,"Impeachment is back, and so is Bob Livingston. The former congressman from Louisiana who abruptly resigned on the same day the House impeached President Bill Clinton made an improbable return Wednesday as a figure in the sequel — the drive to impeach President Donald Trump. There, in the leaked opening statement of the day's witness was a Foreign Service official's recollection that a ""Robert Livingston"" had repeatedly phoned the National Security Council to urge the firing of the U.S. ambassador to Ukraine, Marie Yovanovitch, over her links to Democrats.",http://l2.yimg.com/uu/api/res/1.2/DRoY3gppqRXhGwtoDudBTg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/eae2d2d5dbf080f230d5c034ac54bbc3,Clinton impeachment figure makes return in Trump sequel -Former Juul exec alleges company shipped tainted products,"Wed, 30 Oct 2019 15:42:51 -0400",https://news.yahoo.com/former-juul-exec-alleges-company-161657802.html,"A Juul Labs executive who was fired earlier this year is alleging that the vaping company knowingly shipped 1 million tainted nicotine pods to customers. The allegation comes in a lawsuit filed Tuesday by lawyers representing Siddharth Breja, a one-time finance executive at the e-cigarette maker. The suit claims that Breja was terminated after opposing company practices, including shipping the contaminated flavored pods and not listing expiration dates on Juul products.",http://l2.yimg.com/uu/api/res/1.2/ZJe0yLkkCrtXTL7CI9vB3g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1b773f8bc9f5d70267924b0c415b6653,Former Juul exec alleges company shipped tainted products -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"Special Report: In a working-class Hong Kong neighborhood, the protests hit home","Wed, 30 Oct 2019 08:05:30 -0400",https://news.yahoo.com/special-report-working-class-hong-120530805.html,"From the top of Lion Rock, all of Hong Kong reveals itself: the sprawl of the Kowloon Peninsula directly below, the iconic Star Ferry plying the waters of Victoria Harbor, the moneyed heights of Hong Kong island beyond. In the shadow of the revered mountain rise huge monoliths, drab concrete tower blocks far removed from the glittering glass highrises of Hong Kong island's steroidal skyline. Here, in a neighborhood of public housing estates called Wong Tai Sin, seemingly endless stacks of aging windows heave with drying laundry and hum with air conditioners sweating droplets onto the pavement below.",http://l.yimg.com/uu/api/res/1.2/F9Ge8Jbxe9MBf8mEm7JaUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/6360044a87d60947847b5654efb286ca,"Special Report: In a working-class Hong Kong neighborhood, the protests hit home" -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" -California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation -Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -"White House blocked effort to condemn Russia for seizing Ukraine ships, Congress told","Wed, 30 Oct 2019 16:46:00 -0400",https://news.yahoo.com/white-house-blocked-effort-condemn-204600202.html,"State department aide makes revelation in testimony, while Russia envoy nominee John Sullivan grilled at confirmation hearingDonald Trump with Vladimir Putin at the G20 summit in Osaka in June this year. Trump voiced concern over the 2018 capture but did not blame Moscow. Photograph: Mikhail Klimentyev/TassThe White House blocked the US state department from issuing a statement condemning Russia for seizing Ukrainian military vessels, according to a state department official, in the latest example of the strain the Trump administration is under in pursuing conflicting policies towards the two countries.The revelation on Wednesday came from Christopher Anderson, who was a senior aide to the special envoy on Ukraine, Kurt Volker, in November 2018, when Russia fired on and captured three Ukrainian vessels in the Sea of Azov off the Crimean peninsula.“While my colleagues at the state department quickly prepared a statement condemning Russia for its escalation, senior officials in the White House blocked it from being issued,” Anderson said in his prepared remarks to congressional committees holding impeachment hearings. “Ambassador Volker drafted a tweet condemning Russia’s actions, which I posted to his account.”In the face of silence from the White House, the then US ambassador to the UN, Nikki Haley, condemned Russian behaviour, after which the secretary of state, Mike Pompeo, followed suit. Trump voiced concern but did not blame Moscow.The 24 Ukrainian sailors detained in the operation were returned last month as part of a prisoner exchange.Anderson, and his successor in the Ukraine job, Catherine Croft, both testified to House committees on Wednesday about the role played by Trump’s personal lawyer, Rudy Giuliani, in foiling state department efforts to bolster the president, Volodymyr Zelenskiy, in the face of Russian military intervention in eastern Ukraine.In his testimony, Anderson quoted the former national security adviser, John Bolton, as saying: “Giuliani was a key voice with the president on Ukraine which could be an obstacle to increased White House engagement.” On Wednesday, the House committees asked Bolton to testify on 7 November, but it is unclear whether he will attend.Bolton’s former deputy, Charles Kupperman, is currently seeking a court ruling on whether to comply with his congressional subpoena in the face of a White House order not to testify.At the other side of Congress, the nominee to become ambassador to Russia, John Sullivan, faced pointed questions on Wednesday at confirmation hearings in the Senate about Giuliani and the split US policy towards Russia and Ukraine.Sullivan, currently the deputy secretary of state, said he was aware of Giuliani’s role in a campaign against the former US ambassador to Ukraine, Marie Yovanovitch. Asked if he knew Trump’s lawyer was “seeking to smear” Yovanovitch, he replied: “I believe he was, yes.”Sullivan confirmed he had been shown a dossier of material attacking Yovanovitch, saying it had provided by the White House to the state department legal adviser, but he was not aware it had been put together by Giuliani. He said the dossier “didn’t provide to me a basis for taking action against our ambassador”.He said that Pompeo gave Sullivan no explanation for the decision to recall Yovanovitch before the end of her posting, other than she had “lost the confidence of the president”.“As I understand, [Trump] may decide that he doesn’t like my testimony today and he doesn’t want me to go to Russia. The president can decide when he loses confidence in his ambassador – then that person is not going to continue as ambassador,” Sullivan said.Sullivan sought to avoid taking a position on the testimony by several former and current state department officials that the president, through Giuliani, had made a White House meeting and US military aid dependent on the Ukrainian government investigating Trump’s political rivals.“Soliciting investigations into a domestic political opponent – I don’t think that would be in accord with our values,” Sullivan said. But he would not confirm that was what the president had done.Democratic senators signaled that they were prepared to support Sullivan’s nomination as an experienced and respected diplomat, acknowledging the difficult position he was in. But they expressed concern he had not done more to find out what Trump and Giuliani were trying to achieve in Ukraine.The ranking Democrat on the Senate foreign relations committee, Bob Menendez, told Sullivan he had been playing the role of “see no evil, hear no evil, speak no evil.”“You’re going to go to Russia, and you’re going to be saying one set of things based upon your testimony here,” Menendez said. “And we have the president who, in his public statements, is totally aligned differently than what you’re going to be saying.”“Do you understand the incredibly difficult job that you’re going to have as a result of that?” Menendez asked Sullivan.“I would say, senator, you’ve cited the president’s statements. I’d cite the president’s actions,” the nominee replied, listing sanctions the administration had imposed on Russia.",http://l1.yimg.com/uu/api/res/1.2/3dFxIoizaUY49lyZT_4bZQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/e71dc403755334597d5e870705964abd,"White House blocked effort to condemn Russia for seizing Ukraine ships, Congress told" -D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request -Clinton impeachment figure makes return in Trump sequel,"Wed, 30 Oct 2019 23:52:01 -0400",https://news.yahoo.com/clinton-impeachment-figure-makes-return-214101537.html,"Impeachment is back, and so is Bob Livingston. The former congressman from Louisiana who abruptly resigned on the same day the House impeached President Bill Clinton made an improbable return Wednesday as a figure in the sequel — the drive to impeach President Donald Trump. There, in the leaked opening statement of the day's witness was a Foreign Service official's recollection that a ""Robert Livingston"" had repeatedly phoned the National Security Council to urge the firing of the U.S. ambassador to Ukraine, Marie Yovanovitch, over her links to Democrats.",http://l2.yimg.com/uu/api/res/1.2/DRoY3gppqRXhGwtoDudBTg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/eae2d2d5dbf080f230d5c034ac54bbc3,Clinton impeachment figure makes return in Trump sequel -"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'","Wed, 30 Oct 2019 17:14:25 -0400",https://news.yahoo.com/joe-biden-describes-health-care-211425414.html,"Biden on Wednesday referred to his health care plan as ""Medicare for all who want it,"" employing the phrase used by rival Pete Buttigieg.",http://l1.yimg.com/uu/api/res/1.2/Sj5K6np5jul6JsE4mN3xMA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4b698050c974ee811746d4918f10c5a8,"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'" -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -"Special Report: In a working-class Hong Kong neighborhood, the protests hit home","Wed, 30 Oct 2019 08:05:30 -0400",https://news.yahoo.com/special-report-working-class-hong-120530805.html,"From the top of Lion Rock, all of Hong Kong reveals itself: the sprawl of the Kowloon Peninsula directly below, the iconic Star Ferry plying the waters of Victoria Harbor, the moneyed heights of Hong Kong island beyond. In the shadow of the revered mountain rise huge monoliths, drab concrete tower blocks far removed from the glittering glass highrises of Hong Kong island's steroidal skyline. Here, in a neighborhood of public housing estates called Wong Tai Sin, seemingly endless stacks of aging windows heave with drying laundry and hum with air conditioners sweating droplets onto the pavement below.",http://l.yimg.com/uu/api/res/1.2/F9Ge8Jbxe9MBf8mEm7JaUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/6360044a87d60947847b5654efb286ca,"Special Report: In a working-class Hong Kong neighborhood, the protests hit home" -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" -Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? -"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -"Elizabeth Warren fans are beginning to ditch the 2020 competition, which is exactly what she needs right now","Wed, 30 Oct 2019 09:56:12 -0400",https://news.yahoo.com/elizabeth-warren-fans-beginning-ditch-123647436.html,"Since the spring, the fraction of voters who say they like Warren and at most one or two other candidates has gone up by 10 percentage points.",http://l1.yimg.com/uu/api/res/1.2/pWZ.MdamT6NwDSjc54qpoA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/76c21804d602d8ded06df7207a9d27ac,"Elizabeth Warren fans are beginning to ditch the 2020 competition, which is exactly what she needs right now" -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -"3 killed, 9 wounded in shooting at party in California home","Wed, 30 Oct 2019 18:19:39 -0400",https://news.yahoo.com/3-killed-9-injured-shooting-082755536.html,"A gunman who opened fire from an alley into a party killed three people and wounded nine others in California before fleeing in a vehicle, police said Wednesday. Police Chief Robert Luna called the shooter a coward and urged residents to come forward with any information that might lead to an arrest. Three men were killed, and seven women and two men were taken to hospitals with gunshot wounds.",http://l1.yimg.com/uu/api/res/1.2/4loESatU5y24ZYWRLOpuzA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/83a373c832dba305692e2824e24defae,"3 killed, 9 wounded in shooting at party in California home" -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers -D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers -D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers -D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers -D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers -D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers -Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames -"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'","Wed, 30 Oct 2019 17:14:25 -0400",https://news.yahoo.com/joe-biden-describes-health-care-211425414.html,"Biden on Wednesday referred to his health care plan as ""Medicare for all who want it,"" employing the phrase used by rival Pete Buttigieg.",http://l1.yimg.com/uu/api/res/1.2/Sj5K6np5jul6JsE4mN3xMA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4b698050c974ee811746d4918f10c5a8,"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'" -Congress Considers Delaying Spending Talks Until After Impeachment,"Wed, 30 Oct 2019 15:47:15 -0400",https://news.yahoo.com/congress-considers-delaying-spending-talks-194715001.html,"(Bloomberg) -- Democrats and Republicans in Congress are deliberating whether to push the deadline to fund the government into early February to avoid having a budget fight amid an impeachment inquiry into President Donald Trump that’s set to stretch at least into December.That would mean enacting another stopgap spending bill to avert a government shutdown when the current short-term funding runs out Nov. 21, assuming the two sides don’t be able to agree on a budget plan by then.Senate Appropriations Chairman Richard Shelby, a Republican, has floated the idea of a stopgap spending bill until February, though he said Wednesday he hasn’t discussed it with Majority Leader Mitch McConnell.“I think that’s a pretty realistic assessment of where we are today,” said Shelby of Alabama. “Miracles do happen but I haven’t seen a lot of them around here.”House Democrats on the Appropriations Committee are also weighing a February stopgap, lawmakers and aides say.Trump’s insistence on funding a wall on the southern border is again hanging over funding decisions in Congress, as Democrats and Republicans negotiate 12 annual spending bills. An impasse over the border wall led to a 35-day partial government shutdown early this year. After it ended, Trump used emergency powers to raid military construction accounts to fund the wall.Wall MoneyWhen Shelby floated the idea of a stopgap bill until February, he said impeachment would “take the oxygen” out of the Capitol. But Democratic Representative David Price, a member of the Appropriations panel, said Trump’s continued demand for money to build a border wall is the problem.“Shelby can blame impeachment all he wants but it is their allocations that is standing in the way,” Price of North Carolina said. “If not for this wall issue we could get this done tomorrow.”House Majority Leader Steny Hoyer and Senate Majority Leader Mitch McConnell are said to oppose a long stopgap in order to try to force a spending deal sooner. Hoyer wrote to McConnell on Tuesday to urge immediate talks on spending.Republicans want to replenish the $7 billion in military funds that Trump redirected toward construction of the border wall, and Democrats say they won’t refill those accounts without provisions to guard against future shifting of funds. Senate Republicans also are seeking $5 billion in new money for the wall.This already delicate negotiation is further complicated by the impeachment process that has enraged Trump and heightened partisan acrimony on Capitol Hill.Senate Minority Leader Charles Schumer said Tuesday he was worried that Trump could use the Nov. 21 deadline to provoke a shutdown to distract from impeachment.”I’m increasingly worried that President Trump will want to shut down the government again because of impeachment,” Schumer said. “He always likes to create diversions.”Shutdown FearsRepublicans and Democrats in Congress say they don’t want another government shutdown, although they also said that when government funding ran out at the end of 2018. The Senate and the House, both led by the GOP at the time, were on the brink of a deal in December when Trump persuaded House Republicans to hold out for wall funding.The House has already passed its 12 appropriations bills, and the Senate this week is on track to pass a package of four spending bills that would fund Interior and Environment; Commerce, Justice and Science; Transportation, Housing and Urban Development; and Agriculture. This Senate measure would need to be reconciled with the House versions to become law.The most important thing for spending committee leaders is to agree on the topline allocation of spending for all government agencies. Senate Democrats say they’ll block debate on the annual Defense spending bill, the top GOP priority, until they reach a deal on total allocations.“This week will bring a litmus test: are Washington Democrats so concerned by impeachment that they cannot even fund our men and women in uniform?” McConnell said Tuesday. “It’s hard to imagine a more basic legislative responsibility than funding the Department of Defense.”\--With assistance from Jack Fitzpatrick.To contact the reporter on this story: Erik Wasson in Washington at ewasson@bloomberg.netTo contact the editors responsible for this story: Joe Sobczyk at jsobczyk@bloomberg.net, Laurie AssĂ©oFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/M_gBixqUTKtNLood1HKdOQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/40fd63c8d0df90d81de4e3a310a07c72,Congress Considers Delaying Spending Talks Until After Impeachment -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Wow The Crowd In This 1968 Ford Mustang GT500 Tribute,"Wed, 30 Oct 2019 20:27:34 -0400",https://news.yahoo.com/wow-crowd-1968-ford-mustang-002734185.html,"Painted in Highland Green, this Shelby tribute even has a bit of Bullitt attitude.There is no denying that a classic Shelby GT500 is ready to steal the show no matter where it goes, but many enthusiasts can't afford a legit example. While Shelby purists may turn their noses at the idea, classic car enthusiasts will appreciate this 1968 Ford Mustang Shelby GT500 Tribute car. Streetside Classics is offering the opportunity to own this incredible tribute to the iconic Shelby GT500.Cloaked in the iconic Highland Green, a color made famous by Steve McQueen in Bullitt, the body of this GT500 tribute is in fantastic shape. Covering the engine bay is a fiberglass hood with dual scoops, and the front features an extended nose. Other Shelby upgrades include the scoops on the quarter panel and the trunk spoiler. Even more, iconic white Shelby stripes were painted over the top, and it was given matching decals on the rocker panels. Further adding to the Shelby attitude is the driving lights embedded in the grille, Cobra badges, and correct-style 15-inch wheels that sit on all four corners. Black vinyl in excellent shape protects the roof.Under the hood sits a 289cui V8 engine with power shifted to the rear wheels via a C4 three-speed automatic transmission. Even more, the engine is adorned with Cobra ribbed valve covers and a matching long air topper. Providing additional oomph and rumble is the glasspack-style dual exhaust that plays in symphony with the small block. Navigating the turns comes easy thanks to power steering.Continuing on with the green theme, peek inside to a clean Ivy Gold two-tone interior with Deluxe trim. A wood-rimmed steering wheel protrudes from the dash, and a cup holder can be found in the center console. If you have been eyeing a classic Shelby GT500 but can't justify the price, check out this 1968 Shelby GT500 tribute car. With its exterior hue, you can say that the car even has a little bit of Bullitt attitude coursing through its veins. This beautiful classic is being offered by Streetside Classics and is listed at $31,995, but feel free to make an offer here. Read More... * Drop The Top In This Restored 1966 Chevy Corvette Roadster * Break Necks In This Low-Mileage 1987 Buick GNX",http://l.yimg.com/uu/api/res/1.2/BK70CmOSL_bmJnaqCCuROA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/0b24f133366f71d7b4c0e913056aa0b9,Wow The Crowd In This 1968 Ford Mustang GT500 Tribute -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers -D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -Al Gore Is Opening a New Front In the War On Climate Change,"Wed, 30 Oct 2019 04:00:02 -0400",https://news.yahoo.com/al-gore-makes-climate-case-080002432.html,"(Bloomberg) -- Al Gore’s 400-acre farm is located in Carthage, a small Tennessee town where the former vice president and senator traditionally kicked off his political campaigns. During his second act as a famous environmentalist, the farm became the site of a training program for aspiring climate activists, and more recently, an experiment in what Gore said is the world’s most realistic chance at averting climate catastrophe.Topsoil, the foot or so of ground underneath your feet, is responsible for almost all food production on Earth. It also stores more than three times as much carbon as forests. Today, agriculture is a net carbon emitter, contributing about 14% of all greenhouse gas emissions, but unlike power generation or automobiles, it can be turned into a net absorber, pulling carbon out of the atmosphere.If farming practices are changed through the use of cover crops, low-tilling and tree-planting, Gore said, agriculture conglomerates and family farmers alike could theoretically make their farms more productive while fighting global warming. Those changes can also replenish nutrients to the world’s soil, of which 33% has already been depleted.A virtuous circle if there ever was one—and one that’s already attracting attention from farmers, consumers and food companies.Gore, 71, is preaching the benefits of so-called carbon farming, a form of regenerative farming, at a time when U.S. President Donald Trump has been trying to roll back regulations meant to limit greenhouse gas emissions. And while science-based climate policy has been a prominent topic on the Democratic presidential campaign trail, it’s not always seen as a priority.Gore, who these days is more of a denim-wearing advocate than reserved technocrat, remains undeterred. His laboratory has been the farm where his parents once raised livestock and grew tobacco. Earlier this month, he invited 450 soil experts—farmers, scientists, chefs, food experts, entrepreneurs and investors—to join him there to discuss how to scale regenerative farming into something that might actually slow climate change.“We’ve waited so long to start to address the climate crisis,” Gore told those gathered. “We will need to both reduce emissions drastically and take as much carbon out of the atmosphere as we possibly can.”Unlike 2006, when Gore’s film “An Inconvenient Truth” was met with skepticism in some quarters, 13 years of intensifying storms, catastrophic floods and unprecedented droughts and wildfires have persuaded more Americans that there’s a very big problem. The goal now, Gore said, is to get people to start taking carbon farming seriously.When it comes to actually tackling what may soon become an existential crisis, the numbers are daunting. Trillions of dollars are needed to adapt civilization to the near-term consequences of climate change while tens of trillions of dollars are needed to slow its advance. But Gore said there are still too few plans to reverse global warming that don’t rely on technology that has yet to be developed.“Planting trees and sequestering carbon in soil are likely to remain the two most effective approaches,” Gore said in an interview at his Carthage farm. “There’s already some indication that farms that operate this way are more resilient in the face of climate extremes.”Carbon dioxide levels in the atmosphere are at their highest in 3 million years. Oceans, the biggest carbon sinks of all, are acidifying because they hold too much of it. Plant life, which absorbs CO2 through photosynthesis, can sink carbon into the soil. Regenerative farming helps speed that along—with the added benefit of producing more nutrient-rich soil.Rattan Lal, a professor of soil physics and director of Ohio State University’s Carbon Management and Sequestration Center, is the key scientist behind Gore’s thinking. Lal served on the Intergovernmental Panel on Climate Change (IPCC) when it shared a Nobel Prize with Gore in 2007, and was awarded the Japan Prize this year for his work on soil carbon sequestration.The world’s population currently uses more than a third of the planet’s surface for agriculture, according to the United Nations. In the U.S., close to 40% of land is farmland. Soil used for agriculture has degraded and eroded over centuries of use, losing between 20% and 60% of its original carbon content, according to the IPCC. Lal’s research shows that soil can sequester carbon at rates as high as 2.6 gigatons each year. An aggressive, global combination of tree planting and increased vegetation along with soil carbon sequestration, he said, has the “technical potential” to absorb 157 parts per million of CO2.With about 415 parts per million in the air today—a huge jump compared with a few decades ago—removing even a fraction of that could slow the advance of global warming.“There is virtually no analysis that shows the feasibility of doing any of this at scale.”Gore is realistic when it comes to the fraught politics of climate change and the policies that would need to align to make that potential possible. Moreover, carbon farming is a nascent concept in the U.S.: California has a growing program and Hawaii’s plan to become carbon neutral by 2045 includes a carbon farming framework. U.S. Representative Alexandria Ocasio-Cortez’s “Green New Deal,” supported in some form by several Democratic presidential candidates, simply encourages farmers to improve soil health.But even without any legislation on the horizon, big agriculture is starting to pay attention.Eco-conscious shoppers are beginning to look for food farmed with regenerative practices, just as they do for organic products and sustainable packaging. General Mills set a goal in August to have 1 million acres in its supply chain transitioned to regenerative agriculture by 2030, and a group of companies including Danone North America and Unilever’s Ben & Jerry’s have been working on a certification for food farmed with regenerative practices.Not everyone is convinced its time has come, though. Timothy Searchinger, a research scholar at Princeton University who has studied the issue, said scalable carbon farming is still very much a pipe dream.“There is an unbelievable amount of scientific uncertainty,” Searchinger said. “There is virtually no analysis that shows the feasibility of doing any of this at scale.”Indeed, while there is some evidence that soil carbon can be rebuilt on degraded land, the technique requires putting so much nitrogen in the soil that the technique may not be viable in some places, he said. Additionally, many regenerative farmers discover that after a few years of no-till farming, their yields begin to fall. Searchinger said better options for achieving natural carbon sequestration at scale would be to focus on reducing deforestation and preserving peat lands.“It’s not the most useful thing to do in agriculture,” Searchinger said. While carbon farming would be helpful, he said the bigger agricultural climate issue is methane from livestock, something that might be addressed with feed additives.At its most basic, carbon farming is about leaving the ground alone. Simply plowing and tilling fields can disturb soil’s natural structure, releasing stored carbon into the atmosphere and displacing insects and microbes necessary for healthy soil. No-till farming creates fields that are better at acting like a sponge to absorb both water and carbon.Gore’s home state Tennessee leads the U.S. in no-till farming, with more than 78% of its farmland managed that way, versus 37% for the U.S., according to the Soil Health Institute. On his farm, some 10,000 trees have been planted to increase soil carbon. Small groups of cattle and sheep are rotated to graze in different areas, adding natural fertilizer to soils. The farm uses compost and cover crops to keep the soil healthy, rather than for their profit potential.Regenerative farming has more costs than traditional methods, especially upfront. Only about 108 million acres cross the U.S. are using some regenerative practices, according to Project Drawdown, a climate research group (as of 2012, the government said there were 914 million acres of farmland in America). The group estimates it would cost about $57 billion to convert another 1 billion acres by 2050, but that some 23.15 gigatons of CO2 could be sucked out of the atmosphere by doing so.While not a solution to the climate crisis by itself, Lal told the audience at Gore’s farm that regenerative farming could be, at the very least, “a bridge to the future.”Planting the same cash crops each year without rotating them tends to deplete nutrients from soil. Regenerative farming, meanwhile, results in more nutrient dense-crops. But most farmers don’t have any incentive to change what they are doing, because staples like wheat, rice, soybeans and corn are usually covered by federally-subsidized U.S. crop insurance—a $100 billion industry which currently guarantees that more than 290 million acres of U.S. farmland deliver returns for farmers regardless of the harvest.“For most people, this is a very new idea,” said Will Rodger, director of policy communications at the American Farm Bureau Federation. “We’re certainly aware that carbon can be stored in the soil, but farmers have very narrow margins. Many of our members are looking very closely at it, but the question is how to make it a business.”The U.S. Farmers & Ranchers Alliance proposed earlier this year that lenders find more creative financing models to help farmers employ regenerative practices. A study published this month in Nature Climate Change found that deploying land sector strategies like carbon farming, as well as food waste reduction and increasing plant-based diets, could turn farming into a net absorber of carbon as soon as 2050.Gore predicts that popular adoption of regenerative farming will someday take hold the same way residential solar and electric vehicles have caught on. “Farmers are doing this because they think it’s better for them,” Gore said. “I look for signs of hope.”To contact the author of this story: Emily Chasan in New York at echasan1@bloomberg.netTo contact the editor responsible for this story: David Rovella at drovella@bloomberg.netFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l2.yimg.com/uu/api/res/1.2/fZi_K4S7kgMEpAkFCdczMg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/2f9b9b938ffcd69bb8fc199a89eedafd,Al Gore Is Opening a New Front In the War On Climate Change -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'","Wed, 30 Oct 2019 17:14:25 -0400",https://news.yahoo.com/joe-biden-describes-health-care-211425414.html,"Biden on Wednesday referred to his health care plan as ""Medicare for all who want it,"" employing the phrase used by rival Pete Buttigieg.",http://l1.yimg.com/uu/api/res/1.2/Sj5K6np5jul6JsE4mN3xMA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4b698050c974ee811746d4918f10c5a8,"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'" -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -NATO demands Russia 'withdraw all troops' from Ukraine,"Wed, 30 Oct 2019 16:23:06 -0400",https://news.yahoo.com/nato-demands-russia-withdraw-troops-ukraine-175324192.html,"NATO chief Jens Stoltenberg on Wednesday welcomed a pullback by the Ukrainian army and Moscow-backed separatists in eastern Ukraine, but reiterated calls for Russia to ""withdraw all their troops"". The move was a precondition for the first face-to-face talks between Russian President Vladimir Putin and his Ukrainian counterpart Volodymyr Zelensky. ""We welcome all efforts to reduce tensions, to withdraw forces and to make sure that we have a peaceful solution to the conflict,"" Stoltenberg said in the Ukrainian port city of Odessa, praising Zelensky's ""renewed effort"".",http://l2.yimg.com/uu/api/res/1.2/dPse.sHie6jpKLvU.2Og6w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/ccb9925c6600d68b3a9aec4b4cd5c966654df4ec.jpg,NATO demands Russia 'withdraw all troops' from Ukraine -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -California businessman gets prison for U.S. college admissions scam,"Wed, 30 Oct 2019 18:25:54 -0400",https://news.yahoo.com/california-businessman-gets-prison-u-222554860.html,"A former California business executive was sentenced on Wednesday to two months in prison for taking part in a vast U.S. college admissions fraud scheme by paying $250,000 to secure his son's admission to the University of Southern California. Federal prosecutors in Boston had sought nine months in prison for Jeffrey Bizzack, who they said sought to secure his son's admission through a ""side door"" by agreeing to bribe a USC official to designate him as a fake athletic recruit. U.S. District Judge Douglas Woodlock said prosecutors lacked evidence to support some of their arguments for a higher sentence.",http://l.yimg.com/uu/api/res/1.2/lEh4n6Nu9abRf1foukH6Gw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/298583d99339cc271df308ca177e42f4,California businessman gets prison for U.S. college admissions scam -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'","Wed, 30 Oct 2019 17:14:25 -0400",https://news.yahoo.com/joe-biden-describes-health-care-211425414.html,"Biden on Wednesday referred to his health care plan as ""Medicare for all who want it,"" employing the phrase used by rival Pete Buttigieg.",http://l1.yimg.com/uu/api/res/1.2/Sj5K6np5jul6JsE4mN3xMA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4b698050c974ee811746d4918f10c5a8,"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'" -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -NATO demands Russia 'withdraw all troops' from Ukraine,"Wed, 30 Oct 2019 16:23:06 -0400",https://news.yahoo.com/nato-demands-russia-withdraw-troops-ukraine-175324192.html,"NATO chief Jens Stoltenberg on Wednesday welcomed a pullback by the Ukrainian army and Moscow-backed separatists in eastern Ukraine, but reiterated calls for Russia to ""withdraw all their troops"". The move was a precondition for the first face-to-face talks between Russian President Vladimir Putin and his Ukrainian counterpart Volodymyr Zelensky. ""We welcome all efforts to reduce tensions, to withdraw forces and to make sure that we have a peaceful solution to the conflict,"" Stoltenberg said in the Ukrainian port city of Odessa, praising Zelensky's ""renewed effort"".",http://l2.yimg.com/uu/api/res/1.2/dPse.sHie6jpKLvU.2Og6w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/ccb9925c6600d68b3a9aec4b4cd5c966654df4ec.jpg,NATO demands Russia 'withdraw all troops' from Ukraine -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -California businessman gets prison for U.S. college admissions scam,"Wed, 30 Oct 2019 18:25:54 -0400",https://news.yahoo.com/california-businessman-gets-prison-u-222554860.html,"A former California business executive was sentenced on Wednesday to two months in prison for taking part in a vast U.S. college admissions fraud scheme by paying $250,000 to secure his son's admission to the University of Southern California. Federal prosecutors in Boston had sought nine months in prison for Jeffrey Bizzack, who they said sought to secure his son's admission through a ""side door"" by agreeing to bribe a USC official to designate him as a fake athletic recruit. U.S. District Judge Douglas Woodlock said prosecutors lacked evidence to support some of their arguments for a higher sentence.",http://l.yimg.com/uu/api/res/1.2/lEh4n6Nu9abRf1foukH6Gw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/298583d99339cc271df308ca177e42f4,California businessman gets prison for U.S. college admissions scam -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -How Boris Johnson’s Brexit Election Gamble Could Backfire,"Wed, 30 Oct 2019 01:00:00 -0400",https://news.yahoo.com/boris-johnsons-brexit-election-gamble-050000800.html,"(Bloomberg) -- Sign up to our Brexit Bulletin, follow us @Brexit and subscribe to our podcast.Boris Johnson has succeeded, finally, in getting Parliament to give him the general election that he wants. The polls have him far ahead: YouGov had 36% of voters backing his Conservatives, with Labour in second place on 23%. But his move is still a risky one. Here are the ways it could go wrong.Polling ErrorRemember the 2015 U.K. election shock? And the 2016 Brexit referendum shock? And the 2017 U.K. election shock? A common feature of all of them was a failure of the polling companies to properly detect a shift in public opinion.At the very time that we want faster, better data from them, pollsters face unprecedented challenges. In particular, they struggle to reach younger, more mobile voters, those who might be expected to oppose Johnson’s Conservatives and Brexit.Votes vs SeatsEven if the pollsters get close with the total vote share, translating it into the thing that matters, seats in Parliament, is very hard. Votes can pile up unevenly. In 2017, the Tories won 42% of the vote, but 49% of the seats. Labour won 40% of both.Tory FatigueThe Conservatives have now been in power for nine years, and even Cabinet ministers acknowledge privately that the last three of those years haven’t been a great advertisement for Tory government. The party’s recent discovery of unity behind Johnson might not outweigh years of infighting and indecision.Hard TimesIt’s not just that the Tories have been in power for a long time, they’ve been in power for a long time while people haven’t got any richer. According to the Office for National Statistics, median weekly earnings are still 2.9% below their 2008 level. That’s not a great backdrop for an election.Brexit FactorJohnson’s slogan, “Get Brexit Done,” feels like an appealing message to a public weary of months of knife-edge votes and reverses. But it’s also an admission that this government has had a single project since 2016, has failed to deliver on it, and everyone is sick of waiting.Johnson hopes to turn that frustration into votes for Conservatives. But voters could conclude that Brexit was a Conservative project -- a Johnson project, in fact -- and that if they’re tired of it, they need someone different in charge.The failure to complete the U.K.’s withdrawal from the EU also leaves the door open to Nigel Farage’s Brexit Party to take votes away from the Tories. If Farage does well enough to stop Tories winning key seats, Corbyn could ultimately benefit.Money’s TightJohnson’s other message is that by getting Brexit dealt with, he will be able to focus on spending money on things people do like, such as schools and hospitals. This too is an admission of failure.After nine years of spending restrictions, Britain’s public services are squeezed: libraries are closing, knife crime is rising, numbers of rough sleepers are increasing. Labour will be very happy to fight an election on the question of who is better at spending money on things.Character FlawsThe Conservatives are pinning a lot of their hopes on Johnson’s undoubted fame. Unlike his predecessor Theresa May, he enjoys campaigning. But that fame brings a problem. Most people have made up their minds what they think of Johnson, and a lot of them don’t like him.According to YouGov, 47% of people have a negative opinion of him, against 33% who have a positive one. Labour is pushing hard on Johnson’s tendency to go back on promises.The Conservatives, too, plan to make much of their opponent’s character: Labour leader Jeremy Corbyn has even worse scores than Johnson: 58% negative, against 23% positive. But at the last election, Corbyn was able to shrug off criticism of his past statements.Mixed MessagesJohnson risks losing a whole load of Conservative seats in places that don’t like Brexit too: southern England, and Scotland. According to Joe Twyman of Deltapoll, that leaves the prime minister trying to pull off a difficult trick.“He needs to convince Remain-leaning Conservative voters to forget Brexit and vote Conservative,” Twyman said. “At the same time convince Leave-leaning Labour voters to hold their noses about him and vote for Brexit.”Right Votes, Wrong PlacesA different version of the same problem is that the Conservatives’ strongly pro-Brexit message helps them do very well in areas they already hold. According to Twyman, of the 50 most “Leave” areas, 24 are already Conservative. Extra votes there don’t help.Accidents HappenConservative politicians are fond of saying that they’ll never run a campaign as bad as the one May ran in 2017. In particular they point to her announcement of a plan to fund care for the elderly from the value of their houses.But things can go wrong. The 2017 campaign was interrupted by terrorist attacks. Johnson could find himself unexpectedly tested. He may be just about the only politician known to everyone by his first name, but he’s also the only one to have had to apologize to an entire city -- Liverpool, in 2004.His team have been keen to keep him away from difficult questions. In the intense scrutiny of an election campaign, that will be harder than ever.To contact the reporter on this story: Robert Hutton in London at rhutton1@bloomberg.netTo contact the editors responsible for this story: Tim Ross at tross54@bloomberg.net, Flavia Krause-JacksonFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/G.m4foP92eZpAREH7SCSgw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/d711bd17f3966d5753a56a0bf2e986dd,How Boris Johnson’s Brexit Election Gamble Could Backfire -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -California businessman gets prison for U.S. college admissions scam,"Wed, 30 Oct 2019 18:25:54 -0400",https://news.yahoo.com/california-businessman-gets-prison-u-222554860.html,"A former California business executive was sentenced on Wednesday to two months in prison for taking part in a vast U.S. college admissions fraud scheme by paying $250,000 to secure his son's admission to the University of Southern California. Federal prosecutors in Boston had sought nine months in prison for Jeffrey Bizzack, who they said sought to secure his son's admission through a ""side door"" by agreeing to bribe a USC official to designate him as a fake athletic recruit. U.S. District Judge Douglas Woodlock said prosecutors lacked evidence to support some of their arguments for a higher sentence.",http://l.yimg.com/uu/api/res/1.2/lEh4n6Nu9abRf1foukH6Gw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/298583d99339cc271df308ca177e42f4,California businessman gets prison for U.S. college admissions scam -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -NATO demands Russia 'withdraw all troops' from Ukraine,"Wed, 30 Oct 2019 16:23:06 -0400",https://news.yahoo.com/nato-demands-russia-withdraw-troops-ukraine-175324192.html,"NATO chief Jens Stoltenberg on Wednesday welcomed a pullback by the Ukrainian army and Moscow-backed separatists in eastern Ukraine, but reiterated calls for Russia to ""withdraw all their troops"". The move was a precondition for the first face-to-face talks between Russian President Vladimir Putin and his Ukrainian counterpart Volodymyr Zelensky. ""We welcome all efforts to reduce tensions, to withdraw forces and to make sure that we have a peaceful solution to the conflict,"" Stoltenberg said in the Ukrainian port city of Odessa, praising Zelensky's ""renewed effort"".",http://l2.yimg.com/uu/api/res/1.2/dPse.sHie6jpKLvU.2Og6w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/ccb9925c6600d68b3a9aec4b4cd5c966654df4ec.jpg,NATO demands Russia 'withdraw all troops' from Ukraine -D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request -"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" -The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. -Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'","Wed, 30 Oct 2019 17:14:25 -0400",https://news.yahoo.com/joe-biden-describes-health-care-211425414.html,"Biden on Wednesday referred to his health care plan as ""Medicare for all who want it,"" employing the phrase used by rival Pete Buttigieg.",http://l1.yimg.com/uu/api/res/1.2/Sj5K6np5jul6JsE4mN3xMA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4b698050c974ee811746d4918f10c5a8,"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'" -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -NATO demands Russia 'withdraw all troops' from Ukraine,"Wed, 30 Oct 2019 16:23:06 -0400",https://news.yahoo.com/nato-demands-russia-withdraw-troops-ukraine-175324192.html,"NATO chief Jens Stoltenberg on Wednesday welcomed a pullback by the Ukrainian army and Moscow-backed separatists in eastern Ukraine, but reiterated calls for Russia to ""withdraw all their troops"". The move was a precondition for the first face-to-face talks between Russian President Vladimir Putin and his Ukrainian counterpart Volodymyr Zelensky. ""We welcome all efforts to reduce tensions, to withdraw forces and to make sure that we have a peaceful solution to the conflict,"" Stoltenberg said in the Ukrainian port city of Odessa, praising Zelensky's ""renewed effort"".",http://l2.yimg.com/uu/api/res/1.2/dPse.sHie6jpKLvU.2Og6w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/ccb9925c6600d68b3a9aec4b4cd5c966654df4ec.jpg,NATO demands Russia 'withdraw all troops' from Ukraine -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -California businessman gets prison for U.S. college admissions scam,"Wed, 30 Oct 2019 18:25:54 -0400",https://news.yahoo.com/california-businessman-gets-prison-u-222554860.html,"A former California business executive was sentenced on Wednesday to two months in prison for taking part in a vast U.S. college admissions fraud scheme by paying $250,000 to secure his son's admission to the University of Southern California. Federal prosecutors in Boston had sought nine months in prison for Jeffrey Bizzack, who they said sought to secure his son's admission through a ""side door"" by agreeing to bribe a USC official to designate him as a fake athletic recruit. U.S. District Judge Douglas Woodlock said prosecutors lacked evidence to support some of their arguments for a higher sentence.",http://l.yimg.com/uu/api/res/1.2/lEh4n6Nu9abRf1foukH6Gw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/298583d99339cc271df308ca177e42f4,California businessman gets prison for U.S. college admissions scam -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'","Wed, 30 Oct 2019 17:14:25 -0400",https://news.yahoo.com/joe-biden-describes-health-care-211425414.html,"Biden on Wednesday referred to his health care plan as ""Medicare for all who want it,"" employing the phrase used by rival Pete Buttigieg.",http://l1.yimg.com/uu/api/res/1.2/Sj5K6np5jul6JsE4mN3xMA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4b698050c974ee811746d4918f10c5a8,"Joe Biden describes his health care plan using Pete Buttigieg's term, 'Medicare for all who want it'" -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -NATO demands Russia 'withdraw all troops' from Ukraine,"Wed, 30 Oct 2019 16:23:06 -0400",https://news.yahoo.com/nato-demands-russia-withdraw-troops-ukraine-175324192.html,"NATO chief Jens Stoltenberg on Wednesday welcomed a pullback by the Ukrainian army and Moscow-backed separatists in eastern Ukraine, but reiterated calls for Russia to ""withdraw all their troops"". The move was a precondition for the first face-to-face talks between Russian President Vladimir Putin and his Ukrainian counterpart Volodymyr Zelensky. ""We welcome all efforts to reduce tensions, to withdraw forces and to make sure that we have a peaceful solution to the conflict,"" Stoltenberg said in the Ukrainian port city of Odessa, praising Zelensky's ""renewed effort"".",http://l2.yimg.com/uu/api/res/1.2/dPse.sHie6jpKLvU.2Og6w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/ccb9925c6600d68b3a9aec4b4cd5c966654df4ec.jpg,NATO demands Russia 'withdraw all troops' from Ukraine -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -California businessman gets prison for U.S. college admissions scam,"Wed, 30 Oct 2019 18:25:54 -0400",https://news.yahoo.com/california-businessman-gets-prison-u-222554860.html,"A former California business executive was sentenced on Wednesday to two months in prison for taking part in a vast U.S. college admissions fraud scheme by paying $250,000 to secure his son's admission to the University of Southern California. Federal prosecutors in Boston had sought nine months in prison for Jeffrey Bizzack, who they said sought to secure his son's admission through a ""side door"" by agreeing to bribe a USC official to designate him as a fake athletic recruit. U.S. District Judge Douglas Woodlock said prosecutors lacked evidence to support some of their arguments for a higher sentence.",http://l.yimg.com/uu/api/res/1.2/lEh4n6Nu9abRf1foukH6Gw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/298583d99339cc271df308ca177e42f4,California businessman gets prison for U.S. college admissions scam -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation -D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request -"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -Pompeo says U.S. must confront China's Communist Party,"Wed, 30 Oct 2019 21:33:54 -0400",https://news.yahoo.com/pompeo-says-u-must-confront-013354610.html,"U.S. Secretary of State Mike Pompeo on Wednesday stepped up recent U.S. rhetoric targeting China's ruling Communist Party, saying it was focused on international domination and needed to be confronted. Pompeo made the remarks even as the Trump administration said it still expected to sign the first phase of deal to end a damaging trade war with Beijing next month, despite Chile's withdrawal on Wednesday as the host of an APEC summit where U.S. officials had hoped this would happen.",,Pompeo says U.S. must confront China's Communist Party -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -Chicago teachers OK tentative agreement but strike goes on,"Wed, 30 Oct 2019 23:25:16 -0400",https://news.yahoo.com/chicago-teachers-strike-cancels-classes-152827771.html,"Chicago's teachers union voted to approve a tentative contract agreement with city officials Wednesday but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Mayor Lori Lightfoot said Wednesday night that she would not meet that demand. Lightfoot accused the union's top leadership of ""moving the goal posts"" by raising the issue Wednesday rather than in a face-to-face meeting with her on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/lOph.Gw4KRH.g3RNWANvkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/c42eb1c83977ab65c5450381a3e516ab,Chicago teachers OK tentative agreement but strike goes on -California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer,"Wed, 30 Oct 2019 18:24:50 -0400",https://news.yahoo.com/actor-cuba-gooding-jr-charged-222450369.html,"Actor Cuba Gooding Jr, already facing a criminal case over accusations he touched a woman's breasts in a bar and pinched another's buttocks in a nightclub, has been charged in connection with a third woman, his lawyer said on Wednesday. Gooding is expected to appear in court Thursday and plead not guilty to the charges, according to his lawyer, Mark Heller. The charges are not yet public, and a spokeswoman for Manhattan District Attorney Cyrus Vance declined to provide details.",http://l2.yimg.com/uu/api/res/1.2/_mlgfRPFaCxz19SCv.rJTQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/b5800472ccbf51bec8cf4e6e1f98463c,Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer -NATO demands Russia 'withdraw all troops' from Ukraine,"Wed, 30 Oct 2019 16:23:06 -0400",https://news.yahoo.com/nato-demands-russia-withdraw-troops-ukraine-175324192.html,"NATO chief Jens Stoltenberg on Wednesday welcomed a pullback by the Ukrainian army and Moscow-backed separatists in eastern Ukraine, but reiterated calls for Russia to ""withdraw all their troops"". The move was a precondition for the first face-to-face talks between Russian President Vladimir Putin and his Ukrainian counterpart Volodymyr Zelensky. ""We welcome all efforts to reduce tensions, to withdraw forces and to make sure that we have a peaceful solution to the conflict,"" Stoltenberg said in the Ukrainian port city of Odessa, praising Zelensky's ""renewed effort"".",http://l2.yimg.com/uu/api/res/1.2/dPse.sHie6jpKLvU.2Og6w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/ccb9925c6600d68b3a9aec4b4cd5c966654df4ec.jpg,NATO demands Russia 'withdraw all troops' from Ukraine -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation -D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request -"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -Pompeo says U.S. must confront China's Communist Party,"Wed, 30 Oct 2019 21:33:54 -0400",https://news.yahoo.com/pompeo-says-u-must-confront-013354610.html,"U.S. Secretary of State Mike Pompeo on Wednesday stepped up recent U.S. rhetoric targeting China's ruling Communist Party, saying it was focused on international domination and needed to be confronted. Pompeo made the remarks even as the Trump administration said it still expected to sign the first phase of deal to end a damaging trade war with Beijing next month, despite Chile's withdrawal on Wednesday as the host of an APEC summit where U.S. officials had hoped this would happen.",,Pompeo says U.S. must confront China's Communist Party -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -Chicago teachers OK tentative agreement but strike goes on,"Wed, 30 Oct 2019 23:25:16 -0400",https://news.yahoo.com/chicago-teachers-strike-cancels-classes-152827771.html,"Chicago's teachers union voted to approve a tentative contract agreement with city officials Wednesday but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Mayor Lori Lightfoot said Wednesday night that she would not meet that demand. Lightfoot accused the union's top leadership of ""moving the goal posts"" by raising the issue Wednesday rather than in a face-to-face meeting with her on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/lOph.Gw4KRH.g3RNWANvkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/c42eb1c83977ab65c5450381a3e516ab,Chicago teachers OK tentative agreement but strike goes on -California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer,"Wed, 30 Oct 2019 18:24:50 -0400",https://news.yahoo.com/actor-cuba-gooding-jr-charged-222450369.html,"Actor Cuba Gooding Jr, already facing a criminal case over accusations he touched a woman's breasts in a bar and pinched another's buttocks in a nightclub, has been charged in connection with a third woman, his lawyer said on Wednesday. Gooding is expected to appear in court Thursday and plead not guilty to the charges, according to his lawyer, Mark Heller. The charges are not yet public, and a spokeswoman for Manhattan District Attorney Cyrus Vance declined to provide details.",http://l2.yimg.com/uu/api/res/1.2/_mlgfRPFaCxz19SCv.rJTQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/b5800472ccbf51bec8cf4e6e1f98463c,Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer -NATO demands Russia 'withdraw all troops' from Ukraine,"Wed, 30 Oct 2019 16:23:06 -0400",https://news.yahoo.com/nato-demands-russia-withdraw-troops-ukraine-175324192.html,"NATO chief Jens Stoltenberg on Wednesday welcomed a pullback by the Ukrainian army and Moscow-backed separatists in eastern Ukraine, but reiterated calls for Russia to ""withdraw all their troops"". The move was a precondition for the first face-to-face talks between Russian President Vladimir Putin and his Ukrainian counterpart Volodymyr Zelensky. ""We welcome all efforts to reduce tensions, to withdraw forces and to make sure that we have a peaceful solution to the conflict,"" Stoltenberg said in the Ukrainian port city of Odessa, praising Zelensky's ""renewed effort"".",http://l2.yimg.com/uu/api/res/1.2/dPse.sHie6jpKLvU.2Og6w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/ccb9925c6600d68b3a9aec4b4cd5c966654df4ec.jpg,NATO demands Russia 'withdraw all troops' from Ukraine -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation -D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request -"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -Pompeo says U.S. must confront China's Communist Party,"Wed, 30 Oct 2019 21:33:54 -0400",https://news.yahoo.com/pompeo-says-u-must-confront-013354610.html,"U.S. Secretary of State Mike Pompeo on Wednesday stepped up recent U.S. rhetoric targeting China's ruling Communist Party, saying it was focused on international domination and needed to be confronted. Pompeo made the remarks even as the Trump administration said it still expected to sign the first phase of deal to end a damaging trade war with Beijing next month, despite Chile's withdrawal on Wednesday as the host of an APEC summit where U.S. officials had hoped this would happen.",,Pompeo says U.S. must confront China's Communist Party -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -Chicago teachers OK tentative agreement but strike goes on,"Wed, 30 Oct 2019 23:25:16 -0400",https://news.yahoo.com/chicago-teachers-strike-cancels-classes-152827771.html,"Chicago's teachers union voted to approve a tentative contract agreement with city officials Wednesday but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Mayor Lori Lightfoot said Wednesday night that she would not meet that demand. Lightfoot accused the union's top leadership of ""moving the goal posts"" by raising the issue Wednesday rather than in a face-to-face meeting with her on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/lOph.Gw4KRH.g3RNWANvkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/c42eb1c83977ab65c5450381a3e516ab,Chicago teachers OK tentative agreement but strike goes on -California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer,"Wed, 30 Oct 2019 18:24:50 -0400",https://news.yahoo.com/actor-cuba-gooding-jr-charged-222450369.html,"Actor Cuba Gooding Jr, already facing a criminal case over accusations he touched a woman's breasts in a bar and pinched another's buttocks in a nightclub, has been charged in connection with a third woman, his lawyer said on Wednesday. Gooding is expected to appear in court Thursday and plead not guilty to the charges, according to his lawyer, Mark Heller. The charges are not yet public, and a spokeswoman for Manhattan District Attorney Cyrus Vance declined to provide details.",http://l2.yimg.com/uu/api/res/1.2/_mlgfRPFaCxz19SCv.rJTQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/b5800472ccbf51bec8cf4e6e1f98463c,Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer -NATO demands Russia 'withdraw all troops' from Ukraine,"Wed, 30 Oct 2019 16:23:06 -0400",https://news.yahoo.com/nato-demands-russia-withdraw-troops-ukraine-175324192.html,"NATO chief Jens Stoltenberg on Wednesday welcomed a pullback by the Ukrainian army and Moscow-backed separatists in eastern Ukraine, but reiterated calls for Russia to ""withdraw all their troops"". The move was a precondition for the first face-to-face talks between Russian President Vladimir Putin and his Ukrainian counterpart Volodymyr Zelensky. ""We welcome all efforts to reduce tensions, to withdraw forces and to make sure that we have a peaceful solution to the conflict,"" Stoltenberg said in the Ukrainian port city of Odessa, praising Zelensky's ""renewed effort"".",http://l2.yimg.com/uu/api/res/1.2/dPse.sHie6jpKLvU.2Og6w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/ccb9925c6600d68b3a9aec4b4cd5c966654df4ec.jpg,NATO demands Russia 'withdraw all troops' from Ukraine -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -The Democrats' impeachment process has a credibility problem,"Wed, 30 Oct 2019 10:02:29 -0400",https://news.yahoo.com/democrats-impeachment-process-credibility-problem-140229011.html,"Has the House impeachment inquiry hit a brick wall on credibility? Or have House Democrats decided to call Republicans' bluff?After weeks of refusing to hold a full floor vote to formally launch an impeachment inquiry, House Speaker Nancy Pelosi (D-Calif.) abruptly changed position this week. A Thursday vote will set out more clear parameters for the ongoing investigation without explicitly declaring an impeachment inquiry, but it's far from clear whether this changes anything appreciably -- or if there's anything to change with the current focus on Ukraine policy as the predicate for impeachment.The bill that emerged Tuesday afternoon appears to directly address some of the key criticisms of House Republicans, who grew so frustrated with the closed hearings that they staged an intervention of sorts last week, breaching the Secure Compartmented Information Facility (SCIF) in which the depositions were being taken under the control of House Intelligence Chair Adam Schiff. That set off worries among Democrats that further such demonstrations could obstruct and drag out the impeachment process into next year and into the election cycle, something Pelosi would like to avoid.Democrats' claims that the demonstrations were a GOP stunt had some basis in fact. Some of the Republicans who participated actually did have access to the hearings as members of three committees participating in the testimony. Contrary to some claims made at the time, Republican committee members had the opportunity to ask questions of the witnesses during the deposition and were very engaged in that process.Still, other Republican complaints had started to take their toll. Republicans wanted Democrats to hold a full House vote to openly authorize an impeachment inquiry, rather than use committees to conduct an ad hoc investigation while House Democratic leadership publicly acknowledged that impeachment was the goal. They also wanted open hearings with the witnesses being subpoenaed, which Democrats refused to grant in order to keep witnesses from knowing preceding testimony. Democrats pointed out that the House rules allowed for closed-session depositions and compared them to secret grand-jury proceedings, but Republicans countered that grand juries don't leak characterizations of the testimony at pressers, as Schiff and other Democrats had been doing all along.That has made the proceedings seem as though they're being conducted by a kangaroo court, which has allowed Trump to argue that the process is corrupt. The only way to gain traction for this process is to give it more credibility -- and to call the bluff of Republicans and Trump. Thus, Pelosi introduced a bill that will allow Republicans to call their own witnesses and to access all deposition materials, under the same rules used in the Bill Clinton impeachment process in 1998. The bill also establishes a mechanism for the full release of testimony, which Republicans have repeatedly demanded.This presents an immediate tactical risk for the White House. One of Pelosi's motives is to parry Trump's refusal to cooperate based on a lack of formal approval by the full House. A federal court ruled against Trump last week, but Trump can tie that question up for months on appeals, time that Pelosi perceives she does not have. A full House vote approving these rules not only means that Republicans no longer have due-process complaints (at least going forward), it signals to courts that the full House has indeed given tacit approval for an impeachment inquiry in providing a relatively fair structure for it.However, Pelosi is more worried about a different court: the court of public opinion. That perception that the impeachment process is unfair has hampered Democrats' ability to generate the kind of public support they need to take this to a full vote on impeachment without risking the gains Pelosi made in the 2018 midterms. National polling showing support for impeachment gaining momentum overall, but the response from the American public looks quite different on a state-by-state basis. A poll by The New York Times and Siena College last week showed that voters in six critical swing states with the closest margins in 2016 generally oppose impeachment, 43/53. Those numbers would suggest that continuing on this impeachment process might produce a Pyrrhic victory for Democrats in 2020, one that could produce a historic win for an already-impeached president for the first time ever.To fix that problem, and to force the Senate to take this more seriously, Pelosi has to revamp the process to provide at least the appearance of fairness. However, it's not likely to matter in the end. Impeachment is only the first step in the removal process, and in this case it's likely to be the last step Democrats can successfully take.The Republicans control the Senate, but their majority matters less than the fact that Democrats don't have a supermajority. If Democrats had uncovered a truly serious crime in this probe, that would likely convince at least 20 Senate Republicans to make Mike Pence president. The core problem is that Ukraine-Gate doesn't appear to involve an explicit statutory crime at all, but instead an alleged abuse of authority to gain political advantage over former Vice President Joe Biden. The House can decide what constitutes an impeachable offense, but the Senate decides whether it's even worthy of a full trial, let alone a removal.An impeachment without a removal will, in the end, look a lot like a political campaign no matter how much Pelosi improves the process. Voters will ask themselves why Democrats spent all year obsessed with impeachment under varying rationalizations and then chose the one issue on which they could almost guarantee no success in removal. Pelosi may win a tactical victory with this upcoming vote, but it's not going to solve the big strategic issue awaiting Democrats at the end of this process.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,The Democrats' impeachment process has a credibility problem -Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer,"Wed, 30 Oct 2019 18:24:50 -0400",https://news.yahoo.com/actor-cuba-gooding-jr-charged-222450369.html,"Actor Cuba Gooding Jr, already facing a criminal case over accusations he touched a woman's breasts in a bar and pinched another's buttocks in a nightclub, has been charged in connection with a third woman, his lawyer said on Wednesday. Gooding is expected to appear in court Thursday and plead not guilty to the charges, according to his lawyer, Mark Heller. The charges are not yet public, and a spokeswoman for Manhattan District Attorney Cyrus Vance declined to provide details.",http://l2.yimg.com/uu/api/res/1.2/_mlgfRPFaCxz19SCv.rJTQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/b5800472ccbf51bec8cf4e6e1f98463c,Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Chicago teachers OK tentative agreement but strike goes on,"Wed, 30 Oct 2019 23:25:16 -0400",https://news.yahoo.com/chicago-teachers-strike-cancels-classes-152827771.html,"Chicago's teachers union voted to approve a tentative contract agreement with city officials Wednesday but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Mayor Lori Lightfoot said Wednesday night that she would not meet that demand. Lightfoot accused the union's top leadership of ""moving the goal posts"" by raising the issue Wednesday rather than in a face-to-face meeting with her on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/lOph.Gw4KRH.g3RNWANvkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/c42eb1c83977ab65c5450381a3e516ab,Chicago teachers OK tentative agreement but strike goes on -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?),"Wed, 30 Oct 2019 17:00:00 -0400",https://news.yahoo.com/marines-very-own-anti-ship-210000136.html,Should China be worried?,http://l2.yimg.com/uu/api/res/1.2/8kAnuL45wTHBUJLeuWbK0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/4e5a8d517912a6283e199c4f2d34539a,The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?) -Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? -"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" -South Africans Face Tax Increases as Revenue Collection Lags,"Wed, 30 Oct 2019 08:05:09 -0400",https://news.yahoo.com/south-africans-face-tax-increases-120509942.html,"(Bloomberg) -- Explore what’s moving the global economy in the new season of the Stephanomics podcast. Subscribe via Pocket Cast or iTunes.South Africans have to brace for higher taxes next year as revenue collection falls short of estimates.Bailouts for the state-owned power utility, broadcaster, airlines and arms maker – together with a failure to curb the public-sector wage bill and stem fiscal leakages – have sapped the state’s resources. Africa’s most-industrialized economy hasn’t expanded by more than 2% annually since 2013, damping confidence and resulting in the longest business-cycle downturn since 1945, weighing on tax income.The National Treasury increased the value-added tax rate last year for the time in more than two decades and has also raised taxes for high-income earners to plug the widening budget deficit. That has added to the strain on consumption spending and economic growth.“Significant tax increases over the past several years leave only moderate scope to boost tax revenue at this time,” the Treasury said in its medium-term budget policy statement released Wednesday in Cape Town. Additional tax measures are under consideration to raise an extra 10 billion rand ($683 million) in fiscal 2021, it said, without giving details.“Given the fiscal position we find ourselves in, all tax options need to be on the table,” said Chris Axelson, chief director for economic tax analysis in the Treasury.The South African Revenue Service will probably collect 1.37 trillion rand in the 2020 fiscal year, 52.5 billion rand less than forecast in February, the Treasury said. The shortfall will be 84 billion rand in 2021 and 114.7 billion rand in 2022, it said.The shortfall reflects “job losses, lower wage settlements and smaller bonuses reducing personal income-tax collection,” the Treasury said. Reduced profitability in a difficult trading environment meant lower-than-expected corporate income-tax collections, while weak household consumption moderated the increase in revenue from value-added tax, it said.The February budget included 7 billion rand from the sale of non-core assets by March, but “there is a risk these sales will not be completed by the end of the financial year,” the Treasury said.The government insists that citizens of Gauteng – which houses the financial hub of Johannesburg and the capital, Pretoria – must pay for electronically administered tolls to use the province’s roads, and will strengthen compliance measures.In July, Transport Minister Fikile Mbalula said South Africa is considering the options available on scrapping the tolls.“Not paying your tolls has already led to our roads deteriorating,” Finance Minister Tito Mboweni said in a prepared copy if his speech. “We have been unable to maintain the network. I urge the nation to please pay your bills.”\--With assistance from Zoe Schneeweiss.To contact the reporter on this story: Ana Monteiro in Johannesburg at amonteiro4@bloomberg.netTo contact the editors responsible for this story: Rene Vollgraaff at rvollgraaff@bloomberg.net, Robert BrandFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/uvN2DnzYlF.TzezBAQo5Gg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8a4780226c720322234fa6fbc613c5e6,South Africans Face Tax Increases as Revenue Collection Lags -The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation -D.C. Panel Halts Release of Mueller Documents at DOJ’s Request,"Wed, 30 Oct 2019 09:02:23 -0400",https://news.yahoo.com/d-c-panel-halts-release-130223421.html,"The D.C. Circuit for the U.S. Court of Appeals on Tuesday night halted the scheduled release of grand-jury materials from Robert Mueller’s investigation, just hours ahead of the scheduled distribution.The decision came after a federal judge ruled last Friday that the Justice Department must release unredacted material from the original Mueller investigation, a move House Democrats have clamored for in the midst of the ongoing impeachment inquiry.Judge Beryl Howell, an Obama appointee, wrote that the committee “has shown that it needs the grand jury material referenced and cited in the Mueller Report to avoid a possible injustice in the impeachment inquiry.”The DOJ contested Howell’s ruling and issued an emergency appeal, saying a quick release “threatens an irreparable loss of grand-jury secrecy before this court even has a chance to act on the Department’s stay motion.” The government also noted that Howell gave no explanation for her seemingly arbitrary deadline of Wednesday, which was not offered by Democrats.The three-judge D.C. panel — made up of judges appointed by Barack Obama — decided on an administrative stay in order “to give the court sufficient opportunity to consider the emergency motion for stay pending appeal and should not be construed in any way as a ruling on the merits of that motion,” according to the decision.The debate centers around the validity of redactions to a grand-jury deposition, which is usually kept secret. The DOJ argues that materials in the report are squarely protected by federal evidence regulations, while others point to ongoing criminal matters involved, including a probe by Connecticut U.S attorney John Durham the origins of the investigation. House Democrats counter that secrecy rules do not apply to the impeachment inquiry, which is a judicial proceeding.",http://l.yimg.com/uu/api/res/1.2/w_heEZnk1hoDQSTVWqjVSg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/5cc14c5df368875c0317fc539bb227fd,D.C. Panel Halts Release of Mueller Documents at DOJ’s Request -"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -Pompeo says U.S. must confront China's Communist Party,"Wed, 30 Oct 2019 21:33:54 -0400",https://news.yahoo.com/pompeo-says-u-must-confront-013354610.html,"U.S. Secretary of State Mike Pompeo on Wednesday stepped up recent U.S. rhetoric targeting China's ruling Communist Party, saying it was focused on international domination and needed to be confronted. Pompeo made the remarks even as the Trump administration said it still expected to sign the first phase of deal to end a damaging trade war with Beijing next month, despite Chile's withdrawal on Wednesday as the host of an APEC summit where U.S. officials had hoped this would happen.",,Pompeo says U.S. must confront China's Communist Party -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -Chicago teachers OK tentative agreement but strike goes on,"Wed, 30 Oct 2019 23:25:16 -0400",https://news.yahoo.com/chicago-teachers-strike-cancels-classes-152827771.html,"Chicago's teachers union voted to approve a tentative contract agreement with city officials Wednesday but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Mayor Lori Lightfoot said Wednesday night that she would not meet that demand. Lightfoot accused the union's top leadership of ""moving the goal posts"" by raising the issue Wednesday rather than in a face-to-face meeting with her on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/lOph.Gw4KRH.g3RNWANvkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/c42eb1c83977ab65c5450381a3e516ab,Chicago teachers OK tentative agreement but strike goes on -California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer,"Wed, 30 Oct 2019 18:24:50 -0400",https://news.yahoo.com/actor-cuba-gooding-jr-charged-222450369.html,"Actor Cuba Gooding Jr, already facing a criminal case over accusations he touched a woman's breasts in a bar and pinched another's buttocks in a nightclub, has been charged in connection with a third woman, his lawyer said on Wednesday. Gooding is expected to appear in court Thursday and plead not guilty to the charges, according to his lawyer, Mark Heller. The charges are not yet public, and a spokeswoman for Manhattan District Attorney Cyrus Vance declined to provide details.",http://l2.yimg.com/uu/api/res/1.2/_mlgfRPFaCxz19SCv.rJTQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/b5800472ccbf51bec8cf4e6e1f98463c,Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer -NATO demands Russia 'withdraw all troops' from Ukraine,"Wed, 30 Oct 2019 16:23:06 -0400",https://news.yahoo.com/nato-demands-russia-withdraw-troops-ukraine-175324192.html,"NATO chief Jens Stoltenberg on Wednesday welcomed a pullback by the Ukrainian army and Moscow-backed separatists in eastern Ukraine, but reiterated calls for Russia to ""withdraw all their troops"". The move was a precondition for the first face-to-face talks between Russian President Vladimir Putin and his Ukrainian counterpart Volodymyr Zelensky. ""We welcome all efforts to reduce tensions, to withdraw forces and to make sure that we have a peaceful solution to the conflict,"" Stoltenberg said in the Ukrainian port city of Odessa, praising Zelensky's ""renewed effort"".",http://l2.yimg.com/uu/api/res/1.2/dPse.sHie6jpKLvU.2Og6w--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/ccb9925c6600d68b3a9aec4b4cd5c966654df4ec.jpg,NATO demands Russia 'withdraw all troops' from Ukraine -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -The Democrats' impeachment process has a credibility problem,"Wed, 30 Oct 2019 10:02:29 -0400",https://news.yahoo.com/democrats-impeachment-process-credibility-problem-140229011.html,"Has the House impeachment inquiry hit a brick wall on credibility? Or have House Democrats decided to call Republicans' bluff?After weeks of refusing to hold a full floor vote to formally launch an impeachment inquiry, House Speaker Nancy Pelosi (D-Calif.) abruptly changed position this week. A Thursday vote will set out more clear parameters for the ongoing investigation without explicitly declaring an impeachment inquiry, but it's far from clear whether this changes anything appreciably -- or if there's anything to change with the current focus on Ukraine policy as the predicate for impeachment.The bill that emerged Tuesday afternoon appears to directly address some of the key criticisms of House Republicans, who grew so frustrated with the closed hearings that they staged an intervention of sorts last week, breaching the Secure Compartmented Information Facility (SCIF) in which the depositions were being taken under the control of House Intelligence Chair Adam Schiff. That set off worries among Democrats that further such demonstrations could obstruct and drag out the impeachment process into next year and into the election cycle, something Pelosi would like to avoid.Democrats' claims that the demonstrations were a GOP stunt had some basis in fact. Some of the Republicans who participated actually did have access to the hearings as members of three committees participating in the testimony. Contrary to some claims made at the time, Republican committee members had the opportunity to ask questions of the witnesses during the deposition and were very engaged in that process.Still, other Republican complaints had started to take their toll. Republicans wanted Democrats to hold a full House vote to openly authorize an impeachment inquiry, rather than use committees to conduct an ad hoc investigation while House Democratic leadership publicly acknowledged that impeachment was the goal. They also wanted open hearings with the witnesses being subpoenaed, which Democrats refused to grant in order to keep witnesses from knowing preceding testimony. Democrats pointed out that the House rules allowed for closed-session depositions and compared them to secret grand-jury proceedings, but Republicans countered that grand juries don't leak characterizations of the testimony at pressers, as Schiff and other Democrats had been doing all along.That has made the proceedings seem as though they're being conducted by a kangaroo court, which has allowed Trump to argue that the process is corrupt. The only way to gain traction for this process is to give it more credibility -- and to call the bluff of Republicans and Trump. Thus, Pelosi introduced a bill that will allow Republicans to call their own witnesses and to access all deposition materials, under the same rules used in the Bill Clinton impeachment process in 1998. The bill also establishes a mechanism for the full release of testimony, which Republicans have repeatedly demanded.This presents an immediate tactical risk for the White House. One of Pelosi's motives is to parry Trump's refusal to cooperate based on a lack of formal approval by the full House. A federal court ruled against Trump last week, but Trump can tie that question up for months on appeals, time that Pelosi perceives she does not have. A full House vote approving these rules not only means that Republicans no longer have due-process complaints (at least going forward), it signals to courts that the full House has indeed given tacit approval for an impeachment inquiry in providing a relatively fair structure for it.However, Pelosi is more worried about a different court: the court of public opinion. That perception that the impeachment process is unfair has hampered Democrats' ability to generate the kind of public support they need to take this to a full vote on impeachment without risking the gains Pelosi made in the 2018 midterms. National polling showing support for impeachment gaining momentum overall, but the response from the American public looks quite different on a state-by-state basis. A poll by The New York Times and Siena College last week showed that voters in six critical swing states with the closest margins in 2016 generally oppose impeachment, 43/53. Those numbers would suggest that continuing on this impeachment process might produce a Pyrrhic victory for Democrats in 2020, one that could produce a historic win for an already-impeached president for the first time ever.To fix that problem, and to force the Senate to take this more seriously, Pelosi has to revamp the process to provide at least the appearance of fairness. However, it's not likely to matter in the end. Impeachment is only the first step in the removal process, and in this case it's likely to be the last step Democrats can successfully take.The Republicans control the Senate, but their majority matters less than the fact that Democrats don't have a supermajority. If Democrats had uncovered a truly serious crime in this probe, that would likely convince at least 20 Senate Republicans to make Mike Pence president. The core problem is that Ukraine-Gate doesn't appear to involve an explicit statutory crime at all, but instead an alleged abuse of authority to gain political advantage over former Vice President Joe Biden. The House can decide what constitutes an impeachable offense, but the Senate decides whether it's even worthy of a full trial, let alone a removal.An impeachment without a removal will, in the end, look a lot like a political campaign no matter how much Pelosi improves the process. Voters will ask themselves why Democrats spent all year obsessed with impeachment under varying rationalizations and then chose the one issue on which they could almost guarantee no success in removal. Pelosi may win a tactical victory with this upcoming vote, but it's not going to solve the big strategic issue awaiting Democrats at the end of this process.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,The Democrats' impeachment process has a credibility problem -Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer,"Wed, 30 Oct 2019 18:24:50 -0400",https://news.yahoo.com/actor-cuba-gooding-jr-charged-222450369.html,"Actor Cuba Gooding Jr, already facing a criminal case over accusations he touched a woman's breasts in a bar and pinched another's buttocks in a nightclub, has been charged in connection with a third woman, his lawyer said on Wednesday. Gooding is expected to appear in court Thursday and plead not guilty to the charges, according to his lawyer, Mark Heller. The charges are not yet public, and a spokeswoman for Manhattan District Attorney Cyrus Vance declined to provide details.",http://l2.yimg.com/uu/api/res/1.2/_mlgfRPFaCxz19SCv.rJTQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/b5800472ccbf51bec8cf4e6e1f98463c,Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Chicago teachers OK tentative agreement but strike goes on,"Wed, 30 Oct 2019 23:25:16 -0400",https://news.yahoo.com/chicago-teachers-strike-cancels-classes-152827771.html,"Chicago's teachers union voted to approve a tentative contract agreement with city officials Wednesday but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Mayor Lori Lightfoot said Wednesday night that she would not meet that demand. Lightfoot accused the union's top leadership of ""moving the goal posts"" by raising the issue Wednesday rather than in a face-to-face meeting with her on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/lOph.Gw4KRH.g3RNWANvkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/c42eb1c83977ab65c5450381a3e516ab,Chicago teachers OK tentative agreement but strike goes on -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?),"Wed, 30 Oct 2019 17:00:00 -0400",https://news.yahoo.com/marines-very-own-anti-ship-210000136.html,Should China be worried?,http://l2.yimg.com/uu/api/res/1.2/8kAnuL45wTHBUJLeuWbK0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/4e5a8d517912a6283e199c4f2d34539a,The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?) -Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? -"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" -South Africans Face Tax Increases as Revenue Collection Lags,"Wed, 30 Oct 2019 08:05:09 -0400",https://news.yahoo.com/south-africans-face-tax-increases-120509942.html,"(Bloomberg) -- Explore what’s moving the global economy in the new season of the Stephanomics podcast. Subscribe via Pocket Cast or iTunes.South Africans have to brace for higher taxes next year as revenue collection falls short of estimates.Bailouts for the state-owned power utility, broadcaster, airlines and arms maker – together with a failure to curb the public-sector wage bill and stem fiscal leakages – have sapped the state’s resources. Africa’s most-industrialized economy hasn’t expanded by more than 2% annually since 2013, damping confidence and resulting in the longest business-cycle downturn since 1945, weighing on tax income.The National Treasury increased the value-added tax rate last year for the time in more than two decades and has also raised taxes for high-income earners to plug the widening budget deficit. That has added to the strain on consumption spending and economic growth.“Significant tax increases over the past several years leave only moderate scope to boost tax revenue at this time,” the Treasury said in its medium-term budget policy statement released Wednesday in Cape Town. Additional tax measures are under consideration to raise an extra 10 billion rand ($683 million) in fiscal 2021, it said, without giving details.“Given the fiscal position we find ourselves in, all tax options need to be on the table,” said Chris Axelson, chief director for economic tax analysis in the Treasury.The South African Revenue Service will probably collect 1.37 trillion rand in the 2020 fiscal year, 52.5 billion rand less than forecast in February, the Treasury said. The shortfall will be 84 billion rand in 2021 and 114.7 billion rand in 2022, it said.The shortfall reflects “job losses, lower wage settlements and smaller bonuses reducing personal income-tax collection,” the Treasury said. Reduced profitability in a difficult trading environment meant lower-than-expected corporate income-tax collections, while weak household consumption moderated the increase in revenue from value-added tax, it said.The February budget included 7 billion rand from the sale of non-core assets by March, but “there is a risk these sales will not be completed by the end of the financial year,” the Treasury said.The government insists that citizens of Gauteng – which houses the financial hub of Johannesburg and the capital, Pretoria – must pay for electronically administered tolls to use the province’s roads, and will strengthen compliance measures.In July, Transport Minister Fikile Mbalula said South Africa is considering the options available on scrapping the tolls.“Not paying your tolls has already led to our roads deteriorating,” Finance Minister Tito Mboweni said in a prepared copy if his speech. “We have been unable to maintain the network. I urge the nation to please pay your bills.”\--With assistance from Zoe Schneeweiss.To contact the reporter on this story: Ana Monteiro in Johannesburg at amonteiro4@bloomberg.netTo contact the editors responsible for this story: Rene Vollgraaff at rvollgraaff@bloomberg.net, Robert BrandFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/uvN2DnzYlF.TzezBAQo5Gg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8a4780226c720322234fa6fbc613c5e6,South Africans Face Tax Increases as Revenue Collection Lags -The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -The Democrats' impeachment process has a credibility problem,"Wed, 30 Oct 2019 10:02:29 -0400",https://news.yahoo.com/democrats-impeachment-process-credibility-problem-140229011.html,"Has the House impeachment inquiry hit a brick wall on credibility? Or have House Democrats decided to call Republicans' bluff?After weeks of refusing to hold a full floor vote to formally launch an impeachment inquiry, House Speaker Nancy Pelosi (D-Calif.) abruptly changed position this week. A Thursday vote will set out more clear parameters for the ongoing investigation without explicitly declaring an impeachment inquiry, but it's far from clear whether this changes anything appreciably -- or if there's anything to change with the current focus on Ukraine policy as the predicate for impeachment.The bill that emerged Tuesday afternoon appears to directly address some of the key criticisms of House Republicans, who grew so frustrated with the closed hearings that they staged an intervention of sorts last week, breaching the Secure Compartmented Information Facility (SCIF) in which the depositions were being taken under the control of House Intelligence Chair Adam Schiff. That set off worries among Democrats that further such demonstrations could obstruct and drag out the impeachment process into next year and into the election cycle, something Pelosi would like to avoid.Democrats' claims that the demonstrations were a GOP stunt had some basis in fact. Some of the Republicans who participated actually did have access to the hearings as members of three committees participating in the testimony. Contrary to some claims made at the time, Republican committee members had the opportunity to ask questions of the witnesses during the deposition and were very engaged in that process.Still, other Republican complaints had started to take their toll. Republicans wanted Democrats to hold a full House vote to openly authorize an impeachment inquiry, rather than use committees to conduct an ad hoc investigation while House Democratic leadership publicly acknowledged that impeachment was the goal. They also wanted open hearings with the witnesses being subpoenaed, which Democrats refused to grant in order to keep witnesses from knowing preceding testimony. Democrats pointed out that the House rules allowed for closed-session depositions and compared them to secret grand-jury proceedings, but Republicans countered that grand juries don't leak characterizations of the testimony at pressers, as Schiff and other Democrats had been doing all along.That has made the proceedings seem as though they're being conducted by a kangaroo court, which has allowed Trump to argue that the process is corrupt. The only way to gain traction for this process is to give it more credibility -- and to call the bluff of Republicans and Trump. Thus, Pelosi introduced a bill that will allow Republicans to call their own witnesses and to access all deposition materials, under the same rules used in the Bill Clinton impeachment process in 1998. The bill also establishes a mechanism for the full release of testimony, which Republicans have repeatedly demanded.This presents an immediate tactical risk for the White House. One of Pelosi's motives is to parry Trump's refusal to cooperate based on a lack of formal approval by the full House. A federal court ruled against Trump last week, but Trump can tie that question up for months on appeals, time that Pelosi perceives she does not have. A full House vote approving these rules not only means that Republicans no longer have due-process complaints (at least going forward), it signals to courts that the full House has indeed given tacit approval for an impeachment inquiry in providing a relatively fair structure for it.However, Pelosi is more worried about a different court: the court of public opinion. That perception that the impeachment process is unfair has hampered Democrats' ability to generate the kind of public support they need to take this to a full vote on impeachment without risking the gains Pelosi made in the 2018 midterms. National polling showing support for impeachment gaining momentum overall, but the response from the American public looks quite different on a state-by-state basis. A poll by The New York Times and Siena College last week showed that voters in six critical swing states with the closest margins in 2016 generally oppose impeachment, 43/53. Those numbers would suggest that continuing on this impeachment process might produce a Pyrrhic victory for Democrats in 2020, one that could produce a historic win for an already-impeached president for the first time ever.To fix that problem, and to force the Senate to take this more seriously, Pelosi has to revamp the process to provide at least the appearance of fairness. However, it's not likely to matter in the end. Impeachment is only the first step in the removal process, and in this case it's likely to be the last step Democrats can successfully take.The Republicans control the Senate, but their majority matters less than the fact that Democrats don't have a supermajority. If Democrats had uncovered a truly serious crime in this probe, that would likely convince at least 20 Senate Republicans to make Mike Pence president. The core problem is that Ukraine-Gate doesn't appear to involve an explicit statutory crime at all, but instead an alleged abuse of authority to gain political advantage over former Vice President Joe Biden. The House can decide what constitutes an impeachable offense, but the Senate decides whether it's even worthy of a full trial, let alone a removal.An impeachment without a removal will, in the end, look a lot like a political campaign no matter how much Pelosi improves the process. Voters will ask themselves why Democrats spent all year obsessed with impeachment under varying rationalizations and then chose the one issue on which they could almost guarantee no success in removal. Pelosi may win a tactical victory with this upcoming vote, but it's not going to solve the big strategic issue awaiting Democrats at the end of this process.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,The Democrats' impeachment process has a credibility problem -Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer,"Wed, 30 Oct 2019 18:24:50 -0400",https://news.yahoo.com/actor-cuba-gooding-jr-charged-222450369.html,"Actor Cuba Gooding Jr, already facing a criminal case over accusations he touched a woman's breasts in a bar and pinched another's buttocks in a nightclub, has been charged in connection with a third woman, his lawyer said on Wednesday. Gooding is expected to appear in court Thursday and plead not guilty to the charges, according to his lawyer, Mark Heller. The charges are not yet public, and a spokeswoman for Manhattan District Attorney Cyrus Vance declined to provide details.",http://l2.yimg.com/uu/api/res/1.2/_mlgfRPFaCxz19SCv.rJTQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/b5800472ccbf51bec8cf4e6e1f98463c,Actor Cuba Gooding Jr charged with unlawfully touching third woman: lawyer -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Chicago teachers OK tentative agreement but strike goes on,"Wed, 30 Oct 2019 23:25:16 -0400",https://news.yahoo.com/chicago-teachers-strike-cancels-classes-152827771.html,"Chicago's teachers union voted to approve a tentative contract agreement with city officials Wednesday but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Mayor Lori Lightfoot said Wednesday night that she would not meet that demand. Lightfoot accused the union's top leadership of ""moving the goal posts"" by raising the issue Wednesday rather than in a face-to-face meeting with her on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/lOph.Gw4KRH.g3RNWANvkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/c42eb1c83977ab65c5450381a3e516ab,Chicago teachers OK tentative agreement but strike goes on -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?),"Wed, 30 Oct 2019 17:00:00 -0400",https://news.yahoo.com/marines-very-own-anti-ship-210000136.html,Should China be worried?,http://l2.yimg.com/uu/api/res/1.2/8kAnuL45wTHBUJLeuWbK0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/4e5a8d517912a6283e199c4f2d34539a,The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?) -Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? -"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress","Wed, 30 Oct 2019 10:14:29 -0400",https://news.yahoo.com/george-papadopoulos-convicted-trump-campaign-012412524.html,"George Papadopoulos, a former Trump campaign aide who went to prison for lying to the FBI, has filed papers to run for the House of Representatives.",http://l1.yimg.com/uu/api/res/1.2/FacH2XDYbIp2HFr5PhFK6g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/4860f18a4df00749f95d3c12fb2e1e2b,"George Papadopoulos, convicted Trump campaign adviser, files papers to run for Katie Hill's seat in Congress" -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" -South Africans Face Tax Increases as Revenue Collection Lags,"Wed, 30 Oct 2019 08:05:09 -0400",https://news.yahoo.com/south-africans-face-tax-increases-120509942.html,"(Bloomberg) -- Explore what’s moving the global economy in the new season of the Stephanomics podcast. Subscribe via Pocket Cast or iTunes.South Africans have to brace for higher taxes next year as revenue collection falls short of estimates.Bailouts for the state-owned power utility, broadcaster, airlines and arms maker – together with a failure to curb the public-sector wage bill and stem fiscal leakages – have sapped the state’s resources. Africa’s most-industrialized economy hasn’t expanded by more than 2% annually since 2013, damping confidence and resulting in the longest business-cycle downturn since 1945, weighing on tax income.The National Treasury increased the value-added tax rate last year for the time in more than two decades and has also raised taxes for high-income earners to plug the widening budget deficit. That has added to the strain on consumption spending and economic growth.“Significant tax increases over the past several years leave only moderate scope to boost tax revenue at this time,” the Treasury said in its medium-term budget policy statement released Wednesday in Cape Town. Additional tax measures are under consideration to raise an extra 10 billion rand ($683 million) in fiscal 2021, it said, without giving details.“Given the fiscal position we find ourselves in, all tax options need to be on the table,” said Chris Axelson, chief director for economic tax analysis in the Treasury.The South African Revenue Service will probably collect 1.37 trillion rand in the 2020 fiscal year, 52.5 billion rand less than forecast in February, the Treasury said. The shortfall will be 84 billion rand in 2021 and 114.7 billion rand in 2022, it said.The shortfall reflects “job losses, lower wage settlements and smaller bonuses reducing personal income-tax collection,” the Treasury said. Reduced profitability in a difficult trading environment meant lower-than-expected corporate income-tax collections, while weak household consumption moderated the increase in revenue from value-added tax, it said.The February budget included 7 billion rand from the sale of non-core assets by March, but “there is a risk these sales will not be completed by the end of the financial year,” the Treasury said.The government insists that citizens of Gauteng – which houses the financial hub of Johannesburg and the capital, Pretoria – must pay for electronically administered tolls to use the province’s roads, and will strengthen compliance measures.In July, Transport Minister Fikile Mbalula said South Africa is considering the options available on scrapping the tolls.“Not paying your tolls has already led to our roads deteriorating,” Finance Minister Tito Mboweni said in a prepared copy if his speech. “We have been unable to maintain the network. I urge the nation to please pay your bills.”\--With assistance from Zoe Schneeweiss.To contact the reporter on this story: Ana Monteiro in Johannesburg at amonteiro4@bloomberg.netTo contact the editors responsible for this story: Rene Vollgraaff at rvollgraaff@bloomberg.net, Robert BrandFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/uvN2DnzYlF.TzezBAQo5Gg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8a4780226c720322234fa6fbc613c5e6,South Africans Face Tax Increases as Revenue Collection Lags -The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates.,"Wed, 30 Oct 2019 12:59:00 -0400",https://news.yahoo.com/wildfire-californias-sonoma-county-burned-181800816.html,"The Kincade Fire in California's Sonoma County has burned 76,825 acres. PG&E; told regulators that a broken jumper cable may have started the blaze.",http://l.yimg.com/uu/api/res/1.2/YXQSQN7RbEj7HcA6jfa4Uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/8a6143946dc0484545a6b2593cca102b,The Kincade Fire in California has burned an area more than twice the size of San Francisco. Here are the latest updates. -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Ilhan Omar refuses to back vote recognising Armenian genocide,"Wed, 30 Oct 2019 10:33:02 -0400",https://news.yahoo.com/ilhan-omar-refuses-back-vote-143204618.html,"Ilhan Omar declined to vote in favour of a resolution recognising the mass killing of Armenians by Ottoman Turks as a genocide, saying any ""true acknowledgement"" of such crimes must include other historical ""mass slaughters"".The Minnesota Democrat was one of just three House members to vote “present” on the resolution that passed in an overwhelming 405-11 vote.",http://l.yimg.com/uu/api/res/1.2/bKw.a_m3fIWm1q5agamYdg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/1897802b491bb4f925ff56eb4356225e,Ilhan Omar refuses to back vote recognising Armenian genocide -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -"Special Report: In a working-class Hong Kong neighborhood, the protests hit home","Wed, 30 Oct 2019 08:05:30 -0400",https://news.yahoo.com/special-report-working-class-hong-120530805.html,"From the top of Lion Rock, all of Hong Kong reveals itself: the sprawl of the Kowloon Peninsula directly below, the iconic Star Ferry plying the waters of Victoria Harbor, the moneyed heights of Hong Kong island beyond. In the shadow of the revered mountain rise huge monoliths, drab concrete tower blocks far removed from the glittering glass highrises of Hong Kong island's steroidal skyline. Here, in a neighborhood of public housing estates called Wong Tai Sin, seemingly endless stacks of aging windows heave with drying laundry and hum with air conditioners sweating droplets onto the pavement below.",http://l.yimg.com/uu/api/res/1.2/F9Ge8Jbxe9MBf8mEm7JaUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/6360044a87d60947847b5654efb286ca,"Special Report: In a working-class Hong Kong neighborhood, the protests hit home" -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’,"Wed, 30 Oct 2019 09:14:32 -0400",https://news.yahoo.com/california-governor-accepted-donations-utility-131432537.html,"California governor, Democrat Gavin Newsom, has accepted large donations from Pacific Gas & Electric Co., a utility company he now excoriates for ""greed"" and ""mismanagement.""PG&E has faced widespread criticism for implementing blackouts for millions of customers to avoid sparking wildfires in the midst of California's dry and windy fall weather.""I have a message for PG&E,"" Newsom wrote on Twitter on Friday. ""Your years and years of greed. Years and years of mismanagement. Years and years of putting shareholders over people. Are OVER.""Newsom and allies accepted $208,400 from the utility during his 2018 gubernatorial campaign, according to local affiliate ABC10. Of that total, $150,000 went to a political spending group called “Citizens Supporting Gavin Newsom for Governor 2018,” while the rest went to directly to Newsom's campaign.PG&E filed for bankruptcy in January 2019. Faulty PG&E electricity equipment has been blamed for sparking several wildfires in the past decade.California has consistently shut down proposals to clear dead trees from forests and to trim trees near power lines state wide, creating conditions for a rash of wildfire outbreaks in recent years.The Kincaid Fire currently burning in Sonoma County in the northern part of the state has forced the evacuation of roughly 200,000 people. The fire is twice the size of the city of San Fransisco.Newsom declared a state of emergency on Sunday in response to the Kincaid Fire and several other wildfires throughout the state. He again threatened PG&E in a statement on the situation.""There is a plan to get out of this. This is not the new normal,” Newsom said on Sunday at an evacuation center in northern California. “This is not a 10-year process to deal with this. That will not be the case
 [PG&E] will be held to account to do something radically different",http://l1.yimg.com/uu/api/res/1.2/PwVfYG7dQige5oYEYTjwrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/7819ecc3bf346550c726f66c60681b59,California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’ -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Former New Orleans Mayor Mitch Landrieu says impeachment inquiry 'has now risen to a level of a substantial case that can be made',"Wed, 30 Oct 2019 18:23:29 -0400",https://news.yahoo.com/former-orleans-mayor-mitch-landrieu-222329213.html,"Former New Orleans Mayor Mitch Landrieu joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to talk about the impeachment inquiry into President Trump. Landrieu says that at first he didn’t think it was warranted after the Mueller report came out, but “when the Ukraine matter raised up its head, I changed.”",http://l.yimg.com/uu/api/res/1.2/riyyHWS30ukacweXGdlMjw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/653336a0-fb63-11e9-9fbf-342726b7af06,Former New Orleans Mayor Mitch Landrieu says impeachment inquiry 'has now risen to a level of a substantial case that can be made' -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames -Over half of the House of Representatives support the impeachment inquiry against Trump — see all of them here,"Wed, 30 Oct 2019 16:01:00 -0400",https://news.yahoo.com/over-half-house-representatives-support-154500322.html,"Currently, almost the entire House Democratic caucus and one Independent are publicly supporting the ongoing impeachment inquiry against Trump.",http://l1.yimg.com/uu/api/res/1.2/GloEQjjvKiuOxKRbDF4FyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/dc63495269b132b2e4b1b507ff877f08,Over half of the House of Representatives support the impeachment inquiry against Trump — see all of them here -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -"3 killed, 9 wounded in shooting at party in California home","Wed, 30 Oct 2019 18:19:39 -0400",https://news.yahoo.com/3-killed-9-injured-shooting-082755536.html,"A gunman who opened fire from an alley into a party killed three people and wounded nine others in California before fleeing in a vehicle, police said Wednesday. Police Chief Robert Luna called the shooter a coward and urged residents to come forward with any information that might lead to an arrest. Three men were killed, and seven women and two men were taken to hospitals with gunshot wounds.",http://l1.yimg.com/uu/api/res/1.2/4loESatU5y24ZYWRLOpuzA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/83a373c832dba305692e2824e24defae,"3 killed, 9 wounded in shooting at party in California home" -Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation -The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?),"Wed, 30 Oct 2019 17:00:00 -0400",https://news.yahoo.com/marines-very-own-anti-ship-210000136.html,Should China be worried?,http://l2.yimg.com/uu/api/res/1.2/8kAnuL45wTHBUJLeuWbK0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/4e5a8d517912a6283e199c4f2d34539a,The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?) -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it","Wed, 30 Oct 2019 15:26:00 -0400",https://news.yahoo.com/u-government-spent-16-000-192600418.html,"Sen. Joni Ernst (R-Iowa) wants to rob the federal government of what little fun it has left.Every year, the U.S. government spends more than $1.4 billion on its public relations and advertising efforts -- not that Ernst has a problem with all of that. She's just not a fan of the .002 cents each American taxpayer essentially spent last year on federal ""mascots,"" as well as the several thousand more dollars it put toward various trinkets, and is proposing a bill to end it all.Ernst unveiled her SWAG Act, which stands for Stop Wasteful Advertising by the Government, on Tuesday, which would block federal agencies from creating mascots unless it's done via statute. Smokey Bear and Woodsy Owl, for example, would be safe, but Sammy Soil, a literal chunk of soil with eyes created by the USDA's conservation branch, would be rooted out. So would Franklin the Fair Housing Fox, The Green Reaper, and some other mascots Ernst says have been known to make babies cry.A variety of knickknacks are also targeted under Ernst's proposal to ""Bag the Swag:"" the $605,000 spent on coloring books last year; $33,000 on Snuggies; $17,000 on drink koozies; and $16,000 on fidget spinners. Ernst would also ""prohibit the purchase and distribution of 'swag'"" like these, unless they're also authorized by statute, per Ernst's press release.Overall, the federal government spent a total of $250,000 on the mascots last year. The Tax Cuts & Jobs Act, which Ernst voted to enact, is meanwhile expected to cost at least $1.5 trillion.",,"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it" -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Ilhan Omar refuses to back vote recognising Armenian genocide,"Wed, 30 Oct 2019 10:33:02 -0400",https://news.yahoo.com/ilhan-omar-refuses-back-vote-143204618.html,"Ilhan Omar declined to vote in favour of a resolution recognising the mass killing of Armenians by Ottoman Turks as a genocide, saying any ""true acknowledgement"" of such crimes must include other historical ""mass slaughters"".The Minnesota Democrat was one of just three House members to vote “present” on the resolution that passed in an overwhelming 405-11 vote.",http://l.yimg.com/uu/api/res/1.2/bKw.a_m3fIWm1q5agamYdg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/1897802b491bb4f925ff56eb4356225e,Ilhan Omar refuses to back vote recognising Armenian genocide -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -"Special Report: In a working-class Hong Kong neighborhood, the protests hit home","Wed, 30 Oct 2019 08:05:30 -0400",https://news.yahoo.com/special-report-working-class-hong-120530805.html,"From the top of Lion Rock, all of Hong Kong reveals itself: the sprawl of the Kowloon Peninsula directly below, the iconic Star Ferry plying the waters of Victoria Harbor, the moneyed heights of Hong Kong island beyond. In the shadow of the revered mountain rise huge monoliths, drab concrete tower blocks far removed from the glittering glass highrises of Hong Kong island's steroidal skyline. Here, in a neighborhood of public housing estates called Wong Tai Sin, seemingly endless stacks of aging windows heave with drying laundry and hum with air conditioners sweating droplets onto the pavement below.",http://l.yimg.com/uu/api/res/1.2/F9Ge8Jbxe9MBf8mEm7JaUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/6360044a87d60947847b5654efb286ca,"Special Report: In a working-class Hong Kong neighborhood, the protests hit home" -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’,"Wed, 30 Oct 2019 09:14:32 -0400",https://news.yahoo.com/california-governor-accepted-donations-utility-131432537.html,"California governor, Democrat Gavin Newsom, has accepted large donations from Pacific Gas & Electric Co., a utility company he now excoriates for ""greed"" and ""mismanagement.""PG&E has faced widespread criticism for implementing blackouts for millions of customers to avoid sparking wildfires in the midst of California's dry and windy fall weather.""I have a message for PG&E,"" Newsom wrote on Twitter on Friday. ""Your years and years of greed. Years and years of mismanagement. Years and years of putting shareholders over people. Are OVER.""Newsom and allies accepted $208,400 from the utility during his 2018 gubernatorial campaign, according to local affiliate ABC10. Of that total, $150,000 went to a political spending group called “Citizens Supporting Gavin Newsom for Governor 2018,” while the rest went to directly to Newsom's campaign.PG&E filed for bankruptcy in January 2019. Faulty PG&E electricity equipment has been blamed for sparking several wildfires in the past decade.California has consistently shut down proposals to clear dead trees from forests and to trim trees near power lines state wide, creating conditions for a rash of wildfire outbreaks in recent years.The Kincaid Fire currently burning in Sonoma County in the northern part of the state has forced the evacuation of roughly 200,000 people. The fire is twice the size of the city of San Fransisco.Newsom declared a state of emergency on Sunday in response to the Kincaid Fire and several other wildfires throughout the state. He again threatened PG&E in a statement on the situation.""There is a plan to get out of this. This is not the new normal,” Newsom said on Sunday at an evacuation center in northern California. “This is not a 10-year process to deal with this. That will not be the case
 [PG&E] will be held to account to do something radically different",http://l1.yimg.com/uu/api/res/1.2/PwVfYG7dQige5oYEYTjwrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/7819ecc3bf346550c726f66c60681b59,California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’ -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Former New Orleans Mayor Mitch Landrieu says impeachment inquiry 'has now risen to a level of a substantial case that can be made',"Wed, 30 Oct 2019 18:23:29 -0400",https://news.yahoo.com/former-orleans-mayor-mitch-landrieu-222329213.html,"Former New Orleans Mayor Mitch Landrieu joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to talk about the impeachment inquiry into President Trump. Landrieu says that at first he didn’t think it was warranted after the Mueller report came out, but “when the Ukraine matter raised up its head, I changed.”",http://l.yimg.com/uu/api/res/1.2/riyyHWS30ukacweXGdlMjw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/653336a0-fb63-11e9-9fbf-342726b7af06,Former New Orleans Mayor Mitch Landrieu says impeachment inquiry 'has now risen to a level of a substantial case that can be made' -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames -Over half of the House of Representatives support the impeachment inquiry against Trump — see all of them here,"Wed, 30 Oct 2019 16:01:00 -0400",https://news.yahoo.com/over-half-house-representatives-support-154500322.html,"Currently, almost the entire House Democratic caucus and one Independent are publicly supporting the ongoing impeachment inquiry against Trump.",http://l1.yimg.com/uu/api/res/1.2/GloEQjjvKiuOxKRbDF4FyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/dc63495269b132b2e4b1b507ff877f08,Over half of the House of Representatives support the impeachment inquiry against Trump — see all of them here -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -"3 killed, 9 wounded in shooting at party in California home","Wed, 30 Oct 2019 18:19:39 -0400",https://news.yahoo.com/3-killed-9-injured-shooting-082755536.html,"A gunman who opened fire from an alley into a party killed three people and wounded nine others in California before fleeing in a vehicle, police said Wednesday. Police Chief Robert Luna called the shooter a coward and urged residents to come forward with any information that might lead to an arrest. Three men were killed, and seven women and two men were taken to hospitals with gunshot wounds.",http://l1.yimg.com/uu/api/res/1.2/4loESatU5y24ZYWRLOpuzA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/83a373c832dba305692e2824e24defae,"3 killed, 9 wounded in shooting at party in California home" -Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation -The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?),"Wed, 30 Oct 2019 17:00:00 -0400",https://news.yahoo.com/marines-very-own-anti-ship-210000136.html,Should China be worried?,http://l2.yimg.com/uu/api/res/1.2/8kAnuL45wTHBUJLeuWbK0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/4e5a8d517912a6283e199c4f2d34539a,The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?) -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it","Wed, 30 Oct 2019 15:26:00 -0400",https://news.yahoo.com/u-government-spent-16-000-192600418.html,"Sen. Joni Ernst (R-Iowa) wants to rob the federal government of what little fun it has left.Every year, the U.S. government spends more than $1.4 billion on its public relations and advertising efforts -- not that Ernst has a problem with all of that. She's just not a fan of the .002 cents each American taxpayer essentially spent last year on federal ""mascots,"" as well as the several thousand more dollars it put toward various trinkets, and is proposing a bill to end it all.Ernst unveiled her SWAG Act, which stands for Stop Wasteful Advertising by the Government, on Tuesday, which would block federal agencies from creating mascots unless it's done via statute. Smokey Bear and Woodsy Owl, for example, would be safe, but Sammy Soil, a literal chunk of soil with eyes created by the USDA's conservation branch, would be rooted out. So would Franklin the Fair Housing Fox, The Green Reaper, and some other mascots Ernst says have been known to make babies cry.A variety of knickknacks are also targeted under Ernst's proposal to ""Bag the Swag:"" the $605,000 spent on coloring books last year; $33,000 on Snuggies; $17,000 on drink koozies; and $16,000 on fidget spinners. Ernst would also ""prohibit the purchase and distribution of 'swag'"" like these, unless they're also authorized by statute, per Ernst's press release.Overall, the federal government spent a total of $250,000 on the mascots last year. The Tax Cuts & Jobs Act, which Ernst voted to enact, is meanwhile expected to cost at least $1.5 trillion.",,"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it" -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Ilhan Omar refuses to back vote recognising Armenian genocide,"Wed, 30 Oct 2019 10:33:02 -0400",https://news.yahoo.com/ilhan-omar-refuses-back-vote-143204618.html,"Ilhan Omar declined to vote in favour of a resolution recognising the mass killing of Armenians by Ottoman Turks as a genocide, saying any ""true acknowledgement"" of such crimes must include other historical ""mass slaughters"".The Minnesota Democrat was one of just three House members to vote “present” on the resolution that passed in an overwhelming 405-11 vote.",http://l.yimg.com/uu/api/res/1.2/bKw.a_m3fIWm1q5agamYdg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/1897802b491bb4f925ff56eb4356225e,Ilhan Omar refuses to back vote recognising Armenian genocide -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah -California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’,"Wed, 30 Oct 2019 09:14:32 -0400",https://news.yahoo.com/california-governor-accepted-donations-utility-131432537.html,"California governor, Democrat Gavin Newsom, has accepted large donations from Pacific Gas & Electric Co., a utility company he now excoriates for ""greed"" and ""mismanagement.""PG&E has faced widespread criticism for implementing blackouts for millions of customers to avoid sparking wildfires in the midst of California's dry and windy fall weather.""I have a message for PG&E,"" Newsom wrote on Twitter on Friday. ""Your years and years of greed. Years and years of mismanagement. Years and years of putting shareholders over people. Are OVER.""Newsom and allies accepted $208,400 from the utility during his 2018 gubernatorial campaign, according to local affiliate ABC10. Of that total, $150,000 went to a political spending group called “Citizens Supporting Gavin Newsom for Governor 2018,” while the rest went to directly to Newsom's campaign.PG&E filed for bankruptcy in January 2019. Faulty PG&E electricity equipment has been blamed for sparking several wildfires in the past decade.California has consistently shut down proposals to clear dead trees from forests and to trim trees near power lines state wide, creating conditions for a rash of wildfire outbreaks in recent years.The Kincaid Fire currently burning in Sonoma County in the northern part of the state has forced the evacuation of roughly 200,000 people. The fire is twice the size of the city of San Fransisco.Newsom declared a state of emergency on Sunday in response to the Kincaid Fire and several other wildfires throughout the state. He again threatened PG&E in a statement on the situation.""There is a plan to get out of this. This is not the new normal,” Newsom said on Sunday at an evacuation center in northern California. “This is not a 10-year process to deal with this. That will not be the case
 [PG&E] will be held to account to do something radically different",http://l1.yimg.com/uu/api/res/1.2/PwVfYG7dQige5oYEYTjwrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/7819ecc3bf346550c726f66c60681b59,California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’ -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" -"3 killed, 9 wounded in shooting at party in California home","Wed, 30 Oct 2019 18:19:39 -0400",https://news.yahoo.com/3-killed-9-injured-shooting-082755536.html,"A gunman who opened fire from an alley into a party killed three people and wounded nine others in California before fleeing in a vehicle, police said Wednesday. Police Chief Robert Luna called the shooter a coward and urged residents to come forward with any information that might lead to an arrest. Three men were killed, and seven women and two men were taken to hospitals with gunshot wounds.",http://l1.yimg.com/uu/api/res/1.2/4loESatU5y24ZYWRLOpuzA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/83a373c832dba305692e2824e24defae,"3 killed, 9 wounded in shooting at party in California home" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -California businessman gets prison for U.S. college admissions scam,"Wed, 30 Oct 2019 18:25:54 -0400",https://news.yahoo.com/california-businessman-gets-prison-u-222554860.html,"A former California business executive was sentenced on Wednesday to two months in prison for taking part in a vast U.S. college admissions fraud scheme by paying $250,000 to secure his son's admission to the University of Southern California. Federal prosecutors in Boston had sought nine months in prison for Jeffrey Bizzack, who they said sought to secure his son's admission through a ""side door"" by agreeing to bribe a USC official to designate him as a fake athletic recruit. U.S. District Judge Douglas Woodlock said prosecutors lacked evidence to support some of their arguments for a higher sentence.",http://l.yimg.com/uu/api/res/1.2/lEh4n6Nu9abRf1foukH6Gw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/298583d99339cc271df308ca177e42f4,California businessman gets prison for U.S. college admissions scam -These Are The Stocks to Watch as U.K. Heads to the Polls Again,"Wed, 30 Oct 2019 04:38:28 -0400",https://news.yahoo.com/stocks-watch-u-k-heads-083828793.html,"(Bloomberg) -- The U.K. is headed to the polls on Dec. 12, bringing banks, utilities and housebuilders into focus for U.K. equity investors. There’s also the small matter of Brexit, as strategists digest what the latest developments mean for sterling and U.K. assets.In the lead-up to the vote, “both Labour and the Conservatives are expected to come out with pretty punchy views on tax, innovation and public spending, which could have significant implications for both corporates and consumers,” Emma Wall, head of investment analysis at stockbroker Hargreaves Lansdown Plc, said by email.Banks, utilities, transport and and defense are the sectors with most at stake should there be a change in the balance of power, according to Caroline Simmons, deputy head of UBS Wealth Management’s U.K. Investment Office.Here’s what to watch as the poll looms.FTSE 100Given Labour had made taking no-deal out of the equation a prerequisite of supporting a general election, the risk of a no-deal Brexit has reduced, which is likely to support U.K. risk assets, according to Edward Park, deputy chief investment officer at wealth manager Brooks Macdonald Group Plc.Should parliament return in December with a mandate for the withdrawal deal brokered by Prime Minister Boris Johnson, “sterling will value the reduced no-deal threat and continue the rally seen in recent weeks,” Park said by email. If that proves the case, then the inverse relationship between the exporter-heavy FTSE 100 and the pound should mean the index underperforms, he said.BanksLabour leader Jeremy Corbyn becoming prime minister could be just as damaging to British banks’ profits as the U.K. crashing out of the European Union without a deal.According to Citigroup Inc. analyst Andrew Coombs, the biggest risk to the U.K. banking sector is snap elections, given the impact on sentiment attached to the possibility of a Labour victory. The party’s “business unfriendly” deficit-financed policies would likely lead to capital outflows from the U.K., he wrote.U.K. lenders Royal Bank of Scotland Group Plc and Lloyds Banking Group Plc have gained 5.6% and 7.7%, respectively, this month as the risk of a no-deal exit reduced.Utilities and TransportShares of companies that keep Britons warm and bathed have been an excellent indicator of U.K. election risk ever since Labour first vowed to nationalize utilities a few years back. Top of this list are water and electricity utilities, covering the likes of United Utilities Group Plc, Severn Trent Plc, National Grid Plc and SSE Plc.“While fears of nationalization under Corbyn’s rule have remained subdued with lingering Brexit angst, a renewed Labour leadership campaign could weigh heavily on U.K. utilities,” said Andrew Coury, a strategist at Liberum Capital.But if the Conservatives are able to regain power in an election, this threat would evaporate and the underperformance of U.K. utilities to their European peers may be reversed. It could be a similar story for other stocks and sectors Labour is said to have targeted for nationalization, including postal-service operator Royal Mail Plc and the companies that run British transport services like FirstGroup Plc and Stagecoach Group Plc.HousebuildersThe U.K. still suffers from an imbalance between the demand for housing and the volume of new houses being built, so any party campaigning for government would likely have to address this as part of their policy platform.Liberum expects the housing market to slow in the run-up to the election, but that housebuilder shares may outperform should the Conservatives emerge victorious. It particularly favors smaller companies such as Bellway Plc and Galliford Try Plc, which it says should benefit from better risk appetite and which have more attractive valuations.DefenseCorbyn has been a vocal opponent of military intervention in the Middle East and has argued for the suspension of arms sales to Saudi Arabia. His anti-war stance could hurt defense suppliers such as BAE Systems Plc, according to Citi, which estimated Aug. 1 that the London-based firm’s stock could fall 20% if Labour came to power.The U.K.’s Dreadnought nuclear deterrent submarine program -- another of BAE’s projects -- would also be at risk, Citi analyst Charles Armitage wrote. The level of risk to Dreadnought would be reduced if Labour entered a coalition with the Liberal Democrats, he said. A pact with the Scottish National Party would leave both Dreadnought and the Saudi business vulnerable, Armitage added.RetailersIf an election can produce a clear winner and therefore some clarity on the way forward, that may prove positive for retailers as shoppers should be more confident to spend.However, if the ultimate outcome is a hung parliament, making passing legislation even more difficult, that would likely be negative for the sector.Also watch for any impact on companies that own Britain’s shops, particularly the already-battered mall owners Intu Properties Plc and Hammerson Plc. Though UBS analysts think Brexit is only one of the problems that the sub-sector faces.ConstructionU.K. Chancellor of the Exchequer Sajid Javid used his first set piece event in the role in early September to lay out plans to spend more money on infrastructure. There have been no further details since then and Javid had to cancel his planned Budget announcement, but if this is revived it would be positive for construction contractors like Balfour Beatty Plc, Costain Group Plc and Keller Group Plc.To contact the reporters on this story: Joe Easton in London at jeaston7@bloomberg.net;Sam Unsted in London at sunsted@bloomberg.netTo contact the editors responsible for this story: Beth Mellor at bmellor@bloomberg.net, Paul JarvisFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",,These Are The Stocks to Watch as U.K. Heads to the Polls Again -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Ilhan Omar refuses to back vote recognising Armenian genocide,"Wed, 30 Oct 2019 10:33:02 -0400",https://news.yahoo.com/ilhan-omar-refuses-back-vote-143204618.html,"Ilhan Omar declined to vote in favour of a resolution recognising the mass killing of Armenians by Ottoman Turks as a genocide, saying any ""true acknowledgement"" of such crimes must include other historical ""mass slaughters"".The Minnesota Democrat was one of just three House members to vote “present” on the resolution that passed in an overwhelming 405-11 vote.",http://l.yimg.com/uu/api/res/1.2/bKw.a_m3fIWm1q5agamYdg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/1897802b491bb4f925ff56eb4356225e,Ilhan Omar refuses to back vote recognising Armenian genocide -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -"Special Report: In a working-class Hong Kong neighborhood, the protests hit home","Wed, 30 Oct 2019 08:05:30 -0400",https://news.yahoo.com/special-report-working-class-hong-120530805.html,"From the top of Lion Rock, all of Hong Kong reveals itself: the sprawl of the Kowloon Peninsula directly below, the iconic Star Ferry plying the waters of Victoria Harbor, the moneyed heights of Hong Kong island beyond. In the shadow of the revered mountain rise huge monoliths, drab concrete tower blocks far removed from the glittering glass highrises of Hong Kong island's steroidal skyline. Here, in a neighborhood of public housing estates called Wong Tai Sin, seemingly endless stacks of aging windows heave with drying laundry and hum with air conditioners sweating droplets onto the pavement below.",http://l.yimg.com/uu/api/res/1.2/F9Ge8Jbxe9MBf8mEm7JaUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/6360044a87d60947847b5654efb286ca,"Special Report: In a working-class Hong Kong neighborhood, the protests hit home" -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’,"Wed, 30 Oct 2019 09:14:32 -0400",https://news.yahoo.com/california-governor-accepted-donations-utility-131432537.html,"California governor, Democrat Gavin Newsom, has accepted large donations from Pacific Gas & Electric Co., a utility company he now excoriates for ""greed"" and ""mismanagement.""PG&E has faced widespread criticism for implementing blackouts for millions of customers to avoid sparking wildfires in the midst of California's dry and windy fall weather.""I have a message for PG&E,"" Newsom wrote on Twitter on Friday. ""Your years and years of greed. Years and years of mismanagement. Years and years of putting shareholders over people. Are OVER.""Newsom and allies accepted $208,400 from the utility during his 2018 gubernatorial campaign, according to local affiliate ABC10. Of that total, $150,000 went to a political spending group called “Citizens Supporting Gavin Newsom for Governor 2018,” while the rest went to directly to Newsom's campaign.PG&E filed for bankruptcy in January 2019. Faulty PG&E electricity equipment has been blamed for sparking several wildfires in the past decade.California has consistently shut down proposals to clear dead trees from forests and to trim trees near power lines state wide, creating conditions for a rash of wildfire outbreaks in recent years.The Kincaid Fire currently burning in Sonoma County in the northern part of the state has forced the evacuation of roughly 200,000 people. The fire is twice the size of the city of San Fransisco.Newsom declared a state of emergency on Sunday in response to the Kincaid Fire and several other wildfires throughout the state. He again threatened PG&E in a statement on the situation.""There is a plan to get out of this. This is not the new normal,” Newsom said on Sunday at an evacuation center in northern California. “This is not a 10-year process to deal with this. That will not be the case
 [PG&E] will be held to account to do something radically different",http://l1.yimg.com/uu/api/res/1.2/PwVfYG7dQige5oYEYTjwrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/7819ecc3bf346550c726f66c60681b59,California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’ -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Former New Orleans Mayor Mitch Landrieu says impeachment inquiry 'has now risen to a level of a substantial case that can be made',"Wed, 30 Oct 2019 18:23:29 -0400",https://news.yahoo.com/former-orleans-mayor-mitch-landrieu-222329213.html,"Former New Orleans Mayor Mitch Landrieu joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to talk about the impeachment inquiry into President Trump. Landrieu says that at first he didn’t think it was warranted after the Mueller report came out, but “when the Ukraine matter raised up its head, I changed.”",http://l.yimg.com/uu/api/res/1.2/riyyHWS30ukacweXGdlMjw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/653336a0-fb63-11e9-9fbf-342726b7af06,Former New Orleans Mayor Mitch Landrieu says impeachment inquiry 'has now risen to a level of a substantial case that can be made' -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames -Over half of the House of Representatives support the impeachment inquiry against Trump — see all of them here,"Wed, 30 Oct 2019 16:01:00 -0400",https://news.yahoo.com/over-half-house-representatives-support-154500322.html,"Currently, almost the entire House Democratic caucus and one Independent are publicly supporting the ongoing impeachment inquiry against Trump.",http://l1.yimg.com/uu/api/res/1.2/GloEQjjvKiuOxKRbDF4FyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/dc63495269b132b2e4b1b507ff877f08,Over half of the House of Representatives support the impeachment inquiry against Trump — see all of them here -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -"3 killed, 9 wounded in shooting at party in California home","Wed, 30 Oct 2019 18:19:39 -0400",https://news.yahoo.com/3-killed-9-injured-shooting-082755536.html,"A gunman who opened fire from an alley into a party killed three people and wounded nine others in California before fleeing in a vehicle, police said Wednesday. Police Chief Robert Luna called the shooter a coward and urged residents to come forward with any information that might lead to an arrest. Three men were killed, and seven women and two men were taken to hospitals with gunshot wounds.",http://l1.yimg.com/uu/api/res/1.2/4loESatU5y24ZYWRLOpuzA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/83a373c832dba305692e2824e24defae,"3 killed, 9 wounded in shooting at party in California home" -Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation -The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?),"Wed, 30 Oct 2019 17:00:00 -0400",https://news.yahoo.com/marines-very-own-anti-ship-210000136.html,Should China be worried?,http://l2.yimg.com/uu/api/res/1.2/8kAnuL45wTHBUJLeuWbK0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/4e5a8d517912a6283e199c4f2d34539a,The Marines' Have Their Very Own Anti-Ship Rockets (Thanks to the F-35?) -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it","Wed, 30 Oct 2019 15:26:00 -0400",https://news.yahoo.com/u-government-spent-16-000-192600418.html,"Sen. Joni Ernst (R-Iowa) wants to rob the federal government of what little fun it has left.Every year, the U.S. government spends more than $1.4 billion on its public relations and advertising efforts -- not that Ernst has a problem with all of that. She's just not a fan of the .002 cents each American taxpayer essentially spent last year on federal ""mascots,"" as well as the several thousand more dollars it put toward various trinkets, and is proposing a bill to end it all.Ernst unveiled her SWAG Act, which stands for Stop Wasteful Advertising by the Government, on Tuesday, which would block federal agencies from creating mascots unless it's done via statute. Smokey Bear and Woodsy Owl, for example, would be safe, but Sammy Soil, a literal chunk of soil with eyes created by the USDA's conservation branch, would be rooted out. So would Franklin the Fair Housing Fox, The Green Reaper, and some other mascots Ernst says have been known to make babies cry.A variety of knickknacks are also targeted under Ernst's proposal to ""Bag the Swag:"" the $605,000 spent on coloring books last year; $33,000 on Snuggies; $17,000 on drink koozies; and $16,000 on fidget spinners. Ernst would also ""prohibit the purchase and distribution of 'swag'"" like these, unless they're also authorized by statute, per Ernst's press release.Overall, the federal government spent a total of $250,000 on the mascots last year. The Tax Cuts & Jobs Act, which Ernst voted to enact, is meanwhile expected to cost at least $1.5 trillion.",,"The U.S. government spent $16,000 on fidget spinners last year, and GOP Sen. Joni Ernst is sick of it" -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Ilhan Omar refuses to back vote recognising Armenian genocide,"Wed, 30 Oct 2019 10:33:02 -0400",https://news.yahoo.com/ilhan-omar-refuses-back-vote-143204618.html,"Ilhan Omar declined to vote in favour of a resolution recognising the mass killing of Armenians by Ottoman Turks as a genocide, saying any ""true acknowledgement"" of such crimes must include other historical ""mass slaughters"".The Minnesota Democrat was one of just three House members to vote “present” on the resolution that passed in an overwhelming 405-11 vote.",http://l.yimg.com/uu/api/res/1.2/bKw.a_m3fIWm1q5agamYdg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/1897802b491bb4f925ff56eb4356225e,Ilhan Omar refuses to back vote recognising Armenian genocide -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah -California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’,"Wed, 30 Oct 2019 09:14:32 -0400",https://news.yahoo.com/california-governor-accepted-donations-utility-131432537.html,"California governor, Democrat Gavin Newsom, has accepted large donations from Pacific Gas & Electric Co., a utility company he now excoriates for ""greed"" and ""mismanagement.""PG&E has faced widespread criticism for implementing blackouts for millions of customers to avoid sparking wildfires in the midst of California's dry and windy fall weather.""I have a message for PG&E,"" Newsom wrote on Twitter on Friday. ""Your years and years of greed. Years and years of mismanagement. Years and years of putting shareholders over people. Are OVER.""Newsom and allies accepted $208,400 from the utility during his 2018 gubernatorial campaign, according to local affiliate ABC10. Of that total, $150,000 went to a political spending group called “Citizens Supporting Gavin Newsom for Governor 2018,” while the rest went to directly to Newsom's campaign.PG&E filed for bankruptcy in January 2019. Faulty PG&E electricity equipment has been blamed for sparking several wildfires in the past decade.California has consistently shut down proposals to clear dead trees from forests and to trim trees near power lines state wide, creating conditions for a rash of wildfire outbreaks in recent years.The Kincaid Fire currently burning in Sonoma County in the northern part of the state has forced the evacuation of roughly 200,000 people. The fire is twice the size of the city of San Fransisco.Newsom declared a state of emergency on Sunday in response to the Kincaid Fire and several other wildfires throughout the state. He again threatened PG&E in a statement on the situation.""There is a plan to get out of this. This is not the new normal,” Newsom said on Sunday at an evacuation center in northern California. “This is not a 10-year process to deal with this. That will not be the case
 [PG&E] will be held to account to do something radically different",http://l1.yimg.com/uu/api/res/1.2/PwVfYG7dQige5oYEYTjwrQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/7819ecc3bf346550c726f66c60681b59,California Governor Accepted Donations from Utility Company He Now Excoriates for ‘Greed’ -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" -"3 killed, 9 wounded in shooting at party in California home","Wed, 30 Oct 2019 18:19:39 -0400",https://news.yahoo.com/3-killed-9-injured-shooting-082755536.html,"A gunman who opened fire from an alley into a party killed three people and wounded nine others in California before fleeing in a vehicle, police said Wednesday. Police Chief Robert Luna called the shooter a coward and urged residents to come forward with any information that might lead to an arrest. Three men were killed, and seven women and two men were taken to hospitals with gunshot wounds.",http://l1.yimg.com/uu/api/res/1.2/4loESatU5y24ZYWRLOpuzA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/83a373c832dba305692e2824e24defae,"3 killed, 9 wounded in shooting at party in California home" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -California businessman gets prison for U.S. college admissions scam,"Wed, 30 Oct 2019 18:25:54 -0400",https://news.yahoo.com/california-businessman-gets-prison-u-222554860.html,"A former California business executive was sentenced on Wednesday to two months in prison for taking part in a vast U.S. college admissions fraud scheme by paying $250,000 to secure his son's admission to the University of Southern California. Federal prosecutors in Boston had sought nine months in prison for Jeffrey Bizzack, who they said sought to secure his son's admission through a ""side door"" by agreeing to bribe a USC official to designate him as a fake athletic recruit. U.S. District Judge Douglas Woodlock said prosecutors lacked evidence to support some of their arguments for a higher sentence.",http://l.yimg.com/uu/api/res/1.2/lEh4n6Nu9abRf1foukH6Gw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/298583d99339cc271df308ca177e42f4,California businessman gets prison for U.S. college admissions scam -These Are The Stocks to Watch as U.K. Heads to the Polls Again,"Wed, 30 Oct 2019 04:38:28 -0400",https://news.yahoo.com/stocks-watch-u-k-heads-083828793.html,"(Bloomberg) -- The U.K. is headed to the polls on Dec. 12, bringing banks, utilities and housebuilders into focus for U.K. equity investors. There’s also the small matter of Brexit, as strategists digest what the latest developments mean for sterling and U.K. assets.In the lead-up to the vote, “both Labour and the Conservatives are expected to come out with pretty punchy views on tax, innovation and public spending, which could have significant implications for both corporates and consumers,” Emma Wall, head of investment analysis at stockbroker Hargreaves Lansdown Plc, said by email.Banks, utilities, transport and and defense are the sectors with most at stake should there be a change in the balance of power, according to Caroline Simmons, deputy head of UBS Wealth Management’s U.K. Investment Office.Here’s what to watch as the poll looms.FTSE 100Given Labour had made taking no-deal out of the equation a prerequisite of supporting a general election, the risk of a no-deal Brexit has reduced, which is likely to support U.K. risk assets, according to Edward Park, deputy chief investment officer at wealth manager Brooks Macdonald Group Plc.Should parliament return in December with a mandate for the withdrawal deal brokered by Prime Minister Boris Johnson, “sterling will value the reduced no-deal threat and continue the rally seen in recent weeks,” Park said by email. If that proves the case, then the inverse relationship between the exporter-heavy FTSE 100 and the pound should mean the index underperforms, he said.BanksLabour leader Jeremy Corbyn becoming prime minister could be just as damaging to British banks’ profits as the U.K. crashing out of the European Union without a deal.According to Citigroup Inc. analyst Andrew Coombs, the biggest risk to the U.K. banking sector is snap elections, given the impact on sentiment attached to the possibility of a Labour victory. The party’s “business unfriendly” deficit-financed policies would likely lead to capital outflows from the U.K., he wrote.U.K. lenders Royal Bank of Scotland Group Plc and Lloyds Banking Group Plc have gained 5.6% and 7.7%, respectively, this month as the risk of a no-deal exit reduced.Utilities and TransportShares of companies that keep Britons warm and bathed have been an excellent indicator of U.K. election risk ever since Labour first vowed to nationalize utilities a few years back. Top of this list are water and electricity utilities, covering the likes of United Utilities Group Plc, Severn Trent Plc, National Grid Plc and SSE Plc.“While fears of nationalization under Corbyn’s rule have remained subdued with lingering Brexit angst, a renewed Labour leadership campaign could weigh heavily on U.K. utilities,” said Andrew Coury, a strategist at Liberum Capital.But if the Conservatives are able to regain power in an election, this threat would evaporate and the underperformance of U.K. utilities to their European peers may be reversed. It could be a similar story for other stocks and sectors Labour is said to have targeted for nationalization, including postal-service operator Royal Mail Plc and the companies that run British transport services like FirstGroup Plc and Stagecoach Group Plc.HousebuildersThe U.K. still suffers from an imbalance between the demand for housing and the volume of new houses being built, so any party campaigning for government would likely have to address this as part of their policy platform.Liberum expects the housing market to slow in the run-up to the election, but that housebuilder shares may outperform should the Conservatives emerge victorious. It particularly favors smaller companies such as Bellway Plc and Galliford Try Plc, which it says should benefit from better risk appetite and which have more attractive valuations.DefenseCorbyn has been a vocal opponent of military intervention in the Middle East and has argued for the suspension of arms sales to Saudi Arabia. His anti-war stance could hurt defense suppliers such as BAE Systems Plc, according to Citi, which estimated Aug. 1 that the London-based firm’s stock could fall 20% if Labour came to power.The U.K.’s Dreadnought nuclear deterrent submarine program -- another of BAE’s projects -- would also be at risk, Citi analyst Charles Armitage wrote. The level of risk to Dreadnought would be reduced if Labour entered a coalition with the Liberal Democrats, he said. A pact with the Scottish National Party would leave both Dreadnought and the Saudi business vulnerable, Armitage added.RetailersIf an election can produce a clear winner and therefore some clarity on the way forward, that may prove positive for retailers as shoppers should be more confident to spend.However, if the ultimate outcome is a hung parliament, making passing legislation even more difficult, that would likely be negative for the sector.Also watch for any impact on companies that own Britain’s shops, particularly the already-battered mall owners Intu Properties Plc and Hammerson Plc. Though UBS analysts think Brexit is only one of the problems that the sub-sector faces.ConstructionU.K. Chancellor of the Exchequer Sajid Javid used his first set piece event in the role in early September to lay out plans to spend more money on infrastructure. There have been no further details since then and Javid had to cancel his planned Budget announcement, but if this is revived it would be positive for construction contractors like Balfour Beatty Plc, Costain Group Plc and Keller Group Plc.To contact the reporters on this story: Joe Easton in London at jeaston7@bloomberg.net;Sam Unsted in London at sunsted@bloomberg.netTo contact the editors responsible for this story: Beth Mellor at bmellor@bloomberg.net, Paul JarvisFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",,These Are The Stocks to Watch as U.K. Heads to the Polls Again -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -Vindman reportedly testified Trump thought Devin Nunes' inexperienced former staffer was a top Ukraine expert,"Wed, 30 Oct 2019 22:32:00 -0400",https://news.yahoo.com/vindman-reportedly-testified-trump-thought-023200283.html,"During his testimony before House investigators on Tuesday, Lt. Col. Alexander Vindman, the National Security Council's top Ukraine expert, said President Trump was under the impression that a different person -- a longtime staffer of Rep. Devin Nunes (R-Calif.) -- actually held his position, people familiar with his testimony told Politico. Vindman said that Kashyap Patel ""misrepresented"" himself, and despite having no experience or expertise on Ukraine, was part of the White House's Ukraine policy discussion, Politico reports. Vindman found this out after he attended Ukrainian President Volodymyr Zelensky's inauguration in May, and was preparing to give Trump a debriefing on the event and Zelensky's plans for the future, he reportedly testified. Vindman revealed that ""at the last second,"" his boss at the time, Fiona Hill, told him not to attend the debriefing because it might confuse Trump, who thought Patel was the top Ukraine expert.Patel, Nunes' top staffer on the House Intelligence Committee, was known for trying to discredit Justice Department and FBI officials who investigated Russian meddling in the 2016 election, Politico reports. He joined the White House in February, and in July, was promoted to a senior counterterrorism role. Hill testified earlier this month that Trump thought Patel was in charge of the National Security Council's Ukraine policy, Politico says.Vindman, who told investigators he's never had a conversation with Patel, also said he was told Patel ignored National Security Council procedures and put negative information about Ukraine in front of Trump, which reinforced his belief that the country was corrupt, Politico reports. It's unclear where he received this information. Read more at Politico.",,Vindman reportedly testified Trump thought Devin Nunes' inexperienced former staffer was a top Ukraine expert -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Ilhan Omar refuses to back vote recognising Armenian genocide,"Wed, 30 Oct 2019 10:33:02 -0400",https://news.yahoo.com/ilhan-omar-refuses-back-vote-143204618.html,"Ilhan Omar declined to vote in favour of a resolution recognising the mass killing of Armenians by Ottoman Turks as a genocide, saying any ""true acknowledgement"" of such crimes must include other historical ""mass slaughters"".The Minnesota Democrat was one of just three House members to vote “present” on the resolution that passed in an overwhelming 405-11 vote.",http://l.yimg.com/uu/api/res/1.2/bKw.a_m3fIWm1q5agamYdg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/1897802b491bb4f925ff56eb4356225e,Ilhan Omar refuses to back vote recognising Armenian genocide -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -"3 killed, 9 wounded in shooting at party in California home","Wed, 30 Oct 2019 18:19:39 -0400",https://news.yahoo.com/3-killed-9-injured-shooting-082755536.html,"A gunman who opened fire from an alley into a party killed three people and wounded nine others in California before fleeing in a vehicle, police said Wednesday. Police Chief Robert Luna called the shooter a coward and urged residents to come forward with any information that might lead to an arrest. Three men were killed, and seven women and two men were taken to hospitals with gunshot wounds.",http://l1.yimg.com/uu/api/res/1.2/4loESatU5y24ZYWRLOpuzA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/83a373c832dba305692e2824e24defae,"3 killed, 9 wounded in shooting at party in California home" -Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist","Wed, 30 Oct 2019 10:48:12 -0400",https://news.yahoo.com/jeffrey-epsteins-death-likely-homicide-144812652.html,"A famed pathologist says he believes Jeffrey Epstein’s death was actually a homicide, in spite of the official ruling that it was death by suicide.Epstein was found dead in August in New York City, after being arrested for sex trafficking. Since his death, the deceased financier’s ties to prominent figures in American media and politics — including presidents Bill Clinton and Donald Trump — have fuelled rampant conspiracies that he was silenced.",http://l1.yimg.com/uu/api/res/1.2/u5vAa2gLJ3bXDNFgyxGsog--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/7fc831f264b4d752c142dfebba61bfd2,"Jeffrey Epstein's death was 'likely homicide, not suicide', says famed NYC pathologist" -Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief,"Wed, 30 Oct 2019 14:33:29 -0400",https://news.yahoo.com/dem-rep-claims-trump-immigration-183329201.html,"Florida Democratic Rep. Debbie Wasserman Schultz accused President Trump and acting U.S. Citizenship and Immigration Services Director Ken Cuccinelli on Wednesday of implementing immigration policy in service of a ""white supremacist ideology.""The accusations came during a hearing of the House Oversight Committee on immigration policy.""You and Mr. Trump don't want anyone who looks or talks or differently than Caucasian Americans to be allowed into this country,"" Wasserman Schultz began. A staffer sitting behind her was captured on video as her eyes widened in shock.""You have demonstrated that you will pursue this heinous white supremacist ideology at all costs,"" said Wasserman Schultz. Cuccinelli answered that neither he nor the President was a white supremacist.""That's false,"" Cuccinelli said, calling Wasserman Schultz's statements ""defamatory.""Cuccinelli had been summoned to the hearing to discuss the Trump administration's decision to temporarily stop granting deportation deferments for illegal aliens receiving life-saving treatment in the U.S.Representative Ayanna Pressley (D., Ohio) also entered into a heated exchange with Cuccinelli over who was responsible for the decision, himself or White House officials. Cuccinelli repeatedly asserted that he made the decision and that no White House official was involved.Trump had considered appointing Cuccinelli secretary of the Department of Homeland Security. However, Senator Chuck Grassley (R., Iowa) said the idea was a non-starter.“It’s my understanding that the existing law would not permit him to” lead the organization, Grassley said. “I don’t know how you get around that.” Grassley was referring to current laws that govern succession rules within the federal government.On Tuesday, a top Border Patrol official warned that illegal immigration could hit crisis levels if courts keep blocking Trump's immigration policies.""We will go back, mark the words, we will go back to the crisis level that we had before,"" said chief of law enforcement operations for the Border Patrol Brian Hastings. ""It is kind of a new norm. We’re at risk at any time.”",http://l.yimg.com/uu/api/res/1.2/RFoYpPiIn0Rwg.8YJSn9dg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/389fd00c7d797b34554219a9175aabcb,Dem Rep Claims Trump’s Immigration Policy Reflects a ‘White Supremacist Ideology’ While Grilling USCIS Chief -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -California businessman gets prison for U.S. college admissions scam,"Wed, 30 Oct 2019 18:25:54 -0400",https://news.yahoo.com/california-businessman-gets-prison-u-222554860.html,"A former California business executive was sentenced on Wednesday to two months in prison for taking part in a vast U.S. college admissions fraud scheme by paying $250,000 to secure his son's admission to the University of Southern California. Federal prosecutors in Boston had sought nine months in prison for Jeffrey Bizzack, who they said sought to secure his son's admission through a ""side door"" by agreeing to bribe a USC official to designate him as a fake athletic recruit. U.S. District Judge Douglas Woodlock said prosecutors lacked evidence to support some of their arguments for a higher sentence.",http://l.yimg.com/uu/api/res/1.2/lEh4n6Nu9abRf1foukH6Gw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/298583d99339cc271df308ca177e42f4,California businessman gets prison for U.S. college admissions scam -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe -Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -"White House blocked effort to condemn Russia for seizing Ukraine ships, Congress told","Wed, 30 Oct 2019 16:46:00 -0400",https://news.yahoo.com/white-house-blocked-effort-condemn-204600202.html,"State department aide makes revelation in testimony, while Russia envoy nominee John Sullivan grilled at confirmation hearingDonald Trump with Vladimir Putin at the G20 summit in Osaka in June this year. Trump voiced concern over the 2018 capture but did not blame Moscow. Photograph: Mikhail Klimentyev/TassThe White House blocked the US state department from issuing a statement condemning Russia for seizing Ukrainian military vessels, according to a state department official, in the latest example of the strain the Trump administration is under in pursuing conflicting policies towards the two countries.The revelation on Wednesday came from Christopher Anderson, who was a senior aide to the special envoy on Ukraine, Kurt Volker, in November 2018, when Russia fired on and captured three Ukrainian vessels in the Sea of Azov off the Crimean peninsula.“While my colleagues at the state department quickly prepared a statement condemning Russia for its escalation, senior officials in the White House blocked it from being issued,” Anderson said in his prepared remarks to congressional committees holding impeachment hearings. “Ambassador Volker drafted a tweet condemning Russia’s actions, which I posted to his account.”In the face of silence from the White House, the then US ambassador to the UN, Nikki Haley, condemned Russian behaviour, after which the secretary of state, Mike Pompeo, followed suit. Trump voiced concern but did not blame Moscow.The 24 Ukrainian sailors detained in the operation were returned last month as part of a prisoner exchange.Anderson, and his successor in the Ukraine job, Catherine Croft, both testified to House committees on Wednesday about the role played by Trump’s personal lawyer, Rudy Giuliani, in foiling state department efforts to bolster the president, Volodymyr Zelenskiy, in the face of Russian military intervention in eastern Ukraine.In his testimony, Anderson quoted the former national security adviser, John Bolton, as saying: “Giuliani was a key voice with the president on Ukraine which could be an obstacle to increased White House engagement.” On Wednesday, the House committees asked Bolton to testify on 7 November, but it is unclear whether he will attend.Bolton’s former deputy, Charles Kupperman, is currently seeking a court ruling on whether to comply with his congressional subpoena in the face of a White House order not to testify.At the other side of Congress, the nominee to become ambassador to Russia, John Sullivan, faced pointed questions on Wednesday at confirmation hearings in the Senate about Giuliani and the split US policy towards Russia and Ukraine.Sullivan, currently the deputy secretary of state, said he was aware of Giuliani’s role in a campaign against the former US ambassador to Ukraine, Marie Yovanovitch. Asked if he knew Trump’s lawyer was “seeking to smear” Yovanovitch, he replied: “I believe he was, yes.”Sullivan confirmed he had been shown a dossier of material attacking Yovanovitch, saying it had provided by the White House to the state department legal adviser, but he was not aware it had been put together by Giuliani. He said the dossier “didn’t provide to me a basis for taking action against our ambassador”.He said that Pompeo gave Sullivan no explanation for the decision to recall Yovanovitch before the end of her posting, other than she had “lost the confidence of the president”.“As I understand, [Trump] may decide that he doesn’t like my testimony today and he doesn’t want me to go to Russia. The president can decide when he loses confidence in his ambassador – then that person is not going to continue as ambassador,” Sullivan said.Sullivan sought to avoid taking a position on the testimony by several former and current state department officials that the president, through Giuliani, had made a White House meeting and US military aid dependent on the Ukrainian government investigating Trump’s political rivals.“Soliciting investigations into a domestic political opponent – I don’t think that would be in accord with our values,” Sullivan said. But he would not confirm that was what the president had done.Democratic senators signaled that they were prepared to support Sullivan’s nomination as an experienced and respected diplomat, acknowledging the difficult position he was in. But they expressed concern he had not done more to find out what Trump and Giuliani were trying to achieve in Ukraine.The ranking Democrat on the Senate foreign relations committee, Bob Menendez, told Sullivan he had been playing the role of “see no evil, hear no evil, speak no evil.”“You’re going to go to Russia, and you’re going to be saying one set of things based upon your testimony here,” Menendez said. “And we have the president who, in his public statements, is totally aligned differently than what you’re going to be saying.”“Do you understand the incredibly difficult job that you’re going to have as a result of that?” Menendez asked Sullivan.“I would say, senator, you’ve cited the president’s statements. I’d cite the president’s actions,” the nominee replied, listing sanctions the administration had imposed on Russia.",http://l1.yimg.com/uu/api/res/1.2/3dFxIoizaUY49lyZT_4bZQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/e71dc403755334597d5e870705964abd,"White House blocked effort to condemn Russia for seizing Ukraine ships, Congress told" -Case of school security guard who told student not to use N-word shows respect trumps race,"Wed, 30 Oct 2019 14:42:30 -0400",https://news.yahoo.com/case-school-security-guard-told-100011134.html,"Who am I, a white man, to police the racial language of my African American students? But, despite the queasy feeling, sometimes the answer is clear.",http://l2.yimg.com/uu/api/res/1.2/o8VwD12CWsKdcI9wgrsaAA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/0c35a4d27f9ac6c1e977e7ac1a1304fd,Case of school security guard who told student not to use N-word shows respect trumps race -A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers,"Wed, 30 Oct 2019 02:24:26 -0400",https://news.yahoo.com/former-juul-executive-filed-lawsuit-062426154.html,"A former Juul executive alleged in a lawsuit that the company retaliated against him after he brought up concerns about bad products. Juul calls his claims ""baseless.""",http://l.yimg.com/uu/api/res/1.2/xNrM5VZhBLcF5M.HjHILNQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/190f836d6e7a718397b1af34646c9f43,A former Juul executive filed a lawsuit alleging that the company shipped 1 million tainted pods to customers and retailers -Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’,"Wed, 30 Oct 2019 19:26:25 -0400",https://news.yahoo.com/rachel-maddow-president-trump-did-232625976.html,MSNBC host Rachel Maddow joins Yahoo News Editor in Chief Daniel Klaidman and Chief Investigative Correspondent Michael Isikoff to discuss whether the House Foreign Relations Committee should consider other things Trump has done similar to the Ukraine phone call and fold it into the investigation.,http://l.yimg.com/uu/api/res/1.2/sXd3MEc22T6cGd2oI.zXtg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://s.yimg.com/os/creatr-uploaded-images/2019-10/883f2470-fb6c-11e9-b9bd-c17b2993f6f2,Rachel Maddow on President Trump: ‘He did ask China to investigate Biden too’ -View Photos of the 2020 Hyundai Palisade vs. 2020 Kia Telluride,"Wed, 30 Oct 2019 13:59:00 -0400",https://news.yahoo.com/view-photos-2020-hyundai-palisade-175900825.html,,,View Photos of the 2020 Hyundai Palisade vs. 2020 Kia Telluride -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Trump impeachment: Official says she was repeatedly urged to oust Ukraine ambassador by Republican lobbyist,"Wed, 30 Oct 2019 13:42:15 -0400",https://news.yahoo.com/trump-impeachment-official-says-she-173641664.html,"A US government official has reportedly told politicians leading the impeachment hearings against Donald Trump that she was urged by a Republican-linked lobbyist to remove the US ambassador to Ukraine from her post, as the president's allies launched a smear campaign against her.Catherine Croft, a Ukraine expert who worked at the US State Department, said she was repeatedly contacted by lobbyist Robert Livingston about ousting Marie Yovanovitch, according to prepared remarks obtained by NPR.",http://l1.yimg.com/uu/api/res/1.2/nVkJygcXB2.gOJuTGtcu3g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/73445d843f38e1903d61cd077fea3e46,Trump impeachment: Official says she was repeatedly urged to oust Ukraine ambassador by Republican lobbyist -Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" -Former CIA Director Brennan: Votes were swayed by Russian influence operation,"Wed, 30 Oct 2019 21:57:33 -0400",https://news.yahoo.com/former-cia-director-brennan-votes-015733357.html,"Former CIA Director John Brennan said on Wednesday that at least some American voters were swayed as a result of Russia's 2016 election interference operation, a statement that went further than the official assessments of U.S. intelligence agencies and lawmakers. “How many, in which states, I don’t know.",,Former CIA Director Brennan: Votes were swayed by Russian influence operation -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote -The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire -Vindman reportedly testified Trump thought Devin Nunes' inexperienced former staffer was a top Ukraine expert,"Wed, 30 Oct 2019 22:32:00 -0400",https://news.yahoo.com/vindman-reportedly-testified-trump-thought-023200283.html,"During his testimony before House investigators on Tuesday, Lt. Col. Alexander Vindman, the National Security Council's top Ukraine expert, said President Trump was under the impression that a different person -- a longtime staffer of Rep. Devin Nunes (R-Calif.) -- actually held his position, people familiar with his testimony told Politico. Vindman said that Kashyap Patel ""misrepresented"" himself, and despite having no experience or expertise on Ukraine, was part of the White House's Ukraine policy discussion, Politico reports. Vindman found this out after he attended Ukrainian President Volodymyr Zelensky's inauguration in May, and was preparing to give Trump a debriefing on the event and Zelensky's plans for the future, he reportedly testified. Vindman revealed that ""at the last second,"" his boss at the time, Fiona Hill, told him not to attend the debriefing because it might confuse Trump, who thought Patel was the top Ukraine expert.Patel, Nunes' top staffer on the House Intelligence Committee, was known for trying to discredit Justice Department and FBI officials who investigated Russian meddling in the 2016 election, Politico reports. He joined the White House in February, and in July, was promoted to a senior counterterrorism role. Hill testified earlier this month that Trump thought Patel was in charge of the National Security Council's Ukraine policy, Politico says.Vindman, who told investigators he's never had a conversation with Patel, also said he was told Patel ignored National Security Council procedures and put negative information about Ukraine in front of Trump, which reinforced his belief that the country was corrupt, Politico reports. It's unclear where he received this information. Read more at Politico.",,Vindman reportedly testified Trump thought Devin Nunes' inexperienced former staffer was a top Ukraine expert -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe -Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -Trump impeachment: Official says she was repeatedly urged to oust Ukraine ambassador by Republican lobbyist,"Wed, 30 Oct 2019 13:42:15 -0400",https://news.yahoo.com/trump-impeachment-official-says-she-173641664.html,"A US government official has reportedly told politicians leading the impeachment hearings against Donald Trump that she was urged by a Republican-linked lobbyist to remove the US ambassador to Ukraine from her post, as the president's allies launched a smear campaign against her.Catherine Croft, a Ukraine expert who worked at the US State Department, said she was repeatedly contacted by lobbyist Robert Livingston about ousting Marie Yovanovitch, according to prepared remarks obtained by NPR.",http://l1.yimg.com/uu/api/res/1.2/nVkJygcXB2.gOJuTGtcu3g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/73445d843f38e1903d61cd077fea3e46,Trump impeachment: Official says she was repeatedly urged to oust Ukraine ambassador by Republican lobbyist -"Special Report: In a working-class Hong Kong neighborhood, the protests hit home","Wed, 30 Oct 2019 08:05:30 -0400",https://news.yahoo.com/special-report-working-class-hong-120530805.html,"From the top of Lion Rock, all of Hong Kong reveals itself: the sprawl of the Kowloon Peninsula directly below, the iconic Star Ferry plying the waters of Victoria Harbor, the moneyed heights of Hong Kong island beyond. In the shadow of the revered mountain rise huge monoliths, drab concrete tower blocks far removed from the glittering glass highrises of Hong Kong island's steroidal skyline. Here, in a neighborhood of public housing estates called Wong Tai Sin, seemingly endless stacks of aging windows heave with drying laundry and hum with air conditioners sweating droplets onto the pavement below.",http://l.yimg.com/uu/api/res/1.2/F9Ge8Jbxe9MBf8mEm7JaUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/6360044a87d60947847b5654efb286ca,"Special Report: In a working-class Hong Kong neighborhood, the protests hit home" -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -Democrats accused Republicans of trying to trick an impeachment witness into naming the whistleblower,"Wed, 30 Oct 2019 07:50:37 -0400",https://news.yahoo.com/democrats-accused-republicans-trying-trick-115037056.html,"In a closed-door deposition, Republicans questioned Lt. Col. Vindman on whom he had discussed trump's Ukraine call with, alarming Democrats.",http://l.yimg.com/uu/api/res/1.2/qN4ONngqfmq8d.vUl27giA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/81772143405c0f5364cae32715593259,Democrats accused Republicans of trying to trick an impeachment witness into naming the whistleblower -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames -NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden,"Wed, 30 Oct 2019 15:28:10 -0400",https://news.yahoo.com/nyc-medical-examiner-dismisses-epstein-192810863.html,"Robyn Beck/ReutersNew York City’s chief medical examiner pushed back hard Wednesday against a celebrity pathologist-for-hire’s conspiracy-stirring claim that Jeffrey Epstein’s autopsy was more consistent with homicide than suicide.“The original medical investigation was thorough and complete. There is no reason for a second medical investigation by our office,” said Dr. Barbara Sampson.Sampson determined Epstein died by suicide from hanging in his jail cell in August, while he was awaiting trial on sex-trafficking charges.Epstein’s lawyers and family have refused to accept her finding, and the disgraced financier’s brother hired Dr. Michael Baden—erstwhile host of HBO’s Autopsy—to do his own investigation.Jeffrey Epstein’s Death Ruled Suicide by Hanging: New York City Medical ExaminerDuring an appearance Wednesday morning on Fox News, where he is a contributor, Baden said his own review isn’t complete but nonetheless suggested that suicide isn’t the cause of death.He claimed a collection of neck fractures in Epstein’s hyoid bone and thyroid cartilage “are extremely unusual in suicidal hangings and could occur much more commonly in homicidal strangulation.”“I’ve not seen in 50 years where that occurred in a suicidal hanging case,” Baden said.Although more common in homicidal strangulation cases, some studies have found that hyoid and thyroid fractures are not rare in suicidal hangings.A 2000 study in Australia found fractures in nearly half the 40 suicide cases it examined and said they were even more common in older victims and men; in fact, 15 percent had fractures of both the hyoid and the thyroid. And a 2010 study out of Thailand found such fractures in 25 percent of the confirmed suicides it reviewed.After His Suicide Watch Ended, Jeffrey Epstein Was Left to Look After HimselfBaden, who observed the autopsy performed by Sampson, served briefly as the city’s chief medical examiner before being fired in 1979 by then-Mayor Ed Koch in response to a complaint that he told doctors during a guest-speaking event that Gov. Nelson Rockefeller had died during sexual intercourse.Three years later, he was dismissed as chief deputy medical examiner by Suffolk County, New York, over a magazine article about ways to kill that wouldn’t show up in an autopsy; he protested that he was misquoted.In the '70s, Baden helped Congress investigate the assassinations of President John F. Kennedy and Martin Luther King Jr.—he concluded that Lee Harvey Oswald and James Earl Ray, respectively, were the killers—but became famous for serving as a private pathologist in high-profile cases like the Aaron Hernandez suicide, the O.J. Simpson murder trial, and the Jayson Williams shooting. He also served as a defense witness in the Phil Spector murder trial, where he reportedly testified that he had no conflict of interest in the case even though his wife was heading Spector’s legal team.Baden isn’t the only one skeptical about the official account of Epstein’s death at the high-security federal lockup in Manhattan, which is currently the subject of a Justice Department probe.Spencer Kuvin, a lawyer representing victims of Epstein, said serious questions remain, including the whereabouts of the guards assigned to monitor him, why the cameras outside his cell apparently didn’t work, and why he was taken off suicide watch.“It all makes no sense. Until they come out with the evidence, I don’t believe anything they’re telling us,” Kuvin said. “Exactly what happened I can’t tell you, but I certainly don’t believe the story they’re trying to feed everyone.”Sigrid McCawley, an attorney at Boies Schiller Flexner, the law firm representing some of Epstein’s victims, said the ongoing Justice Department probe “limits what can and should be said at this time.”“But as the public has come to to understand the horrifying scope and scale of the international sex trafficking system he operated for decades with impunity, what really matters for the brave survivors who are seeking justice is how he lived, not how he died,” she said. “That is how the man should be judged.”Kuvin said his clients are “more interested in seeing co-conspirators prosecuted” than in delving into Epstein autopsy theories.“The justice system failed. They either allowed him to take his own life or someone got in there and killed him,” Kuvin told The Daily Beast. “Either way, it’s a failure of the Justice Department
 [which] has failed them repeatedly over the last 13 years. This was just one more time.”If you or a loved one are struggling with suicidal thoughts, please reach out to the National Suicide Prevention Lifeline at 1-800-273-TALK (8255), or contact the Crisis Text Line by texting TALK to 741741Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/siZIeVPuJ9_PWKpedfWniw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/ecf97654f18e608d05355321d695ab3a,NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -"CIA-backed Afghan units carry out illegal killings, other abuse - group","Wed, 30 Oct 2019 23:30:24 -0400",https://news.yahoo.com/cia-backed-afghan-units-carry-033024655.html,"Afghan security units backed by the U.S. Central Intelligence Agency (CIA) have carried out extrajudicial executions, enforced disappearances, indiscriminate air strikes and other rights abuses and should be disbanded, a rights group said on Thursday. Human Rights Watch said it investigated 14 cases in which CIA-backed Afghan counterinsurgency forces committed serious abuses in Afghanistan between late 2017 and mid-2019. ""They are illustrative of a larger pattern of serious laws-of-war violations — some amounting to war crimes — that extends to all provinces in Afghanistan where these paramilitary forces operate with impunity,"" the group said in a report.",,"CIA-backed Afghan units carry out illegal killings, other abuse - group" -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? -"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe -Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -Trump impeachment: Official says she was repeatedly urged to oust Ukraine ambassador by Republican lobbyist,"Wed, 30 Oct 2019 13:42:15 -0400",https://news.yahoo.com/trump-impeachment-official-says-she-173641664.html,"A US government official has reportedly told politicians leading the impeachment hearings against Donald Trump that she was urged by a Republican-linked lobbyist to remove the US ambassador to Ukraine from her post, as the president's allies launched a smear campaign against her.Catherine Croft, a Ukraine expert who worked at the US State Department, said she was repeatedly contacted by lobbyist Robert Livingston about ousting Marie Yovanovitch, according to prepared remarks obtained by NPR.",http://l1.yimg.com/uu/api/res/1.2/nVkJygcXB2.gOJuTGtcu3g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/73445d843f38e1903d61cd077fea3e46,Trump impeachment: Official says she was repeatedly urged to oust Ukraine ambassador by Republican lobbyist -"Special Report: In a working-class Hong Kong neighborhood, the protests hit home","Wed, 30 Oct 2019 08:05:30 -0400",https://news.yahoo.com/special-report-working-class-hong-120530805.html,"From the top of Lion Rock, all of Hong Kong reveals itself: the sprawl of the Kowloon Peninsula directly below, the iconic Star Ferry plying the waters of Victoria Harbor, the moneyed heights of Hong Kong island beyond. In the shadow of the revered mountain rise huge monoliths, drab concrete tower blocks far removed from the glittering glass highrises of Hong Kong island's steroidal skyline. Here, in a neighborhood of public housing estates called Wong Tai Sin, seemingly endless stacks of aging windows heave with drying laundry and hum with air conditioners sweating droplets onto the pavement below.",http://l.yimg.com/uu/api/res/1.2/F9Ge8Jbxe9MBf8mEm7JaUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/6360044a87d60947847b5654efb286ca,"Special Report: In a working-class Hong Kong neighborhood, the protests hit home" -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -Democrats accused Republicans of trying to trick an impeachment witness into naming the whistleblower,"Wed, 30 Oct 2019 07:50:37 -0400",https://news.yahoo.com/democrats-accused-republicans-trying-trick-115037056.html,"In a closed-door deposition, Republicans questioned Lt. Col. Vindman on whom he had discussed trump's Ukraine call with, alarming Democrats.",http://l.yimg.com/uu/api/res/1.2/qN4ONngqfmq8d.vUl27giA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/81772143405c0f5364cae32715593259,Democrats accused Republicans of trying to trick an impeachment witness into naming the whistleblower -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -California fires: new blazes as dangerous winds fan the flames,"Wed, 30 Oct 2019 22:21:41 -0400",https://news.yahoo.com/california-fires-blaze-near-la-progress-north-172017793.html,"Firefighters in California struggled to contain a new fast-moving blaze on Wednesday that threatened thousands of homes and the Ronald Reagan Presidential Library, as rare ""extreme"" red flag warnings were issued for much of the Los Angeles region. The so-called Easy Fire in the Simi Valley northwest of Los Angeles erupted around 6:00 am, forcing the evacuation of the library and nearby homes as it spread to more than 1,500 acres (526 hectares), officials said. ""The fire outflanked us very rapidly, pushed by those 40 to 50 mile-per-hour winds,"" Ventura County Fire Assistant Chief Chad Cook told reporters.",http://l1.yimg.com/uu/api/res/1.2/FSosbjifMKMbPiDiPJpodw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/0825d6326f2d1f6b043aa3422f967fdf6e1d8c81.jpg,California fires: new blazes as dangerous winds fan the flames -NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden,"Wed, 30 Oct 2019 15:28:10 -0400",https://news.yahoo.com/nyc-medical-examiner-dismisses-epstein-192810863.html,"Robyn Beck/ReutersNew York City’s chief medical examiner pushed back hard Wednesday against a celebrity pathologist-for-hire’s conspiracy-stirring claim that Jeffrey Epstein’s autopsy was more consistent with homicide than suicide.“The original medical investigation was thorough and complete. There is no reason for a second medical investigation by our office,” said Dr. Barbara Sampson.Sampson determined Epstein died by suicide from hanging in his jail cell in August, while he was awaiting trial on sex-trafficking charges.Epstein’s lawyers and family have refused to accept her finding, and the disgraced financier’s brother hired Dr. Michael Baden—erstwhile host of HBO’s Autopsy—to do his own investigation.Jeffrey Epstein’s Death Ruled Suicide by Hanging: New York City Medical ExaminerDuring an appearance Wednesday morning on Fox News, where he is a contributor, Baden said his own review isn’t complete but nonetheless suggested that suicide isn’t the cause of death.He claimed a collection of neck fractures in Epstein’s hyoid bone and thyroid cartilage “are extremely unusual in suicidal hangings and could occur much more commonly in homicidal strangulation.”“I’ve not seen in 50 years where that occurred in a suicidal hanging case,” Baden said.Although more common in homicidal strangulation cases, some studies have found that hyoid and thyroid fractures are not rare in suicidal hangings.A 2000 study in Australia found fractures in nearly half the 40 suicide cases it examined and said they were even more common in older victims and men; in fact, 15 percent had fractures of both the hyoid and the thyroid. And a 2010 study out of Thailand found such fractures in 25 percent of the confirmed suicides it reviewed.After His Suicide Watch Ended, Jeffrey Epstein Was Left to Look After HimselfBaden, who observed the autopsy performed by Sampson, served briefly as the city’s chief medical examiner before being fired in 1979 by then-Mayor Ed Koch in response to a complaint that he told doctors during a guest-speaking event that Gov. Nelson Rockefeller had died during sexual intercourse.Three years later, he was dismissed as chief deputy medical examiner by Suffolk County, New York, over a magazine article about ways to kill that wouldn’t show up in an autopsy; he protested that he was misquoted.In the '70s, Baden helped Congress investigate the assassinations of President John F. Kennedy and Martin Luther King Jr.—he concluded that Lee Harvey Oswald and James Earl Ray, respectively, were the killers—but became famous for serving as a private pathologist in high-profile cases like the Aaron Hernandez suicide, the O.J. Simpson murder trial, and the Jayson Williams shooting. He also served as a defense witness in the Phil Spector murder trial, where he reportedly testified that he had no conflict of interest in the case even though his wife was heading Spector’s legal team.Baden isn’t the only one skeptical about the official account of Epstein’s death at the high-security federal lockup in Manhattan, which is currently the subject of a Justice Department probe.Spencer Kuvin, a lawyer representing victims of Epstein, said serious questions remain, including the whereabouts of the guards assigned to monitor him, why the cameras outside his cell apparently didn’t work, and why he was taken off suicide watch.“It all makes no sense. Until they come out with the evidence, I don’t believe anything they’re telling us,” Kuvin said. “Exactly what happened I can’t tell you, but I certainly don’t believe the story they’re trying to feed everyone.”Sigrid McCawley, an attorney at Boies Schiller Flexner, the law firm representing some of Epstein’s victims, said the ongoing Justice Department probe “limits what can and should be said at this time.”“But as the public has come to to understand the horrifying scope and scale of the international sex trafficking system he operated for decades with impunity, what really matters for the brave survivors who are seeking justice is how he lived, not how he died,” she said. “That is how the man should be judged.”Kuvin said his clients are “more interested in seeing co-conspirators prosecuted” than in delving into Epstein autopsy theories.“The justice system failed. They either allowed him to take his own life or someone got in there and killed him,” Kuvin told The Daily Beast. “Either way, it’s a failure of the Justice Department
 [which] has failed them repeatedly over the last 13 years. This was just one more time.”If you or a loved one are struggling with suicidal thoughts, please reach out to the National Suicide Prevention Lifeline at 1-800-273-TALK (8255), or contact the Crisis Text Line by texting TALK to 741741Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/siZIeVPuJ9_PWKpedfWniw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/ecf97654f18e608d05355321d695ab3a,NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -"CIA-backed Afghan units carry out illegal killings, other abuse - group","Wed, 30 Oct 2019 23:30:24 -0400",https://news.yahoo.com/cia-backed-afghan-units-carry-033024655.html,"Afghan security units backed by the U.S. Central Intelligence Agency (CIA) have carried out extrajudicial executions, enforced disappearances, indiscriminate air strikes and other rights abuses and should be disbanded, a rights group said on Thursday. Human Rights Watch said it investigated 14 cases in which CIA-backed Afghan counterinsurgency forces committed serious abuses in Afghanistan between late 2017 and mid-2019. ""They are illustrative of a larger pattern of serious laws-of-war violations — some amounting to war crimes — that extends to all provinces in Afghanistan where these paramilitary forces operate with impunity,"" the group said in a report.",,"CIA-backed Afghan units carry out illegal killings, other abuse - group" -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -Why are California's wildfires different this year?,"Wed, 30 Oct 2019 17:40:27 -0400",https://news.yahoo.com/why-californias-wildfires-different-214027211.html,"Destructive wildfires have ripped through California, threatening homes and famous landmarks, and forcing power outages that have plunged millions into darkness. Everything from climate change to corporate negligence has been blamed for the chaos, which has seen hundreds of thousands evacuated, and hundreds of structures destroyed. The 20 worst California wildfires on record all destroyed over 500 structures, or burned 140,000 acres, according to state agency Cal Fire.",http://l.yimg.com/uu/api/res/1.2/rK0tn.isV_ixOwA4qkP.SA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/8196d2d31aca9e943e8cb211557a579998becec6.jpg,Why are California's wildfires different this year? -"More than 1,000 homeless people died in Los Angeles county last year","Wed, 30 Oct 2019 16:20:14 -0400",https://news.yahoo.com/homeless-deaths-la-county-double-202014816.html,"The county’s public health department has reported 1,047 deaths for last year, a number that has increased steadily since 2013A woman pushes a cart full of her belongings past tents near Skid Row in downtown Los Angeles. Photograph: Frederic J Brown/AFP/Getty ImagesMore than 1,000 homeless people died in Los Angeles county in 2018, double the number of deaths from six years ago. The increase is a stark illustration of the region’s severe housing crisis, advocates said.The LA county public health department reported this week that 1,047 homeless people died last year, a number that has steadily increased every year since 2013, when 536 people died. The leading causes of death were coronary heart disease, which accounted for 22% of deaths, followed by alcohol and drug overdose at 21%, transportation-related injuries at 9%, homicides at 6% and suicides at 5%.The data sheds light on a worsening public health emergency in the county, where officials estimate there are now 59,000 people homeless, including more than 44,000 people who are living unsheltered – in cars, tents, or makeshift quarters. The report also follows a string of high-profile attacks against homeless people in the area, including the killing of Darrell Fields, a beloved musician who was burned to death in his tent on Skid Row.“We’ve got three people a day dying on the streets,” said Adam Rice, an organizer with Los Angeles Community Action Network (LA Can), a group that had worked closely with Fields. “It is a complete failure of leadership. Darrell didn’t need to die. None of these people needed to die. The reason this is happening is because there’s not proper housing.”Darrell Fields, 62, was a homeless man in Los Angeles known as Mr Guitar. He was killed in August when his tent was set ablaze. Photograph: Los Angeles Community Action NetworkSoaring rents and a major shortage of affordable housing have pushed people out of their homes in the area, with more than half of unsheltered adults in a recent count saying they were experiencing homelessness for the first time. The county estimated that there are now 8,800 homeless families.“It brings an overwhelming sadness when you think about precious human beings dying in our streets when it can be avoided,” said the Rev Andy Bales, CEO of Union Rescue Mission (URM), which runs a shelter at Skid Row, at the epicenter of the crisis in downtown LA.The county’s analysis also found that the mortality rate among homeless people has also jumped: “Put simply, being homeless in LA county is becoming increasingly deadly,” the agency wrote.The increase in overdoses represented the largest jump in terms of causes of death, the report found. In addition, the mortality rate among white homeless people has decreased while the rate of deaths for black and Latino residents has increased, the county said. Overall, African Americans are four times more likely to experience homelessness in LA county than other groups.Of the transportation-related deaths, which include vehicle and train collisions, 82% of victims were pedestrians and cyclists.The county and local clinics have increasingly sent healthcare workers to encampments to try to serve people on the streets. More than 21,000 homeless people were also placed in housing last year, an increase from 2017, officials reported early this year.The health department report this week recommended more direct outreach to homeless people, the creation of a “death review team” to study the subject and more traffic safety measures near encampments.Bales predicted that medical visits were not enough to reverse the deadly trends: “What we need most is for everyone to be immediately under a roof and protected from the elements. Until that happens, the death rates will continue to grow 
 and more and more people will be devastated by homelessness.”The crisis demanded a more urgent response, he added: “How much evidence do we need to gather before we decide not to let another human being die on the street?”LA’s homeless crisis has recently received national attention, with the Trump administration suggesting it could pursue some kind of law enforcement crackdown, drawing skepticism from some local organizations. Advocates have criticized efforts to further criminalize people living on the streets and have argued that the government needs to put more funding to housing and shelter.“It’s really a travesty when you think about it. How many deaths could’ve been prevented?” said Kourtney Milligan, a 29-year-old homeless woman, who has lived on Skid Row. “The resources that they say are out there are so hard to find.”",http://l1.yimg.com/uu/api/res/1.2/s2XrfBGfKBrVbz9mGlm7bg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/f15aa3ae803200f5d01035f9967bdb02,"More than 1,000 homeless people died in Los Angeles county last year" -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash","Wed, 30 Oct 2019 17:39:49 -0400",https://news.yahoo.com/sen-kamala-harris-slash-staff-213949543.html,"Kamala Harris is dramatically restructuring her campaign by redeploying staffers to Iowa and laying off dozens of aides at her Baltimore headquarters, according to campaign sources and a memo obtained by Politico Wednesday, as she struggles to resuscitate her beleaguered presidential bid.",http://l1.yimg.com/uu/api/res/1.2/IfM5RBFcZKnTvYil5a9opg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314500-1572471482597.jpg,"Sen. Kamala Harris to slash staff, restructure campaign as she hemorrhages cash" -Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -"CIA-backed Afghan units carry out illegal killings, other abuse - group","Wed, 30 Oct 2019 23:30:24 -0400",https://news.yahoo.com/cia-backed-afghan-units-carry-033024655.html,"Afghan security units backed by the U.S. Central Intelligence Agency (CIA) have carried out extrajudicial executions, enforced disappearances, indiscriminate air strikes and other rights abuses and should be disbanded, a rights group said on Thursday. Human Rights Watch said it investigated 14 cases in which CIA-backed Afghan counterinsurgency forces committed serious abuses in Afghanistan between late 2017 and mid-2019. ""They are illustrative of a larger pattern of serious laws-of-war violations — some amounting to war crimes — that extends to all provinces in Afghanistan where these paramilitary forces operate with impunity,"" the group said in a report.",,"CIA-backed Afghan units carry out illegal killings, other abuse - group" -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp","Wed, 30 Oct 2019 08:48:29 -0400",https://news.yahoo.com/supreme-court-citizens-united-led-090034035.html,"Ukraine-gate illustrates precisely how independent expenditures can corrupt. Trump, Giuliani, Fruman and Parnas show how it's done. All in one month.",http://l.yimg.com/uu/api/res/1.2/oMrm78wfyXVi4Q1FxuwrGw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/0ad1be9ebb64ad4d5f7c03222769ad30,"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp" -A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden,"Wed, 30 Oct 2019 15:28:10 -0400",https://news.yahoo.com/nyc-medical-examiner-dismisses-epstein-192810863.html,"Robyn Beck/ReutersNew York City’s chief medical examiner pushed back hard Wednesday against a celebrity pathologist-for-hire’s conspiracy-stirring claim that Jeffrey Epstein’s autopsy was more consistent with homicide than suicide.“The original medical investigation was thorough and complete. There is no reason for a second medical investigation by our office,” said Dr. Barbara Sampson.Sampson determined Epstein died by suicide from hanging in his jail cell in August, while he was awaiting trial on sex-trafficking charges.Epstein’s lawyers and family have refused to accept her finding, and the disgraced financier’s brother hired Dr. Michael Baden—erstwhile host of HBO’s Autopsy—to do his own investigation.Jeffrey Epstein’s Death Ruled Suicide by Hanging: New York City Medical ExaminerDuring an appearance Wednesday morning on Fox News, where he is a contributor, Baden said his own review isn’t complete but nonetheless suggested that suicide isn’t the cause of death.He claimed a collection of neck fractures in Epstein’s hyoid bone and thyroid cartilage “are extremely unusual in suicidal hangings and could occur much more commonly in homicidal strangulation.”“I’ve not seen in 50 years where that occurred in a suicidal hanging case,” Baden said.Although more common in homicidal strangulation cases, some studies have found that hyoid and thyroid fractures are not rare in suicidal hangings.A 2000 study in Australia found fractures in nearly half the 40 suicide cases it examined and said they were even more common in older victims and men; in fact, 15 percent had fractures of both the hyoid and the thyroid. And a 2010 study out of Thailand found such fractures in 25 percent of the confirmed suicides it reviewed.After His Suicide Watch Ended, Jeffrey Epstein Was Left to Look After HimselfBaden, who observed the autopsy performed by Sampson, served briefly as the city’s chief medical examiner before being fired in 1979 by then-Mayor Ed Koch in response to a complaint that he told doctors during a guest-speaking event that Gov. Nelson Rockefeller had died during sexual intercourse.Three years later, he was dismissed as chief deputy medical examiner by Suffolk County, New York, over a magazine article about ways to kill that wouldn’t show up in an autopsy; he protested that he was misquoted.In the '70s, Baden helped Congress investigate the assassinations of President John F. Kennedy and Martin Luther King Jr.—he concluded that Lee Harvey Oswald and James Earl Ray, respectively, were the killers—but became famous for serving as a private pathologist in high-profile cases like the Aaron Hernandez suicide, the O.J. Simpson murder trial, and the Jayson Williams shooting. He also served as a defense witness in the Phil Spector murder trial, where he reportedly testified that he had no conflict of interest in the case even though his wife was heading Spector’s legal team.Baden isn’t the only one skeptical about the official account of Epstein’s death at the high-security federal lockup in Manhattan, which is currently the subject of a Justice Department probe.Spencer Kuvin, a lawyer representing victims of Epstein, said serious questions remain, including the whereabouts of the guards assigned to monitor him, why the cameras outside his cell apparently didn’t work, and why he was taken off suicide watch.“It all makes no sense. Until they come out with the evidence, I don’t believe anything they’re telling us,” Kuvin said. “Exactly what happened I can’t tell you, but I certainly don’t believe the story they’re trying to feed everyone.”Sigrid McCawley, an attorney at Boies Schiller Flexner, the law firm representing some of Epstein’s victims, said the ongoing Justice Department probe “limits what can and should be said at this time.”“But as the public has come to to understand the horrifying scope and scale of the international sex trafficking system he operated for decades with impunity, what really matters for the brave survivors who are seeking justice is how he lived, not how he died,” she said. “That is how the man should be judged.”Kuvin said his clients are “more interested in seeing co-conspirators prosecuted” than in delving into Epstein autopsy theories.“The justice system failed. They either allowed him to take his own life or someone got in there and killed him,” Kuvin told The Daily Beast. “Either way, it’s a failure of the Justice Department
 [which] has failed them repeatedly over the last 13 years. This was just one more time.”If you or a loved one are struggling with suicidal thoughts, please reach out to the National Suicide Prevention Lifeline at 1-800-273-TALK (8255), or contact the Crisis Text Line by texting TALK to 741741Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/siZIeVPuJ9_PWKpedfWniw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/ecf97654f18e608d05355321d695ab3a,NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden -UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote -The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire -Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -"CIA-backed Afghan units carry out illegal killings, other abuse - group","Wed, 30 Oct 2019 23:30:24 -0400",https://news.yahoo.com/cia-backed-afghan-units-carry-033024655.html,"Afghan security units backed by the U.S. Central Intelligence Agency (CIA) have carried out extrajudicial executions, enforced disappearances, indiscriminate air strikes and other rights abuses and should be disbanded, a rights group said on Thursday. Human Rights Watch said it investigated 14 cases in which CIA-backed Afghan counterinsurgency forces committed serious abuses in Afghanistan between late 2017 and mid-2019. ""They are illustrative of a larger pattern of serious laws-of-war violations — some amounting to war crimes — that extends to all provinces in Afghanistan where these paramilitary forces operate with impunity,"" the group said in a report.",,"CIA-backed Afghan units carry out illegal killings, other abuse - group" -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp","Wed, 30 Oct 2019 08:48:29 -0400",https://news.yahoo.com/supreme-court-citizens-united-led-090034035.html,"Ukraine-gate illustrates precisely how independent expenditures can corrupt. Trump, Giuliani, Fruman and Parnas show how it's done. All in one month.",http://l.yimg.com/uu/api/res/1.2/oMrm78wfyXVi4Q1FxuwrGw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/0ad1be9ebb64ad4d5f7c03222769ad30,"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp" -A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden,"Wed, 30 Oct 2019 15:28:10 -0400",https://news.yahoo.com/nyc-medical-examiner-dismisses-epstein-192810863.html,"Robyn Beck/ReutersNew York City’s chief medical examiner pushed back hard Wednesday against a celebrity pathologist-for-hire’s conspiracy-stirring claim that Jeffrey Epstein’s autopsy was more consistent with homicide than suicide.“The original medical investigation was thorough and complete. There is no reason for a second medical investigation by our office,” said Dr. Barbara Sampson.Sampson determined Epstein died by suicide from hanging in his jail cell in August, while he was awaiting trial on sex-trafficking charges.Epstein’s lawyers and family have refused to accept her finding, and the disgraced financier’s brother hired Dr. Michael Baden—erstwhile host of HBO’s Autopsy—to do his own investigation.Jeffrey Epstein’s Death Ruled Suicide by Hanging: New York City Medical ExaminerDuring an appearance Wednesday morning on Fox News, where he is a contributor, Baden said his own review isn’t complete but nonetheless suggested that suicide isn’t the cause of death.He claimed a collection of neck fractures in Epstein’s hyoid bone and thyroid cartilage “are extremely unusual in suicidal hangings and could occur much more commonly in homicidal strangulation.”“I’ve not seen in 50 years where that occurred in a suicidal hanging case,” Baden said.Although more common in homicidal strangulation cases, some studies have found that hyoid and thyroid fractures are not rare in suicidal hangings.A 2000 study in Australia found fractures in nearly half the 40 suicide cases it examined and said they were even more common in older victims and men; in fact, 15 percent had fractures of both the hyoid and the thyroid. And a 2010 study out of Thailand found such fractures in 25 percent of the confirmed suicides it reviewed.After His Suicide Watch Ended, Jeffrey Epstein Was Left to Look After HimselfBaden, who observed the autopsy performed by Sampson, served briefly as the city’s chief medical examiner before being fired in 1979 by then-Mayor Ed Koch in response to a complaint that he told doctors during a guest-speaking event that Gov. Nelson Rockefeller had died during sexual intercourse.Three years later, he was dismissed as chief deputy medical examiner by Suffolk County, New York, over a magazine article about ways to kill that wouldn’t show up in an autopsy; he protested that he was misquoted.In the '70s, Baden helped Congress investigate the assassinations of President John F. Kennedy and Martin Luther King Jr.—he concluded that Lee Harvey Oswald and James Earl Ray, respectively, were the killers—but became famous for serving as a private pathologist in high-profile cases like the Aaron Hernandez suicide, the O.J. Simpson murder trial, and the Jayson Williams shooting. He also served as a defense witness in the Phil Spector murder trial, where he reportedly testified that he had no conflict of interest in the case even though his wife was heading Spector’s legal team.Baden isn’t the only one skeptical about the official account of Epstein’s death at the high-security federal lockup in Manhattan, which is currently the subject of a Justice Department probe.Spencer Kuvin, a lawyer representing victims of Epstein, said serious questions remain, including the whereabouts of the guards assigned to monitor him, why the cameras outside his cell apparently didn’t work, and why he was taken off suicide watch.“It all makes no sense. Until they come out with the evidence, I don’t believe anything they’re telling us,” Kuvin said. “Exactly what happened I can’t tell you, but I certainly don’t believe the story they’re trying to feed everyone.”Sigrid McCawley, an attorney at Boies Schiller Flexner, the law firm representing some of Epstein’s victims, said the ongoing Justice Department probe “limits what can and should be said at this time.”“But as the public has come to to understand the horrifying scope and scale of the international sex trafficking system he operated for decades with impunity, what really matters for the brave survivors who are seeking justice is how he lived, not how he died,” she said. “That is how the man should be judged.”Kuvin said his clients are “more interested in seeing co-conspirators prosecuted” than in delving into Epstein autopsy theories.“The justice system failed. They either allowed him to take his own life or someone got in there and killed him,” Kuvin told The Daily Beast. “Either way, it’s a failure of the Justice Department
 [which] has failed them repeatedly over the last 13 years. This was just one more time.”If you or a loved one are struggling with suicidal thoughts, please reach out to the National Suicide Prevention Lifeline at 1-800-273-TALK (8255), or contact the Crisis Text Line by texting TALK to 741741Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/siZIeVPuJ9_PWKpedfWniw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/ecf97654f18e608d05355321d695ab3a,NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden -UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote -The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire -Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -"CIA-backed Afghan units carry out illegal killings, other abuse - group","Wed, 30 Oct 2019 23:30:24 -0400",https://news.yahoo.com/cia-backed-afghan-units-carry-033024655.html,"Afghan security units backed by the U.S. Central Intelligence Agency (CIA) have carried out extrajudicial executions, enforced disappearances, indiscriminate air strikes and other rights abuses and should be disbanded, a rights group said on Thursday. Human Rights Watch said it investigated 14 cases in which CIA-backed Afghan counterinsurgency forces committed serious abuses in Afghanistan between late 2017 and mid-2019. ""They are illustrative of a larger pattern of serious laws-of-war violations — some amounting to war crimes — that extends to all provinces in Afghanistan where these paramilitary forces operate with impunity,"" the group said in a report.",,"CIA-backed Afghan units carry out illegal killings, other abuse - group" -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp","Wed, 30 Oct 2019 08:48:29 -0400",https://news.yahoo.com/supreme-court-citizens-united-led-090034035.html,"Ukraine-gate illustrates precisely how independent expenditures can corrupt. Trump, Giuliani, Fruman and Parnas show how it's done. All in one month.",http://l.yimg.com/uu/api/res/1.2/oMrm78wfyXVi4Q1FxuwrGw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/0ad1be9ebb64ad4d5f7c03222769ad30,"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp" -A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden,"Wed, 30 Oct 2019 15:28:10 -0400",https://news.yahoo.com/nyc-medical-examiner-dismisses-epstein-192810863.html,"Robyn Beck/ReutersNew York City’s chief medical examiner pushed back hard Wednesday against a celebrity pathologist-for-hire’s conspiracy-stirring claim that Jeffrey Epstein’s autopsy was more consistent with homicide than suicide.“The original medical investigation was thorough and complete. There is no reason for a second medical investigation by our office,” said Dr. Barbara Sampson.Sampson determined Epstein died by suicide from hanging in his jail cell in August, while he was awaiting trial on sex-trafficking charges.Epstein’s lawyers and family have refused to accept her finding, and the disgraced financier’s brother hired Dr. Michael Baden—erstwhile host of HBO’s Autopsy—to do his own investigation.Jeffrey Epstein’s Death Ruled Suicide by Hanging: New York City Medical ExaminerDuring an appearance Wednesday morning on Fox News, where he is a contributor, Baden said his own review isn’t complete but nonetheless suggested that suicide isn’t the cause of death.He claimed a collection of neck fractures in Epstein’s hyoid bone and thyroid cartilage “are extremely unusual in suicidal hangings and could occur much more commonly in homicidal strangulation.”“I’ve not seen in 50 years where that occurred in a suicidal hanging case,” Baden said.Although more common in homicidal strangulation cases, some studies have found that hyoid and thyroid fractures are not rare in suicidal hangings.A 2000 study in Australia found fractures in nearly half the 40 suicide cases it examined and said they were even more common in older victims and men; in fact, 15 percent had fractures of both the hyoid and the thyroid. And a 2010 study out of Thailand found such fractures in 25 percent of the confirmed suicides it reviewed.After His Suicide Watch Ended, Jeffrey Epstein Was Left to Look After HimselfBaden, who observed the autopsy performed by Sampson, served briefly as the city’s chief medical examiner before being fired in 1979 by then-Mayor Ed Koch in response to a complaint that he told doctors during a guest-speaking event that Gov. Nelson Rockefeller had died during sexual intercourse.Three years later, he was dismissed as chief deputy medical examiner by Suffolk County, New York, over a magazine article about ways to kill that wouldn’t show up in an autopsy; he protested that he was misquoted.In the '70s, Baden helped Congress investigate the assassinations of President John F. Kennedy and Martin Luther King Jr.—he concluded that Lee Harvey Oswald and James Earl Ray, respectively, were the killers—but became famous for serving as a private pathologist in high-profile cases like the Aaron Hernandez suicide, the O.J. Simpson murder trial, and the Jayson Williams shooting. He also served as a defense witness in the Phil Spector murder trial, where he reportedly testified that he had no conflict of interest in the case even though his wife was heading Spector’s legal team.Baden isn’t the only one skeptical about the official account of Epstein’s death at the high-security federal lockup in Manhattan, which is currently the subject of a Justice Department probe.Spencer Kuvin, a lawyer representing victims of Epstein, said serious questions remain, including the whereabouts of the guards assigned to monitor him, why the cameras outside his cell apparently didn’t work, and why he was taken off suicide watch.“It all makes no sense. Until they come out with the evidence, I don’t believe anything they’re telling us,” Kuvin said. “Exactly what happened I can’t tell you, but I certainly don’t believe the story they’re trying to feed everyone.”Sigrid McCawley, an attorney at Boies Schiller Flexner, the law firm representing some of Epstein’s victims, said the ongoing Justice Department probe “limits what can and should be said at this time.”“But as the public has come to to understand the horrifying scope and scale of the international sex trafficking system he operated for decades with impunity, what really matters for the brave survivors who are seeking justice is how he lived, not how he died,” she said. “That is how the man should be judged.”Kuvin said his clients are “more interested in seeing co-conspirators prosecuted” than in delving into Epstein autopsy theories.“The justice system failed. They either allowed him to take his own life or someone got in there and killed him,” Kuvin told The Daily Beast. “Either way, it’s a failure of the Justice Department
 [which] has failed them repeatedly over the last 13 years. This was just one more time.”If you or a loved one are struggling with suicidal thoughts, please reach out to the National Suicide Prevention Lifeline at 1-800-273-TALK (8255), or contact the Crisis Text Line by texting TALK to 741741Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/siZIeVPuJ9_PWKpedfWniw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/ecf97654f18e608d05355321d695ab3a,NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden -UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote -The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire -Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -"CIA-backed Afghan units carry out illegal killings, other abuse - group","Wed, 30 Oct 2019 23:30:24 -0400",https://news.yahoo.com/cia-backed-afghan-units-carry-033024655.html,"Afghan security units backed by the U.S. Central Intelligence Agency (CIA) have carried out extrajudicial executions, enforced disappearances, indiscriminate air strikes and other rights abuses and should be disbanded, a rights group said on Thursday. Human Rights Watch said it investigated 14 cases in which CIA-backed Afghan counterinsurgency forces committed serious abuses in Afghanistan between late 2017 and mid-2019. ""They are illustrative of a larger pattern of serious laws-of-war violations — some amounting to war crimes — that extends to all provinces in Afghanistan where these paramilitary forces operate with impunity,"" the group said in a report.",,"CIA-backed Afghan units carry out illegal killings, other abuse - group" -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp","Wed, 30 Oct 2019 08:48:29 -0400",https://news.yahoo.com/supreme-court-citizens-united-led-090034035.html,"Ukraine-gate illustrates precisely how independent expenditures can corrupt. Trump, Giuliani, Fruman and Parnas show how it's done. All in one month.",http://l.yimg.com/uu/api/res/1.2/oMrm78wfyXVi4Q1FxuwrGw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/0ad1be9ebb64ad4d5f7c03222769ad30,"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp" -A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden,"Wed, 30 Oct 2019 15:28:10 -0400",https://news.yahoo.com/nyc-medical-examiner-dismisses-epstein-192810863.html,"Robyn Beck/ReutersNew York City’s chief medical examiner pushed back hard Wednesday against a celebrity pathologist-for-hire’s conspiracy-stirring claim that Jeffrey Epstein’s autopsy was more consistent with homicide than suicide.“The original medical investigation was thorough and complete. There is no reason for a second medical investigation by our office,” said Dr. Barbara Sampson.Sampson determined Epstein died by suicide from hanging in his jail cell in August, while he was awaiting trial on sex-trafficking charges.Epstein’s lawyers and family have refused to accept her finding, and the disgraced financier’s brother hired Dr. Michael Baden—erstwhile host of HBO’s Autopsy—to do his own investigation.Jeffrey Epstein’s Death Ruled Suicide by Hanging: New York City Medical ExaminerDuring an appearance Wednesday morning on Fox News, where he is a contributor, Baden said his own review isn’t complete but nonetheless suggested that suicide isn’t the cause of death.He claimed a collection of neck fractures in Epstein’s hyoid bone and thyroid cartilage “are extremely unusual in suicidal hangings and could occur much more commonly in homicidal strangulation.”“I’ve not seen in 50 years where that occurred in a suicidal hanging case,” Baden said.Although more common in homicidal strangulation cases, some studies have found that hyoid and thyroid fractures are not rare in suicidal hangings.A 2000 study in Australia found fractures in nearly half the 40 suicide cases it examined and said they were even more common in older victims and men; in fact, 15 percent had fractures of both the hyoid and the thyroid. And a 2010 study out of Thailand found such fractures in 25 percent of the confirmed suicides it reviewed.After His Suicide Watch Ended, Jeffrey Epstein Was Left to Look After HimselfBaden, who observed the autopsy performed by Sampson, served briefly as the city’s chief medical examiner before being fired in 1979 by then-Mayor Ed Koch in response to a complaint that he told doctors during a guest-speaking event that Gov. Nelson Rockefeller had died during sexual intercourse.Three years later, he was dismissed as chief deputy medical examiner by Suffolk County, New York, over a magazine article about ways to kill that wouldn’t show up in an autopsy; he protested that he was misquoted.In the '70s, Baden helped Congress investigate the assassinations of President John F. Kennedy and Martin Luther King Jr.—he concluded that Lee Harvey Oswald and James Earl Ray, respectively, were the killers—but became famous for serving as a private pathologist in high-profile cases like the Aaron Hernandez suicide, the O.J. Simpson murder trial, and the Jayson Williams shooting. He also served as a defense witness in the Phil Spector murder trial, where he reportedly testified that he had no conflict of interest in the case even though his wife was heading Spector’s legal team.Baden isn’t the only one skeptical about the official account of Epstein’s death at the high-security federal lockup in Manhattan, which is currently the subject of a Justice Department probe.Spencer Kuvin, a lawyer representing victims of Epstein, said serious questions remain, including the whereabouts of the guards assigned to monitor him, why the cameras outside his cell apparently didn’t work, and why he was taken off suicide watch.“It all makes no sense. Until they come out with the evidence, I don’t believe anything they’re telling us,” Kuvin said. “Exactly what happened I can’t tell you, but I certainly don’t believe the story they’re trying to feed everyone.”Sigrid McCawley, an attorney at Boies Schiller Flexner, the law firm representing some of Epstein’s victims, said the ongoing Justice Department probe “limits what can and should be said at this time.”“But as the public has come to to understand the horrifying scope and scale of the international sex trafficking system he operated for decades with impunity, what really matters for the brave survivors who are seeking justice is how he lived, not how he died,” she said. “That is how the man should be judged.”Kuvin said his clients are “more interested in seeing co-conspirators prosecuted” than in delving into Epstein autopsy theories.“The justice system failed. They either allowed him to take his own life or someone got in there and killed him,” Kuvin told The Daily Beast. “Either way, it’s a failure of the Justice Department
 [which] has failed them repeatedly over the last 13 years. This was just one more time.”If you or a loved one are struggling with suicidal thoughts, please reach out to the National Suicide Prevention Lifeline at 1-800-273-TALK (8255), or contact the Crisis Text Line by texting TALK to 741741Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/siZIeVPuJ9_PWKpedfWniw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/ecf97654f18e608d05355321d695ab3a,NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden -UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote -The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire -Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -"CIA-backed Afghan units carry out illegal killings, other abuse - group","Wed, 30 Oct 2019 23:30:24 -0400",https://news.yahoo.com/cia-backed-afghan-units-carry-033024655.html,"Afghan security units backed by the U.S. Central Intelligence Agency (CIA) have carried out extrajudicial executions, enforced disappearances, indiscriminate air strikes and other rights abuses and should be disbanded, a rights group said on Thursday. Human Rights Watch said it investigated 14 cases in which CIA-backed Afghan counterinsurgency forces committed serious abuses in Afghanistan between late 2017 and mid-2019. ""They are illustrative of a larger pattern of serious laws-of-war violations — some amounting to war crimes — that extends to all provinces in Afghanistan where these paramilitary forces operate with impunity,"" the group said in a report.",,"CIA-backed Afghan units carry out illegal killings, other abuse - group" -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp","Wed, 30 Oct 2019 08:48:29 -0400",https://news.yahoo.com/supreme-court-citizens-united-led-090034035.html,"Ukraine-gate illustrates precisely how independent expenditures can corrupt. Trump, Giuliani, Fruman and Parnas show how it's done. All in one month.",http://l.yimg.com/uu/api/res/1.2/oMrm78wfyXVi4Q1FxuwrGw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/0ad1be9ebb64ad4d5f7c03222769ad30,"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp" -A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden,"Wed, 30 Oct 2019 15:28:10 -0400",https://news.yahoo.com/nyc-medical-examiner-dismisses-epstein-192810863.html,"Robyn Beck/ReutersNew York City’s chief medical examiner pushed back hard Wednesday against a celebrity pathologist-for-hire’s conspiracy-stirring claim that Jeffrey Epstein’s autopsy was more consistent with homicide than suicide.“The original medical investigation was thorough and complete. There is no reason for a second medical investigation by our office,” said Dr. Barbara Sampson.Sampson determined Epstein died by suicide from hanging in his jail cell in August, while he was awaiting trial on sex-trafficking charges.Epstein’s lawyers and family have refused to accept her finding, and the disgraced financier’s brother hired Dr. Michael Baden—erstwhile host of HBO’s Autopsy—to do his own investigation.Jeffrey Epstein’s Death Ruled Suicide by Hanging: New York City Medical ExaminerDuring an appearance Wednesday morning on Fox News, where he is a contributor, Baden said his own review isn’t complete but nonetheless suggested that suicide isn’t the cause of death.He claimed a collection of neck fractures in Epstein’s hyoid bone and thyroid cartilage “are extremely unusual in suicidal hangings and could occur much more commonly in homicidal strangulation.”“I’ve not seen in 50 years where that occurred in a suicidal hanging case,” Baden said.Although more common in homicidal strangulation cases, some studies have found that hyoid and thyroid fractures are not rare in suicidal hangings.A 2000 study in Australia found fractures in nearly half the 40 suicide cases it examined and said they were even more common in older victims and men; in fact, 15 percent had fractures of both the hyoid and the thyroid. And a 2010 study out of Thailand found such fractures in 25 percent of the confirmed suicides it reviewed.After His Suicide Watch Ended, Jeffrey Epstein Was Left to Look After HimselfBaden, who observed the autopsy performed by Sampson, served briefly as the city’s chief medical examiner before being fired in 1979 by then-Mayor Ed Koch in response to a complaint that he told doctors during a guest-speaking event that Gov. Nelson Rockefeller had died during sexual intercourse.Three years later, he was dismissed as chief deputy medical examiner by Suffolk County, New York, over a magazine article about ways to kill that wouldn’t show up in an autopsy; he protested that he was misquoted.In the '70s, Baden helped Congress investigate the assassinations of President John F. Kennedy and Martin Luther King Jr.—he concluded that Lee Harvey Oswald and James Earl Ray, respectively, were the killers—but became famous for serving as a private pathologist in high-profile cases like the Aaron Hernandez suicide, the O.J. Simpson murder trial, and the Jayson Williams shooting. He also served as a defense witness in the Phil Spector murder trial, where he reportedly testified that he had no conflict of interest in the case even though his wife was heading Spector’s legal team.Baden isn’t the only one skeptical about the official account of Epstein’s death at the high-security federal lockup in Manhattan, which is currently the subject of a Justice Department probe.Spencer Kuvin, a lawyer representing victims of Epstein, said serious questions remain, including the whereabouts of the guards assigned to monitor him, why the cameras outside his cell apparently didn’t work, and why he was taken off suicide watch.“It all makes no sense. Until they come out with the evidence, I don’t believe anything they’re telling us,” Kuvin said. “Exactly what happened I can’t tell you, but I certainly don’t believe the story they’re trying to feed everyone.”Sigrid McCawley, an attorney at Boies Schiller Flexner, the law firm representing some of Epstein’s victims, said the ongoing Justice Department probe “limits what can and should be said at this time.”“But as the public has come to to understand the horrifying scope and scale of the international sex trafficking system he operated for decades with impunity, what really matters for the brave survivors who are seeking justice is how he lived, not how he died,” she said. “That is how the man should be judged.”Kuvin said his clients are “more interested in seeing co-conspirators prosecuted” than in delving into Epstein autopsy theories.“The justice system failed. They either allowed him to take his own life or someone got in there and killed him,” Kuvin told The Daily Beast. “Either way, it’s a failure of the Justice Department
 [which] has failed them repeatedly over the last 13 years. This was just one more time.”If you or a loved one are struggling with suicidal thoughts, please reach out to the National Suicide Prevention Lifeline at 1-800-273-TALK (8255), or contact the Crisis Text Line by texting TALK to 741741Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/siZIeVPuJ9_PWKpedfWniw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/ecf97654f18e608d05355321d695ab3a,NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden -UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote -The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire -Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -"CIA-backed Afghan units carry out illegal killings, other abuse - group","Wed, 30 Oct 2019 23:30:24 -0400",https://news.yahoo.com/cia-backed-afghan-units-carry-033024655.html,"Afghan security units backed by the U.S. Central Intelligence Agency (CIA) have carried out extrajudicial executions, enforced disappearances, indiscriminate air strikes and other rights abuses and should be disbanded, a rights group said on Thursday. Human Rights Watch said it investigated 14 cases in which CIA-backed Afghan counterinsurgency forces committed serious abuses in Afghanistan between late 2017 and mid-2019. ""They are illustrative of a larger pattern of serious laws-of-war violations — some amounting to war crimes — that extends to all provinces in Afghanistan where these paramilitary forces operate with impunity,"" the group said in a report.",,"CIA-backed Afghan units carry out illegal killings, other abuse - group" -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp","Wed, 30 Oct 2019 08:48:29 -0400",https://news.yahoo.com/supreme-court-citizens-united-led-090034035.html,"Ukraine-gate illustrates precisely how independent expenditures can corrupt. Trump, Giuliani, Fruman and Parnas show how it's done. All in one month.",http://l.yimg.com/uu/api/res/1.2/oMrm78wfyXVi4Q1FxuwrGw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/0ad1be9ebb64ad4d5f7c03222769ad30,"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp" -A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden,"Wed, 30 Oct 2019 15:28:10 -0400",https://news.yahoo.com/nyc-medical-examiner-dismisses-epstein-192810863.html,"Robyn Beck/ReutersNew York City’s chief medical examiner pushed back hard Wednesday against a celebrity pathologist-for-hire’s conspiracy-stirring claim that Jeffrey Epstein’s autopsy was more consistent with homicide than suicide.“The original medical investigation was thorough and complete. There is no reason for a second medical investigation by our office,” said Dr. Barbara Sampson.Sampson determined Epstein died by suicide from hanging in his jail cell in August, while he was awaiting trial on sex-trafficking charges.Epstein’s lawyers and family have refused to accept her finding, and the disgraced financier’s brother hired Dr. Michael Baden—erstwhile host of HBO’s Autopsy—to do his own investigation.Jeffrey Epstein’s Death Ruled Suicide by Hanging: New York City Medical ExaminerDuring an appearance Wednesday morning on Fox News, where he is a contributor, Baden said his own review isn’t complete but nonetheless suggested that suicide isn’t the cause of death.He claimed a collection of neck fractures in Epstein’s hyoid bone and thyroid cartilage “are extremely unusual in suicidal hangings and could occur much more commonly in homicidal strangulation.”“I’ve not seen in 50 years where that occurred in a suicidal hanging case,” Baden said.Although more common in homicidal strangulation cases, some studies have found that hyoid and thyroid fractures are not rare in suicidal hangings.A 2000 study in Australia found fractures in nearly half the 40 suicide cases it examined and said they were even more common in older victims and men; in fact, 15 percent had fractures of both the hyoid and the thyroid. And a 2010 study out of Thailand found such fractures in 25 percent of the confirmed suicides it reviewed.After His Suicide Watch Ended, Jeffrey Epstein Was Left to Look After HimselfBaden, who observed the autopsy performed by Sampson, served briefly as the city’s chief medical examiner before being fired in 1979 by then-Mayor Ed Koch in response to a complaint that he told doctors during a guest-speaking event that Gov. Nelson Rockefeller had died during sexual intercourse.Three years later, he was dismissed as chief deputy medical examiner by Suffolk County, New York, over a magazine article about ways to kill that wouldn’t show up in an autopsy; he protested that he was misquoted.In the '70s, Baden helped Congress investigate the assassinations of President John F. Kennedy and Martin Luther King Jr.—he concluded that Lee Harvey Oswald and James Earl Ray, respectively, were the killers—but became famous for serving as a private pathologist in high-profile cases like the Aaron Hernandez suicide, the O.J. Simpson murder trial, and the Jayson Williams shooting. He also served as a defense witness in the Phil Spector murder trial, where he reportedly testified that he had no conflict of interest in the case even though his wife was heading Spector’s legal team.Baden isn’t the only one skeptical about the official account of Epstein’s death at the high-security federal lockup in Manhattan, which is currently the subject of a Justice Department probe.Spencer Kuvin, a lawyer representing victims of Epstein, said serious questions remain, including the whereabouts of the guards assigned to monitor him, why the cameras outside his cell apparently didn’t work, and why he was taken off suicide watch.“It all makes no sense. Until they come out with the evidence, I don’t believe anything they’re telling us,” Kuvin said. “Exactly what happened I can’t tell you, but I certainly don’t believe the story they’re trying to feed everyone.”Sigrid McCawley, an attorney at Boies Schiller Flexner, the law firm representing some of Epstein’s victims, said the ongoing Justice Department probe “limits what can and should be said at this time.”“But as the public has come to to understand the horrifying scope and scale of the international sex trafficking system he operated for decades with impunity, what really matters for the brave survivors who are seeking justice is how he lived, not how he died,” she said. “That is how the man should be judged.”Kuvin said his clients are “more interested in seeing co-conspirators prosecuted” than in delving into Epstein autopsy theories.“The justice system failed. They either allowed him to take his own life or someone got in there and killed him,” Kuvin told The Daily Beast. “Either way, it’s a failure of the Justice Department
 [which] has failed them repeatedly over the last 13 years. This was just one more time.”If you or a loved one are struggling with suicidal thoughts, please reach out to the National Suicide Prevention Lifeline at 1-800-273-TALK (8255), or contact the Crisis Text Line by texting TALK to 741741Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/siZIeVPuJ9_PWKpedfWniw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/ecf97654f18e608d05355321d695ab3a,NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden -UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote -The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire -Exclusive: How Lebanon's Hariri defied Hezbollah,"Wed, 30 Oct 2019 15:34:08 -0400",https://news.yahoo.com/exclusive-lebanons-hariri-defied-hezbollah-193408237.html,"After hitting a dead end in efforts to defuse the crisis sweeping Lebanon, Saad al-Hariri informed a top Hezbollah official on Monday he had no choice but to quit as prime minister in defiance of the powerful Shi'ite group. The decision by the Sunni leader shocked Hussein al-Khalil, political advisor to Hezbollah leader Sayyed Hassan Nasrallah, who advised him against giving in to protesters who wanted to see his coalition government toppled. The meeting described to Reuters by four senior sources from outside Hariri's Future Party captures a critical moment in the crisis that has swept Lebanon for the last two weeks as Hariri yielded to the massive street protests against the ruling elite.",http://l2.yimg.com/uu/api/res/1.2/6t0QrsMq7.t998bmUlxrwg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/f866c2aeaf231d9d1cf6e6e69568619a,Exclusive: How Lebanon's Hariri defied Hezbollah -Navy upholds sentencing of Navy SEAL for posing with corpse,"Wed, 30 Oct 2019 06:54:52 -0400",https://news.yahoo.com/navy-upholds-sentencing-navy-seal-203428988.html,"The U.S. chief of naval operations on Tuesday denied a request for clemency and upheld a military jury's sentence that will reduce the rank of a decorated Navy SEAL convicted of posing with a dead Islamic State captive in Iraq in 2017. Adm. Mike Gilday made the decision after carefully reviewing the trial transcripts and the clemency request by the lawyers of Edward Gallagher, said Cmdr. Nate Christensen, spokesman for Gilday, in a statement. Gallagher's lawyer, Timothy Parlatore, said they are disappointed in the ruling that will cost Gallagher up to $200,000 in retirement funds because of his loss of rank from a chief petty officer to a 1st class petty officer.",http://l1.yimg.com/uu/api/res/1.2/.BfAViVO_SJNCk88Voi.HA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/aa80b6e08b7f94e4b95f358d86e4650d,Navy upholds sentencing of Navy SEAL for posing with corpse -China pushes higher 'moral quality' for its citizens,"Wed, 30 Oct 2019 07:16:32 -0400",https://news.yahoo.com/china-pushes-higher-moral-quality-citizens-111632380.html,"From budgeting for rural weddings to dressing appropriately and avoiding online porn, China's Communist Party has issued new guidelines to improve the ""moral quality"" of its citizens. Officials have released several sets of guidelines this week alongside a secretive conclave of high-ranking officials in Beijing which discusses the country's future direction. Public institutions like libraries and youth centres must carry out ""targeted moral education"" to improve people's ideological awareness and moral standards, according to the rules.",http://l2.yimg.com/uu/api/res/1.2/ZE0do86B_pp.U8xiGOzXyg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/9a1246fa0db9bf5eda51ca134b6d72d00140d45d.jpg,China pushes higher 'moral quality' for its citizens -"A Record Wave of Lone Child Migrants, Born of Desperation","Wed, 30 Oct 2019 13:17:36 -0400",https://news.yahoo.com/record-wave-lone-child-migrants-122133758.html,"TENOSIQUE, Mexico -- The United States has detained more children trying to cross the nation's southwest border on their own over the last year than during any other period on record, surpassing the surge of unaccompanied minors that set off a crisis during the Obama administration, according to new figures released Tuesday.U.S. immigration authorities apprehended 76,020 minors, most of them from Central America, traveling without their parents in the fiscal year that ended in September -- 52% more than during the last fiscal year, according to U.S. Customs and Border Protection.Mexico is experiencing the same surge. Under pressure from the Trump administration, President Andres Manuel Lopez Obrador stepped up immigration enforcement and detained about 40,500 underage migrants traveling north without their parents in the same period -- pushing the total number of these children taken into custody in the region to more than 115,000.In interviews, nearly two dozen children who were heading toward the United States said they knew the trip was dangerous -- and that if they were caught they could end up in overcrowded, dirty facilities on both sides of the border, without adequate food, water or health care. But they took their chances anyway, looking to escape dead-end poverty, violence and a lack of opportunities to study or work, despite President Donald Trump's aggressive efforts to block immigration through the southwest border.""These are numbers that no immigration system in the world can handle, not even in this country,"" Mark Morgan, the acting commissioner of U.S. Customs and Border Protection, told reporters. ""And each month during the fiscal year, the numbers increased. You saw them. We all saw them.""The young migrants came alongside a historic wave of families traveling together, also largely from Central America. They travel by foot, hitch rides or climb onto trains, carrying only what they can fit in tattered backpacks, and face a staggering array of threats, from thieves and rapists to hunger, loneliness and death.Marvel, a 16-year-old Honduran boy, said he had been on the road for weeks when, somewhere in Guatemala, he came upon a cluster of roadside graves: the final resting place of other migrants who had died on their journey north. He was alone and far from home. Fear crawled up his spine. But he thought of the gang threats he faced -- and he pressed on.""Quitting was not an option,"" Marvel said, giving only his first name for fear of gang retribution. ""You wipe your tears and carry on.""For the young migrants, the risks at home outweigh the potential dangers of the road. Most are teenage boys, though girls and children also attempt the trip. For Marvel, the decision to leave came when a gang in his hometown, Olancho, told him that if he did not join their ranks, they'd kill him and his family. There was no doubt they were serious, Marvel said. Gang members had already murdered his older brother.His parents encouraged him to leave, Marvel said. ""We can't bear losing another son,"" they told him. ""You have to go.""He left home in the spring, with $40 in his pocket and no plan except to find work in a safer place.As for most underage migrants traveling without their parents, his trip north has been a feat of improvisation and courage. He walked and hitchhiked through Honduras and Guatemala. He slept in churches, under trees or wherever he found himself when night fell.Along the way, he gathered crucial bits of information from fellow migrants: the best route to take, locations of shelters up ahead, places to avoid, where to forage for food.As huge numbers of young migrants from Central America began arriving at the United States' southern border in 2014, the Obama administration scrambled to house them until they could be released to sponsors -- adults who applied to care for them. The shelter system grew dramatically as a result.The Trump administration experienced similar backups at the border just a few years later -- this time because of new, more stringent policies that made the sponsors themselves, who are often undocumented, vulnerable to immigration authorities. This discouraged people from coming forward, leaving thousands of children to languish in the system.The Trump administration has also sought to deter migration by separating thousands of children from their relatives, again driving up the number of children in federally contracted shelters.On the road, while trying to avoid detention, fear and hunger are constant companions for many young migrants.With little or no money in their pockets, they relied on strangers for snacks or meals. They pawed through garbage and scanned drifts of debris on the roadside, hoping to spot an edible morsel.Wilson, a 17-year-old Honduran, said he had feasted on rotten mangos discarded by street vendors.""I used to drink water from potholes when I was too thirsty,"" interjected Mario Leonel, 16, who left home in San Pedro Sula, Honduras, several weeks ago without notifying his parents. ""That is the hardest part of it all: the hunger.""When he arrived at the shelter in Tenosique, a small Mexican town near the Guatemala border, he called his parents in Honduras, who burst into tears and pleaded for him to return. He said no. He was tired of all the violence in his country, and wanted to get asylum in the United States.After Marvel slipped across the Guatemala-Mexico border in May, he found room at a shelter in Tenosique, which serves as a transit point for many migrants. He quickly made new friends among other teenage migrants who had made it this far, mainly from Honduras, but also from Guatemala and El Salvador.On a recent afternoon, several of them gathered in a two-story building that had been reserved for minors, its walls painted with colorful animal murals. The boys cracked jokes, roughhoused and argued about who was the cutest girl in the shelter.Outside, Dulce, a 16-year-old transgender migrant from Guatemala, sat alone on train tracks pining for a boy she had met at the shelter. He had left without explanation and she was lovesick.""I just can't get him out of my mind,"" she said.She left her hometown four months earlier to escape abuse from her family and strangers, including a sexual assault by gang members when she was 12. She made it as far as central Mexico before being detained and deported. Five days after returning home, she set off again.""I left because I had nothing there and no one to protect me,"" she said. ""At least here I am safe.""Though the United States remains the destination of choice for most unaccompanied minors, an increasing number are setting their sights no farther than Mexico, advocates and migrants say.Sometimes they have no choice: Mexico's increased enforcement measures have made it more difficult for migrants to make it to the border with the United States. And even if they reach the United States, recent policies have drastically lowered the possibilities of getting asylum.In Mexico, when unaccompanied minors are detained, the law mandates that they be released right away into the custody of the national child protection agency, which finds them accommodation in shelters designed for children.But migrants' advocates say the government has been holding children in the nation's overcrowded detention centers for far too long, and that some children are quickly funneled into the deportation process rather than being given a fair chance to seek asylum or some other form of relief.""No child should ever be held at a detention center,"" said Elba Coria, a migration expert from the Clinic for Refugees at the Ibero-American University in Mexico City. ""But while international standards consider children's detention as an exceptional measure, amid Mexico's migration chaos, it is the rule.""Neither Marvel nor any of his new friends in the Tenosique shelter had been detained by the authorities. All had managed to cross into Mexico from Guatemala and had applied for asylum in Mexico after talking through their options with the shelter staff.They now plan to remain in Mexico and look for work and study opportunities -- even if they haven't abandoned hope of making it to the United States.""It is every Honduran's boy dream to get to the United States, where there is more money and kids are able to go to school,"" said Jose Angel, 17. He was born with a disability that left him unable to use his arms and left his hometown because his grandmother could no longer take care of him.He was hopeful he could apply for asylum in the United States despite Trump's many efforts to severely lower the number of people granted asylum. ""It is scary, but you have to take a chance,"" he said.On a recent morning, Alan, a 17-year-old Guatemalan migrant, sat on the sidewalk outside a migrant shelter in the city of Palenque, in southern Mexico. He had just crossed the border and was exhausted. Mexican immigration officials had stopped a bus he was on, but he managed to escape into the countryside and hide.Alan planned to take a nap, shower and have a meal before trying illegally to board a freight train known as The Beast. It runs from Mexico's border with Guatemala to its border with the United States and, for decades, migrants have clung to it to speed through much of Mexico.His hope was to make it to the U.S. border and petition for asylum. He was undeterred by Trump's recent efforts to restrict asylum claims or curb immigration.""One way or another, I have to make it to the other side where there are skyscrapers and life is better,"" he said.This article originally appeared in The New York Times.(C) 2019 The New York Times Company",http://l1.yimg.com/uu/api/res/1.2/5ol82jExNHqBHa7IGzz2mw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_new_york_times_articles_158/03f35d3f9d537a8dc9fe503d06c098de,"A Record Wave of Lone Child Migrants, Born of Desperation" -Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe,"Wed, 30 Oct 2019 14:14:01 -0400",https://news.yahoo.com/denmark-snubs-trump-approval-russian-141104626.html,"(Bloomberg) -- In a major boost for Russia’s effort to tighten its grip over natural gas supplies to western Europe, Denmark said it will allow the controversial Nord Stream 2 pipeline to pass through its territory.The decision removes the last important hurdle for the $11 billion project, which is slated for commissioning by the end of this year and bolster gas flows from Siberia into Germany. The link has drawn the threat of sanctions from the U.S., which wants Europe to buy its liquefied natural gas. It risks reigniting a feud between Donald Trump and Danish lawmakers that erupted in the summer after the U.S. president’s offer to buy Greenland.Russian President Vladimir Putin welcomed the pipeline decision. “Denmark showed itself to be a responsible participant in international relations, defending its interests and sovereignty and the interests of its main partners in Europe,” he told a briefing in Budapest, where he was on a visit.The green light gives Gazprom PJSC, Russia’s gas export champion and already Europe’s biggest supplier, yet another route to one of the world’s most liquid gas markets. While Trump has accused Russia of using its natural gas as a political weapon, it’s ultimately a commercial deal over which Washington has little influence, according to Raffaello Pantucci, Director of Security Studies at the Royal United Services Institute in London.“It’s frankly too far advanced,” Pantucci said. “Who are they going to sanction?”The approval also gives Russia more clout in ongoing talks with Ukraine on a new gas transit deal, increasing the risk of a disruption from Jan. 1. Uncertainty about whether those two nations can agree on time has been weighing on forward prices in Europe and sending incentives for traders to stockpile gas as a cushion against disruption.“If Gazprom are confident in Nord Stream 2’s imminent completion, it may encourage a tougher negotiating stance on any new Ukrainian transit deal,” said John Twomey, a gas analyst at BloombergNEF in London. “If anything, the risks of a disruption on Jan. 1 have gone up as a result of this.”The pipeline has divided EU governments, with nations led by Poland concerned about the bloc’s increasing dependence on Russian gas.“It is not too late to stop NS2,” an official at the U.S. embassy in Germany said. “There are clear negative energy security and geopolitical implications for Europe from Putin’s pipeline. The U.S. government agrees with the European Parliament, the U.S. House and nearly 20 European countries in our opposition to NS2.”Russia, Ukraine, Europe Pledge New Gas Deal by Year-EndDenmark said on Wednesday it will allow the pipeline to pass southeast of the island of Bornholm in the Baltic Sea. The company behind the pipeline submitted the route plan in April. Denmark had been conducting a security and environmental review of the project.Trump had objected to the link, instead urging the European Union to diversify the sources of its energy and dilute Putin’s economic influence over the region. U.S. officials have also warned that project partners are at an elevated risk of U.S. sanctions.The approval is another snub of Trump by the Nordic country after it ruled out his proposal to buy Greenland this summer. The president responded by canceling a state visit to Denmark.The Danish approval covers 147 kilometers (91 miles) of the project. Nord Stream 2 said in its statement that it has already completed 87%, or 2,100 kilometers, of the pipeline in Russian, Finnish and Swedish waters as well as most of the German part. Dan Jorgensen, Denmark’s minister for climate, energy and utilities, declined to comment on Wednesday.Nord Stream 2 said it will continue its “constructive cooperation with the Danish authorities to complete the pipeline.”Six WeeksGazprom CEO Alexey Miller said that the pipeline is expected to be completed on time by the end of the year. “The remaining 147 kilometers -- that’s five weeks of work,” Miller told reporters in Budapest.A statement from the company highlighted some uncertainties in that timetable. Nord Stream 2 said Wednesday the actual start of the construction depends on a number of legal, technical and environmental factors, which will “take a few weeks” and the project aims for completion “in the coming months.”Gazprom can’t use the permit for the next four weeks when all involved parties have leeway to make a complaint under Danish law. Those issues left analysts anticipating some delay beyond Jan. 1 for the completion of the link.“It’s unlikely that Nord Stream 2 is online in time for Jan. 1, so Ukrainian transit disruption risks remains,” said Twomey.While Gazprom owns the pipeline, half the financing of the 8 billion-euro capital cost comes from five European companies: Uniper SE and Wintershall of Germany, OMV AG of Austria, Engie SA of France and Royal Dutch Shell Plc.Dutch gas for the first quarter declined to the lowest since at least 2017 as the region is oversupplied with the fuel, storage sites across Europe are full, and LNG imports surge.(Updates with Putin comment in third paragraph.)\--With assistance from Dina Khrennikova, Vanessa Dezem and Ilya Arkhipov.To contact the reporters on this story: Morten Buttler in Copenhagen at mbuttler@bloomberg.net;William Wilkes in Frankfurt at wwilkes1@bloomberg.net;Anna Shiryaevskaya in London at ashiryaevska@bloomberg.netTo contact the editors responsible for this story: Christian Wienberg at cwienberg@bloomberg.net, ;Tasneem Hanfi Brögger at tbrogger@bloomberg.net, ;Nick Rigillo at nrigillo@bloomberg.net, Gregory L. White, Reed LandbergFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/pmp.QDGzPx.1oKmff1YXyw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/8d050649bb239d85b781523be18851b7,Denmark Snubs Trump With Approval of Russian Gas Pipe to Europe -Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me!,"Wed, 30 Oct 2019 12:39:01 -0400",https://news.yahoo.com/meghan-mccain-spars-cory-booker-163901660.html,"During a Wednesday interview with Democratic presidential candidate Cory Booker, The View’s Meghan McCain did what she apparently does best: Make the conversation about herself and, in this case, her personal beef with a presidential hopeful.After applauding Booker for saying Medicare for All is unrealistic, the conservative View co-host took issue with the New Jersey senator’s support for mandatory gun buybacks. This then prompted McCain to lump Booker in with former Texas Rep. Beto O’Rourke, who has made buybacks a central focus of his campaign.“When I heard you and Beto say that, to me, that’s like a left-wing fever dream,” McCain said. “And I want to know how you think you and Beto are going to go to red states and go to my brother’s house and get his AR-15s because, let me tell you, he’s not giving it back.”Booker, meanwhile, asserted he is not nearly where O’Rourke is when it comes to gun buybacks, causing McCain to reply, “Good! Because he’s crazy!”“We should watch the way we talk about each other,” Booker shot back. “Seriously, we can’t tear the character of people down. We have different beliefs.”McCain, however, invoked her ongoing feud with the one-time Texas Senate candidate, complaining that O’Rourke “has no problem doing it to me.”“He was very nasty to me about this,” the ex-Fox News star lamented.Last month, reacting to McCain’s overt warning that gun buybacks would lead to “a lot of violence” from gun owners, O’Rourke said “that kind of language and rhetoric is not helpful” and it could become “self-fulfilling” and give permission to violence.“You and I both know that just because somebody does something to us, doesn’t mean we show the same thing back to them,” Booker responded to McCain, garnering audience applause.“I’m not running for president, with all due respect,” McCain snapped back. “And the way he talks about me inciting violence on this, I take very seriously and I speak for a lot of red state Americans whether he likes it or you like it or not, there’s a lot of Republicans you have to win over.”The New Jersey lawmaker reacted by telling McCain that her voice was one he respected before noting that “what we say about other people says more about us than it does about them.”Booker would then go on to relay an anecdote from the campaign trail in which he defused a voter’s call for violence against President Donald Trump. McCain, meanwhile, brushed it aside and went back to pressing Booker on his buyback proposal and how he’s going to take her brother’s guns.After a bit more back-and-forth over Booker's gun proposals, host Whoopi Goldberg jumped in to send the show to a commercial break, promising the pair that they’d continue the conversation in the next segment.“No we’re not,” McCain grumbled. “It’s fine.”Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/81Gc.W3SCBrS344rzVAhWQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/feba113ade389d4b7b530f460116943d,Meghan McCain Spars With Cory Booker Over Civility: Beto Was ‘Very Nasty’ to Me! -Elizabeth Warren’s Untenable Plans,"Wed, 30 Oct 2019 10:05:21 -0400",https://news.yahoo.com/elizabeth-warren-untenable-plans-140521979.html,"If you’ve been having trouble finding someone to walk your dog, don’t worry. Any day now, Elizabeth Warren will announce “a plan for that.” It will undoubtedly be comprehensive, detailed, and replete with subsidies for lower- and middle-class dog walkers and underserved breeds. It will cost tens of billions of dollars and will receive widespread positive notice from the media. However, to judge by her other recent plans, the one thing it won’t include is any discussion of how she plans to pay for it.The Massachusetts senator has challenged and possibly overtaken former vice president Joe Biden as the front-runner for the Democratic nomination, largely based on having a plan for the government to tackle every problem facing this country, no matter how big or how small, from issues with military housing to Puerto Rican debt to climate change.The price tag for this massive expansion of government is enormous. Much of the attention in recent weeks has been focused on Warren’s embrace of Medicare for All, which she refuses to admit would require an increase in middle-class taxes. Even Vermont senator Bernie Sanders has conceded that such proposals, which would cost $30–40 trillion over 10 years, cannot be financed without tax hikes. Warren’s refusal to address this obvious fact makes her look less like a would-be policy wonk and more like a typical politician.But even setting aside Medicare for All, Warren’s plans are likely to dump oceans of red ink onto our growing national debt. Her non-health-care spending proposals already total some $7.5 trillion per year over the next 10 years. Although these are not quite Bernie levels of government largesse, her proposals would still require nearly double our current levels of spending.To pay for all this, Warren proposes a variety of tax hikes, mostly designed to hit corporations or high-earners: higher payroll taxes for those earning more than $250,000 per year; a 7 percent profits tax on companies earning more than $100 million; a 60 percent lobbying tax on firms that spend a million or more on lobbying, and so forth. But the biggest chunk of money would come from Warren’s proposed “wealth tax,” a 2 to 3 percent levy on net worth above $50 million. Warren estimates that this wealth tax will pull in more than $2.75 trillion over ten years. It won’t.First, there is the slight problem that a wealth tax is probably unconstitutional. Of course, constitutional constraints are quaint notions in the Age of Trump. Regardless, it is worth noting that the Constitution permits the federal government to impose only “direct taxes,” such as a property tax. That’s why it required a constitutional amendment to enact the federal income tax. Many constitutional scholars warn that a wealth tax is neither a direct tax nor income tax.Even if Warren can find a way around the constitutional guardrails -- perhaps by something such as a retrospective wealth tax in which you wait until a taxpayer sells assets or passes away -- a wealth tax is unlikely to raise anywhere near the amount of money she predicts.Simply look at Europe’s experiments with wealth taxes. At one time, a dozen European countries imposed wealth taxes. Today, all but three have abandoned those levies. Among those repealing their wealth tax are the Scandinavian social democracies that Warren admires, Denmark, Finland, and Sweden. Norway retains a wealth tax but has significantly reduced it in recent years. Additional countries abandoning the tax include Austria, France, Germany, Iceland, Ireland, Luxembourg, and the Netherlands. Other countries, such as Great Britain, have considered wealth taxes and rejected them.They did so because wealth taxes are administratively complex and difficult to enforce. Also, they significantly reduce investment, entrepreneurship, and, ultimately, economic growth. According to the Organization for Economic Cooperation and Development, European wealth taxes raised, on average, only about 0.2 percent of GDP in revenues. By comparison, the U.S. federal income tax raises 8 percent of GDP.Two groups, however, would benefit substantially from a wealth tax. The tax would be a full-employment opportunity for the tax-preparation industry and for lawyers. After all, we would now have to determine fair market value for everything from homes and vehicles to artwork and jewelry to family pension rights and intellectual property. The other big winner would be lobbyists, who could be expected to descend on Washington en masse seeking exemptions and exceptions for their clients. If you think the tax code is a mess today, just wait until D.C. is done with Warren’s plan.There is an old Yiddish proverb that goes “Mann tracht, un Gott Lacht,” or “Man plans, and God laughs.” It is all well and good that Senator Warren has a plan for everything. But until she actually figures out how to pay for everything without crippling our economy, such plans really don’t add up.",http://l2.yimg.com/uu/api/res/1.2/t_XOfhQ2Q8pn0Eihbaza4g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/710b4188b8e44ebd02c332c03dfb8d66,Elizabeth Warren’s Untenable Plans -Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy,"Wed, 30 Oct 2019 17:38:20 -0400",https://news.yahoo.com/tulsi-gabbard-says-she-wants-213820125.html,"""Those who follow the Bush-Clinton doctrine believe the only way to interact with other nations is by bombing them or starving them with draconian sanctions,"" Gabbard wrote.",http://l2.yimg.com/uu/api/res/1.2/LTsVQgKWLWZB4CqZTWrCmw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/600ec926c903a4a4b13b802ec6b46cdb,Tulsi Gabbard says she wants to defeat the 'Bush-Clinton doctrine' on foreign policy -"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines","Wed, 30 Oct 2019 06:41:15 -0400",https://news.yahoo.com/londons-gatwick-airport-testing-technology-104115844.html,"The major UK airport is running a two-month trial on some EasyJet flights. It uses screens to call single seat numbers, for maximum efficiency.",http://l.yimg.com/uu/api/res/1.2/qEijHOtPy58PeTkXPYzxUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2b6e3e95c321320da3e59c71273b6214,"London's Gatwick airport is testing out new technology to board passengers by individual seat, which could be faster and avoid long lines" -Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires,"Wed, 30 Oct 2019 07:17:19 -0400",https://news.yahoo.com/tucker-carlson-guest-blame-diversity-032855316.html,"Fox NewsFox News host Tucker Carlson and his guest, conservative YouTube personality Dave Rubin, both insisted Tuesday night that the wildfires burning across California are due largely to progressive ideology, “woke” culture, and diversity in hiring.During Tuesday’s broadcast of Tucker Carlson Tonight, Carlson welcomed on Rubin, a political commentator and podcaster, to discuss the issues surrounding the large fires engulfing the state, including those related to the electrical grid and firefighting methods.“PG&E; strikes me as almost a metaphor for the destruction of the state,” Carlson said about the state’s power company. “Here’s the utility which doesn’t really know anything about its own infrastructure but knows everything about the race of its employees. How did we get there?”After noting that he lives near one of the fires in the Los Angeles area, Rubin immediately took aim at liberal politics as the main reason the wildfires have grown so large and dangerous.“The problem right now is that everything, EVERYTHING, from academia to public utilities to politics, everything that goes woke, that buys into this ridiculous progressive ideology that cares about what contractors are LGBT or how many black firemen we have or white this or Asian that, everything that goes that road eventually breaks down,” he declared.As Carlson nodded and said “that’s true,” Rubin continued, complaining that this isn’t how “freedom is supposed to operate.”“What is supposed to happen—imagine if your house was on fire,” he added. “Would you care what the public utility or what the fire company, what contractor they brought in, what gender or sexuality or any of those things he or she was? It’s just absolutely ridiculous.”The Fox News host continued to agree with Rubin, who went on to tie PG&E;’s preemptive blackouts to a lack of “libertarian or conservative-minded people in California to fight what the progressives are doing to the state.”“If you can’t keep the lights on and you can’t keep the place from burning down, you’ve reached the point where there is no kind of lying about it anymore,” Carlson concluded. “It’s falling apart. It’s a disaster. It’s not civilized anymore.”Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/oc7JrQDZj0IZOpRjD0G9vQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/a516007c9de1e3ef686c7ad67733b86b,Tucker Carlson and Guest Blame Diversity and ‘Woke’ Culture for California Fires -House Democrats are just trying to invalidate the 2016 election of President Donald Trump,"Wed, 30 Oct 2019 16:48:01 -0400",https://news.yahoo.com/house-democrats-just-trying-invalidate-204801176.html,"Speaker Nancy Pelosi is subverting rule of law, write former acting U.S. Attorney General Matt Whitaker and Louisiana Attorney General Jeff Landry.",http://l2.yimg.com/uu/api/res/1.2/MGT2aYJqXPpSggMHdqCSjQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/f10e6dccc6001a477aee232345831d48,House Democrats are just trying to invalidate the 2016 election of President Donald Trump -Putin faces Syria money crunch after U.S. keeps control of oil fields,"Wed, 30 Oct 2019 14:16:48 -0400",https://news.yahoo.com/putin-faces-syria-money-crunch-181648887.html,Russian President Vladimir Putin is facing an unwelcome new financial challenge in Syria after the U.S. pullback enabled his ally Bashar Assad to reclaim the biggest chunk of territory in the country still outside his control.,http://l2.yimg.com/uu/api/res/1.2/lMrHFDsIkI7Fox9yV.Y3sg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314462-1572459101621.jpg,Putin faces Syria money crunch after U.S. keeps control of oil fields -Georgia Supreme Court temporarily halts man's execution,"Wed, 30 Oct 2019 16:29:07 -0400",https://news.yahoo.com/georgia-prepares-execute-man-store-051856382.html,"With about eight hours to spare before a man convicted of killing a convenience store clerk was to be put to death Wednesday, Georgia's highest court stepped in and temporarily halted the execution. Ray Jefferson Cromartie, 52, was to receive a lethal injection at 7 p.m. Wednesday at the state prison in Jackson. Cromartie was convicted of malice murder and sentenced to death for the April 1994 killing of 50-year-old Richard Slysz in Thomasville, just inside Georgia's southern border.",http://l.yimg.com/uu/api/res/1.2/EmikQ7myqycdMUJmq_DFFg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/2c24f8d92d6bc690e8791a5020568b60,Georgia Supreme Court temporarily halts man's execution -Michelle Obama says white Americans 'still running' from black neighbors,"Wed, 30 Oct 2019 10:12:51 -0400",https://news.yahoo.com/michelle-obama-says-white-americans-141036926.html,"Former first lady reflects on her experience of white flight in Chicago and says ‘when we moved in, white families moved out’Michelle Obama said: ‘I want to remind white folks that y’all were running from us. And you’re still running.’ Photograph: Scott Olson/Getty ImagesMichelle Obama has said that white Americans are “still running” from their non-white fellow citizens during a summit in which she detailed how her own experience of white flight unfolded during her upbringing on Chicago’s South Side.“We were doing everything we were supposed to do – and better,” the former first lady told attendees at the third annual Obama Foundation Summit, reported the Chicago Sun-Times as she talked about her childhood. “But when we moved in, white families moved out.”“I want to remind white folks that y’all were running from us. And you’re still running,” she also said, reportedly making a comparison between white flight and what immigrant families experience when they settle in US neighborhoods.At the meeting, Michelle Obama reportedly touted the benefits of building the Obama Presidential Center on 19.3 acres in historic Jackson Park on Chicago’s South Side. She said the project would feature a museum, library, gym, and forum.“Barack and I wouldn’t bring some crap up in our neighborhood,” she reportedly said. She pointed out that she hails from the area by birth and that her husband Barack comes from South Side by choice.During his speech at the forum, Barack Obama said: “We joke about it a little bit, like this is the mothership.”While they hope the center could anchor a potential economic revival in the area, there have been setbacks.Opponents of the project are pursuing a federal court appeal after losing a lawsuit. Federal authorities must also review the project, as Jackson Park is listed on the National Register of Historic Places. In December, this review will have already spanned two years. It remains unclear when the review will end, according to the newspaper.",http://l1.yimg.com/uu/api/res/1.2/tFDCT6hUI0Fhi3FSuxO5rg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/24358efb38f77e111169ab61cdc08cbb,Michelle Obama says white Americans 'still running' from black neighbors -2 women have been criminally charged over their partners' suicides. Why do men escape the same blame?,"Wed, 30 Oct 2019 15:46:18 -0400",https://news.yahoo.com/2-women-held-criminally-responsible-194618547.html,Experts told Insider they could not recall a similar instance of a man being charged with manslaughter in connection with his partner's suicide.,http://l1.yimg.com/uu/api/res/1.2/vDBjNfTtthApCA7Had7Jxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/4cb2c0cb41a84b7d16f125218324726b,2 women have been criminally charged over their partners' suicides. Why do men escape the same blame? -"CIA-backed Afghan units carry out illegal killings, other abuse - group","Wed, 30 Oct 2019 23:30:24 -0400",https://news.yahoo.com/cia-backed-afghan-units-carry-033024655.html,"Afghan security units backed by the U.S. Central Intelligence Agency (CIA) have carried out extrajudicial executions, enforced disappearances, indiscriminate air strikes and other rights abuses and should be disbanded, a rights group said on Thursday. Human Rights Watch said it investigated 14 cases in which CIA-backed Afghan counterinsurgency forces committed serious abuses in Afghanistan between late 2017 and mid-2019. ""They are illustrative of a larger pattern of serious laws-of-war violations — some amounting to war crimes — that extends to all provinces in Afghanistan where these paramilitary forces operate with impunity,"" the group said in a report.",,"CIA-backed Afghan units carry out illegal killings, other abuse - group" -"Former </>Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony","Wed, 30 Oct 2019 17:11:25 -0400",https://news.yahoo.com/former-time-editor-wants-hate-211125098.html,"A former Time editor claimed that the United States needs a law banning hate speech, and that President Donald Trump “might be in violation of it” if there were one -- because, apparently, he doesn’t notice the irony of holding both of these views at once.In a Tuesday tweet promoting his Washington Post piece, titled “Why America needs a hate speech law,” Richard Stengel stated:> My @WashingtonPost piece on why the very broadness of the First Amendment suggests we should have a hate speech law. And if we did, why the President might be in violation of it. https://t.co/3ybv3kC69f> > -- Richard Stengel (@stengel) October 29, 2019In the piece, Stengel writes that “many nations have passed laws to curb the incitement of racial and religious hatred” in the wake of World War II:> These laws started out as protections against the kinds of anti-Semitic bigotry that gave rise to the Holocaust. We call them hate speech laws, but there’s no agreed-upon definition of what hate speech actually is. In general, hate speech is speech that attacks and insults people on the basis of race, religion, ethnic origin and sexual orientation.“I’m all for protecting ‘thought that we hate,’ but not speech that incites hate,” he continues. “It undermines the very values of a fair marketplace of ideas that the First Amendment is designed to protect.”It’s interesting how Stengel actually does acknowledge the fact that “there’s no agreed-upon definition of what hate speech actually is,” and yet he still wants laws banning it. This makes absolutely no sense. After all, when he calls for laws to ban “hate speech,” he is, inherently, giving the government the power to decide what would and would not qualify -- the exact same government that is led by Donald Trump, and that is full of people who support him.In other words: Stengel somehow trusts that the government will have the same view of “hate speech” as he does, and then, in the same thought, seems to acknowledge that there’s actually no way that many of them would. Unless he thinks that the president and his congressional supporters would actually pass a law that they’d be in violation of, his argument for “hate speech” laws winds up being a pretty great argument against them.It’s ironic, but it’s not new: More often than not, it’s the uber-progressives arguing for laws against “hate speech” -- despite the fact that they’re often the same people who are also arguing that Donald Trump and Republicans are constantly spewing it. Maybe it’s just me, but if I thought that the leader of my government was, you know, literally Hitler or whatever, the last thing that I’d want would be to give that person and their supporters control over my speech.Yes, the First Amendment gives us the right to be “offensive” with our speech. Given the fact that a new thing seems to be declared “racist” or “sexist” every day, I’m certainly glad that we do have this protection. After all, it would only take there being a few too many of the “super woke” in our government for a phrase like “you guys” to become a criminal offense.The truth is, though, the right to be “offensive” (however you define that subjective term, anyway) is not even the most important role that our First Amendment plays. No, what’s most important is that it protects our right to speak out against the government when we see fit -- without having to worry about its retaliation. Like it or not, the only way to ensure that we retain this important check on government power is to never (ever) give its leaders a vehicle take it away.",http://l1.yimg.com/uu/api/res/1.2/eTNessteMBpuBTcqmJGuYw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/bae9af12e23cce197b317b5c1be56053,"Former Time Editor Wants Hate-Speech Laws, Thinks Trump ‘Might’ Violate Them, and Misses the Irony" -Auburn tree poisoner fails to appear in court for hearing,"Wed, 30 Oct 2019 16:48:17 -0400",https://news.yahoo.com/auburn-tree-poisoner-fails-appear-194723533.html,"The University of Alabama fan convicted of poisoning Auburn University's oak trees failed to attend a hearing Wednesday on why he hasn't paid court-ordered restitution. The Opelika-Auburn news reports Harvey Updyke, a retired Texas state trooper who lives in Louisiana, didn't show up for a hearing before Lee County Circuit Judge Jacob Walker. The judge also gave prosecutors a month to review a letter from Updyke's doctor saying the 71-year-old man wasn't well enough to travel to Opelika for court.",http://l.yimg.com/uu/api/res/1.2/1gNOA2pXfyrM6OAN_NUHOw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/1e8456da4c5bf7d0118896a94671de0c,Auburn tree poisoner fails to appear in court for hearing -Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards',"Wed, 30 Oct 2019 15:06:05 -0400",https://news.yahoo.com/greta-thunberg-declines-environmental-prize-121553844.html,"Greta Thunberg declined an environmental award worth $52,000 from the Nordic Council. She said she wants leaders to listen to science, not prizes.",http://l1.yimg.com/uu/api/res/1.2/Zs3mik0jZfAlLWEoJyMkrg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://d.yimg.com/hd/cp-video-transcode/1009217/65cb79a9-02b8-4a7f-8aab-1362c984a8d9/91fe7102-9982-585b-9f27-cf068fc0abbc/data_3_0.jpg?s=0934d9d804c275fcaf2293e2378a9716&c=824aa0951e8394826b508be5fae1f49f&a=tripleplay4us&mr=0,Greta Thunberg declines environmental prize: 'Climate movement does not need any more awards' -"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp","Wed, 30 Oct 2019 08:48:29 -0400",https://news.yahoo.com/supreme-court-citizens-united-led-090034035.html,"Ukraine-gate illustrates precisely how independent expenditures can corrupt. Trump, Giuliani, Fruman and Parnas show how it's done. All in one month.",http://l.yimg.com/uu/api/res/1.2/oMrm78wfyXVi4Q1FxuwrGw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/0ad1be9ebb64ad4d5f7c03222769ad30,"Supreme Court and Citizens United led Trump, Giuliani & friends into the Ukraine swamp" -A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state,"Wed, 30 Oct 2019 09:53:00 -0400",https://news.yahoo.com/california-couple-forced-evacuate-home-235234902.html,California's Sonoma wine country dealt with destructive wildfires in 2017. Here's how one winery is dealing with 2019's Kincade Fire.,http://l2.yimg.com/uu/api/res/1.2/CA00kDlCDdfJPE_xJu5MPA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/2f68ab3c62383b74b3b0ed65ea629f04,A California couple who was forced to evacuate their home and winery share what it's really like to endure the wildfires engulfing the state -Searchers look for man seen on YouTube falling on Mount Fuji,"Wed, 30 Oct 2019 08:23:13 -0400",https://news.yahoo.com/searchers-look-man-seen-youtube-064924811.html,"Japanese police said they found a body on Mount Fuji on Wednesday and are verifying whether it is that of a man who was seen falling down a snow-covered slope while livestreaming his climb up the mountain on YouTube. The video, titled ""Let's Go to Snowy Mt. Fuji,"" shows a man who identifies himself as TEDZU panting. The snow-covered path becomes narrower as he walks along a cliffside fence.",http://l.yimg.com/uu/api/res/1.2/kUiWctwisnZSup5k69MgDg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/5ed194327d6c1f140aa3cfa5eb450b34,Searchers look for man seen on YouTube falling on Mount Fuji -This Is What It Would Take for Iran to Destroy an F-35,"Wed, 30 Oct 2019 02:00:00 -0400",https://news.yahoo.com/ton-iran-destroy-f-35-060000974.html,"A lot, that's what.",http://l1.yimg.com/uu/api/res/1.2/OCFcZ7goiLRiWliNg1RCxw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/fcdeec63d5590fe1616fd511bd254a0d,This Is What It Would Take for Iran to Destroy an F-35 -NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden,"Wed, 30 Oct 2019 15:28:10 -0400",https://news.yahoo.com/nyc-medical-examiner-dismisses-epstein-192810863.html,"Robyn Beck/ReutersNew York City’s chief medical examiner pushed back hard Wednesday against a celebrity pathologist-for-hire’s conspiracy-stirring claim that Jeffrey Epstein’s autopsy was more consistent with homicide than suicide.“The original medical investigation was thorough and complete. There is no reason for a second medical investigation by our office,” said Dr. Barbara Sampson.Sampson determined Epstein died by suicide from hanging in his jail cell in August, while he was awaiting trial on sex-trafficking charges.Epstein’s lawyers and family have refused to accept her finding, and the disgraced financier’s brother hired Dr. Michael Baden—erstwhile host of HBO’s Autopsy—to do his own investigation.Jeffrey Epstein’s Death Ruled Suicide by Hanging: New York City Medical ExaminerDuring an appearance Wednesday morning on Fox News, where he is a contributor, Baden said his own review isn’t complete but nonetheless suggested that suicide isn’t the cause of death.He claimed a collection of neck fractures in Epstein’s hyoid bone and thyroid cartilage “are extremely unusual in suicidal hangings and could occur much more commonly in homicidal strangulation.”“I’ve not seen in 50 years where that occurred in a suicidal hanging case,” Baden said.Although more common in homicidal strangulation cases, some studies have found that hyoid and thyroid fractures are not rare in suicidal hangings.A 2000 study in Australia found fractures in nearly half the 40 suicide cases it examined and said they were even more common in older victims and men; in fact, 15 percent had fractures of both the hyoid and the thyroid. And a 2010 study out of Thailand found such fractures in 25 percent of the confirmed suicides it reviewed.After His Suicide Watch Ended, Jeffrey Epstein Was Left to Look After HimselfBaden, who observed the autopsy performed by Sampson, served briefly as the city’s chief medical examiner before being fired in 1979 by then-Mayor Ed Koch in response to a complaint that he told doctors during a guest-speaking event that Gov. Nelson Rockefeller had died during sexual intercourse.Three years later, he was dismissed as chief deputy medical examiner by Suffolk County, New York, over a magazine article about ways to kill that wouldn’t show up in an autopsy; he protested that he was misquoted.In the '70s, Baden helped Congress investigate the assassinations of President John F. Kennedy and Martin Luther King Jr.—he concluded that Lee Harvey Oswald and James Earl Ray, respectively, were the killers—but became famous for serving as a private pathologist in high-profile cases like the Aaron Hernandez suicide, the O.J. Simpson murder trial, and the Jayson Williams shooting. He also served as a defense witness in the Phil Spector murder trial, where he reportedly testified that he had no conflict of interest in the case even though his wife was heading Spector’s legal team.Baden isn’t the only one skeptical about the official account of Epstein’s death at the high-security federal lockup in Manhattan, which is currently the subject of a Justice Department probe.Spencer Kuvin, a lawyer representing victims of Epstein, said serious questions remain, including the whereabouts of the guards assigned to monitor him, why the cameras outside his cell apparently didn’t work, and why he was taken off suicide watch.“It all makes no sense. Until they come out with the evidence, I don’t believe anything they’re telling us,” Kuvin said. “Exactly what happened I can’t tell you, but I certainly don’t believe the story they’re trying to feed everyone.”Sigrid McCawley, an attorney at Boies Schiller Flexner, the law firm representing some of Epstein’s victims, said the ongoing Justice Department probe “limits what can and should be said at this time.”“But as the public has come to to understand the horrifying scope and scale of the international sex trafficking system he operated for decades with impunity, what really matters for the brave survivors who are seeking justice is how he lived, not how he died,” she said. “That is how the man should be judged.”Kuvin said his clients are “more interested in seeing co-conspirators prosecuted” than in delving into Epstein autopsy theories.“The justice system failed. They either allowed him to take his own life or someone got in there and killed him,” Kuvin told The Daily Beast. “Either way, it’s a failure of the Justice Department
 [which] has failed them repeatedly over the last 13 years. This was just one more time.”If you or a loved one are struggling with suicidal thoughts, please reach out to the National Suicide Prevention Lifeline at 1-800-273-TALK (8255), or contact the Crisis Text Line by texting TALK to 741741Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/siZIeVPuJ9_PWKpedfWniw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/ecf97654f18e608d05355321d695ab3a,NYC Medical Examiner Dismisses Epstein ‘Homicide’ Claim by Dr. Michael Baden -UN envoy to Burundi quits ahead of 2020 vote,"Wed, 30 Oct 2019 19:15:24 -0400",https://news.yahoo.com/un-envoy-burundi-quits-ahead-2020-vote-231524748.html,"The United Nations envoy to Burundi announced on Wednesday that he planned to step down from the post he has held for two years, amid concerns over the impartiality of elections set for 2020. ""Poorly organized and contested elections are always a source of conflict,"" he warned.",http://l.yimg.com/uu/api/res/1.2/RpSre8_sFXg3cpMJyQWAaw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7ebfdcfc93189d85cf9ac6ba4228dc0ffcf4f4d5.jpg,UN envoy to Burundi quits ahead of 2020 vote -The Latest: Man accused of arson in California wildfire,"Wed, 30 Oct 2019 21:21:34 -0400",https://news.yahoo.com/latest-wildfire-burns-southern-california-134456310.html,"Authorities say a man was arrested and accused of arson after a crew responded to a report of a wildfire in Northern California. A CalFire statement said engine crews were able to quickly contain the small fire in the Sonoma County community of Geyserville and identified a potential suspect. Authorities reported progress Wednesday in battling the Kincade fire in Sonoma County that started last week outside of Geyserville and forced the evacuation of the entire community, home to about 900 people.",http://l1.yimg.com/uu/api/res/1.2/0C9vSnVbBp3cT5iskC_3jg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/113324e2d60ca62d1ed4d3f0a6d4871a,The Latest: Man accused of arson in California wildfire +They're recycling plastic milk bottles to build roads,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, +They're recycling plastic milk bottles to build roads,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, diff --git a/news_feed/news_cash/20191031.csv b/news_feed/news_cash/20191031.csv deleted file mode 100644 index 0c4e58d..0000000 --- a/news_feed/news_cash/20191031.csv +++ /dev/null @@ -1,745 +0,0 @@ -title,pubDate,link,description,imageLink,imageDescription -70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 12:33:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, -India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, -Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 10:10:40 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, -Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, -Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, -4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, -Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, -Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, -Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, -7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, -70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, -India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, -Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, -Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, -Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, -4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, -Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, -Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, -Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, -7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, -70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, -India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, -Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, -Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, -Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, -4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, -Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, -Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, -Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, -7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, -70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, -India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, -Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, -Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, -Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, -4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, -Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, -Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, -Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, -7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, -70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, -India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, -Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, -Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, -Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, -4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, -Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, -Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, -Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, -7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, -70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, -India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, -Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, -Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, -Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, -4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, -Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, -Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, -Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, -7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, -70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, -India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, -Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, -Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, -Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, -4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, -Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, -Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, -Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, -7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, -70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, -India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, -Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, -Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, -Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, -4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, -Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, -Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, -Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, -7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, -70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, -India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, -Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, -Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, -Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, -4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, -Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, -Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, -Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, -7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, -70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, -India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, -Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, -Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, -Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, -4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, -Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, -Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, -Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, -7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, -70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, -India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, -Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, -Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, -Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, -4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, -Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, -Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, -Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, -7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, -70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, -India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, -Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, -Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, -Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, -4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, -Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, -Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, -Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, -7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, -70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, -India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, -Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, -Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, -Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, -4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, -Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, -Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, -Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, -7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, -70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, -India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, -Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, -Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, -Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, -4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, -Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, -Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, -Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, -7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, -70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, -India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, -Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, -Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, -Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, -4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, -Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, -Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, -Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, -7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, -70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, -India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, -Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, -Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, -Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, -4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, -Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, -Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, -Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, -7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, -70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, -India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, -Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, -Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, -Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, -4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, -Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, -Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, -Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, -7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, -70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, -India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, -Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, -Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, -Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, -4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, -Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, -Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, -Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, -7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, -70 dead after cooking canister explodes on train,"Thu, 31 Oct 2019 14:47:29 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/1mz5Mmz3uXw/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/1mz5Mmz3uXw, -India downgrades Kashmir's status,"Thu, 31 Oct 2019 10:36:55 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gTs78zGvmko/index.html,"India has officially split the former state of Jammu and Kashmir into two union territories, a move that gives the government in New Delhi greater control over the disputed Muslim-majority region.",http://feeds.feedburner.com/~r/rss/edition_world/~4/gTs78zGvmko, -Hong Kong has fallen into a recession,"Thu, 31 Oct 2019 14:55:14 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/XMoYOrld4W8/index.html,"Months of protests in Hong Kong that forced shops to close, paralyzed public transportation and scared off tourists have left the city's economy in worse shape than feared.",http://feeds.feedburner.com/~r/rss/edition_world/~4/XMoYOrld4W8, -Brexit wrecked Britain and it hasn't even happened yet,"Thu, 31 Oct 2019 08:55:04 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/A1K0YMi1yiA/index.html,The people of the UK voted to leave the European Union over three years and four months ago -- and the country has been bickering about exactly how to do it ever since.,http://feeds.feedburner.com/~r/rss/edition_world/~4/A1K0YMi1yiA, -Why US supermarkets are building 'dark stores',"Thu, 31 Oct 2019 13:36:43 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/5pYFr94C0IE/index.html,America's top supermarkets are facing a new challenge: Grocery aisles in stores aren't suited to meet the growing demand for online orders.,http://feeds.feedburner.com/~r/rss/edition_world/~4/5pYFr94C0IE, -4 things to know about the new AirPods Pro ,"Thu, 31 Oct 2019 14:22:46 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/yqRKXqVHxwg/index.html,Apple's newest AirPods went on sale in stores on Wednesday.,http://feeds.feedburner.com/~r/rss/edition_world/~4/yqRKXqVHxwg, -Now's the time to refi. Rates as low as 3.04% APR (15yr)!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/BNRQlairJok/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/BNRQlairJok, -Fed just dropped mortgage rates. Act now!,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/DTEw97eGVO4/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/DTEw97eGVO4, -Refi rates at 3.04% APR (15 yr). Do you qualify?,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/QMqkOqfRKp0/,,http://feeds.feedburner.com/~r/rss/edition_world/~4/QMqkOqfRKp0, -7 cards charging 0% interest until 2021,2019-10-31,http://rss.cnn.com/~r/rss/edition_world/~3/wNixGNK25QQ/pay-0-interest-until-2021,,http://feeds.feedburner.com/~r/rss/edition_world/~4/wNixGNK25QQ, -"House Democrats face question: Impeach Pence, or make him president?","Thu, 31 Oct 2019 05:00:38 -0400",https://news.yahoo.com/house-democrats-face-question-impeach-pence-or-make-him-president-090012685.html,"If the House approves impeachment, and if the Senate votes to remove Trump, Pence would become president. Would he make a better president?",http://l1.yimg.com/uu/api/res/1.2/Z3VG5Hx16YaZq2pevUBETg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-images/2019-10/deb28d30-fb5b-11e9-bfef-ef163d511377,"House Democrats face question: Impeach Pence, or make him president?" -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong -She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community","Thu, 31 Oct 2019 07:01:10 -0400",https://news.yahoo.com/photos-show-paradise-california-one-110110569.html,"The cleanup in Paradise, California, shows no sign of ending. 18,000 buildings were razed by the Camp Fire, and residents must start from scratch.",http://l1.yimg.com/uu/api/res/1.2/PCMbfOGgiQrP9wsDr6LBRw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/09fe4ea1b28d747b58b045d99bbd1dee,"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community" -"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia","Thu, 31 Oct 2019 07:37:46 -0400",https://news.yahoo.com/1-body-believed-missing-british-113746232.html,"Cambodian authorities found a body floating near the Thai border on Thursday that is believed to be a 21-year-old British woman who went missing last week from a beach party in a coastal area popular with backpackers, police said. Amelia Bambridge's disappearance prompted a search with divers, land-based teams and police drones after her purse was found on a beach with her mobile phone and watch inside. Cambodian maritime authorities located the body in waters near the Thai border, about 100 kilometres (62 miles) away from where she had disappeared last week, said Chuon Narin, police chief of the Preah Sihanouk province.",,"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia" -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -"2 new California fires burn homes, send residents fleeing","Thu, 31 Oct 2019 10:37:54 -0400",https://news.yahoo.com/california-not-fire-danger-lingering-052524893.html,"Strong winds fanned new fires in Southern California on Thursday, burning homes and forcing residents to flee in a repeat of a frightening scenario already faced by tens of thousands across the state. The latest blazes erupted in the heavily populated inland region east of Los Angeles as strong, seasonal Santa Ana winds continued to blow with gusts of up to 60 mph (96 kph) predicted to last until the evening before they fade away. A fast-moving fire spread into the northern neighborhoods of the city of San Bernardino, forcing the evacuation of 490 homes — approximately 1,300 people, the San Bernardino County Fire Department said.",http://l.yimg.com/uu/api/res/1.2/EgvcbkR5TS0030iTKqMFUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/50bdfeb160fad4ba28ac5cc0abe6c7d8,"2 new California fires burn homes, send residents fleeing" -Indian Kashmir formally ceases to be a state,"Thu, 31 Oct 2019 03:49:33 -0400",https://news.yahoo.com/indian-kashmir-formally-ceases-state-074702472.html,"India's Muslim-majority region of Kashmir was formally divided on Thursday, almost three months after losing its autonomy in a move that triggered violence and stoked tensions with arch-rival Pakistan. The move, announced in early August when India imposed a lockdown and sent in tens of thousands of extra troops, saw Jammu and Kashmir cease to be a state and split into two new administrative territories ruled directly from New Delhi. Speaking next to a colossal statue of independence hero Sardar Vallabhbhai Patel in his home state of Gujarat, Prime Minister Narendra Modi on Thursday hailed a ""bright future"" for the blood-soaked Himalayan region.",http://l2.yimg.com/uu/api/res/1.2/tgmQ6cfdT1T5lXFkGvD8Cg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/6ca8b167fc5782c61c479d4a7165db5861e924af.jpg,Indian Kashmir formally ceases to be a state -The Supreme Court Should Kill DACA,"Thu, 31 Oct 2019 06:30:31 -0400",https://news.yahoo.com/supreme-court-end-daca-103031297.html,"President Obama created an illegal policy for the executive branch to follow. President Trump decided to stop that policy. And in a bizarre case the Supreme Court will be hearing November 12, activist groups are suing to force the executive branch to keep acting illegally.At the heart of the case is the Deferred Action for Childhood Arrivals (DACA) program, through which Obama made legal status and work authorization available to more than a million illegal-immigrant “Dreamers” who arrived in this country as minors. Trump decided to end the program and was, unsurprisingly, promptly sued.If the year were 2016 and the lawsuit were about whether the Court itself should strike down DACA — instead of whether it should stop the executive from ending it — you could at least have a sliver of a debate. Federal immigration laws do grant the executive branch broad enforcement discretion, and the executive branch has used deferred action, albeit on a much narrower basis, to avoid deporting sensitive groups in the past.However, even in that hypothetical case, the program would not have much of a chance before a conservative Court. A similar program for the illegal-immigrant parents of citizen children (“DAPA”) was enjoined in court and never implemented, and the appeals-court ruling against the program spelled out an argument that would obviously apply to DACA as well.The appeals court pointed out that, as vague as U.S. immigration laws can be, they lay out an elaborate process for granting legal status to immigrants. In lieu of that system, the Obama administration’s interpretation of the law would allow the executive “to grant lawful presence and work authorization to any illegal alien in the United States — an untenable position in light of the [law’s] intricate system of immigration classifications and employment eligibility.”The court also stressed that “previous deferred-action programs are not analogous to DAPA.” They were typically used to help people from a specific country in the wake of a disaster, or to help immigrants move from one legal status to another.The Supreme Court confronted the DAPA case in the wake of Antonin Scalia’s death, split 4–4, and thereby let the appeals-court ruling be the final word. The Court has moved to the right since then, so the four votes supporting the appeals-court ruling likely represent the views of the new five-justice conservative majority.And there’s a big difference between the old DAPA case and the new DACA one: In the previous case, the courts were asked to stop the executive branch from acting illegally, raising the age-old quandary of how aggressive the judicial branch should be when it comes to reining in the abuses of the executive. This time, the courts are asked to refuse to let the executive branch end the illegal program on its own, on the idea that the administration failed to adequately explain and defend its reasons for doing so. Such i-dotting and t-crossing is required under the Administrative Procedures Act.As Josh Blackman and Ilya Shapiro — who both support DACA as a policy — explained in a recent brief for the Cato Institute, the argument just doesn’t hold water. Even if the short letter laying out the administration’s objections wasn’t a “model of clarity,” it explained that DACA lacked “proper statutory authority” and suffered from the same problems that had gotten DAPA killed in court on “multiple legal grounds.” The letter also alluded to a deeper constitutional problem: If current immigration law does allow the executive branch to change policy so drastically on its own, it’s arguably an illegal delegation of Congress’s lawmaking power, and the executive branch can and should avoid this problem by winding down the policy.But most to the point, Blackman and Shapiro write that “the Administrative Procedure Act (APA) cannot be read to force the executive branch to continue implementing a policy that is contrary to law, regardless of how it chooses to rescind the policy.”Something like DACA will almost certainly be part of any long-term compromise on immigration policy. I’m sure most congressional Republicans would be happy to preserve it in exchange for a smarter immigration system. But the executive had no right to enact DACA on its own, and the courts have no right to stop the Trump administration from correcting course.",http://l1.yimg.com/uu/api/res/1.2/Zo3439T_YD9HcnTVxOQcbw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/99f778b59c4318e137b1700d28478d94,The Supreme Court Should Kill DACA -"House Democrats face question: Impeach Pence, or make him president?","Thu, 31 Oct 2019 05:00:38 -0400",https://news.yahoo.com/house-democrats-face-question-impeach-pence-or-make-him-president-090012685.html,"If the House approves impeachment, and if the Senate votes to remove Trump, Pence would become president. Would he make a better president?",http://l1.yimg.com/uu/api/res/1.2/Z3VG5Hx16YaZq2pevUBETg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-images/2019-10/deb28d30-fb5b-11e9-bfef-ef163d511377,"House Democrats face question: Impeach Pence, or make him president?" -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong -She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community","Thu, 31 Oct 2019 07:01:10 -0400",https://news.yahoo.com/photos-show-paradise-california-one-110110569.html,"The cleanup in Paradise, California, shows no sign of ending. 18,000 buildings were razed by the Camp Fire, and residents must start from scratch.",http://l1.yimg.com/uu/api/res/1.2/PCMbfOGgiQrP9wsDr6LBRw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/09fe4ea1b28d747b58b045d99bbd1dee,"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community" -"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia","Thu, 31 Oct 2019 07:37:46 -0400",https://news.yahoo.com/1-body-believed-missing-british-113746232.html,"Cambodian authorities found a body floating near the Thai border on Thursday that is believed to be a 21-year-old British woman who went missing last week from a beach party in a coastal area popular with backpackers, police said. Amelia Bambridge's disappearance prompted a search with divers, land-based teams and police drones after her purse was found on a beach with her mobile phone and watch inside. Cambodian maritime authorities located the body in waters near the Thai border, about 100 kilometres (62 miles) away from where she had disappeared last week, said Chuon Narin, police chief of the Preah Sihanouk province.",,"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia" -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -"2 new California fires burn homes, send residents fleeing","Thu, 31 Oct 2019 10:37:54 -0400",https://news.yahoo.com/california-not-fire-danger-lingering-052524893.html,"Strong winds fanned new fires in Southern California on Thursday, burning homes and forcing residents to flee in a repeat of a frightening scenario already faced by tens of thousands across the state. The latest blazes erupted in the heavily populated inland region east of Los Angeles as strong, seasonal Santa Ana winds continued to blow with gusts of up to 60 mph (96 kph) predicted to last until the evening before they fade away. A fast-moving fire spread into the northern neighborhoods of the city of San Bernardino, forcing the evacuation of 490 homes — approximately 1,300 people, the San Bernardino County Fire Department said.",http://l.yimg.com/uu/api/res/1.2/EgvcbkR5TS0030iTKqMFUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/50bdfeb160fad4ba28ac5cc0abe6c7d8,"2 new California fires burn homes, send residents fleeing" -Indian Kashmir formally ceases to be a state,"Thu, 31 Oct 2019 03:49:33 -0400",https://news.yahoo.com/indian-kashmir-formally-ceases-state-074702472.html,"India's Muslim-majority region of Kashmir was formally divided on Thursday, almost three months after losing its autonomy in a move that triggered violence and stoked tensions with arch-rival Pakistan. The move, announced in early August when India imposed a lockdown and sent in tens of thousands of extra troops, saw Jammu and Kashmir cease to be a state and split into two new administrative territories ruled directly from New Delhi. Speaking next to a colossal statue of independence hero Sardar Vallabhbhai Patel in his home state of Gujarat, Prime Minister Narendra Modi on Thursday hailed a ""bright future"" for the blood-soaked Himalayan region.",http://l2.yimg.com/uu/api/res/1.2/tgmQ6cfdT1T5lXFkGvD8Cg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/6ca8b167fc5782c61c479d4a7165db5861e924af.jpg,Indian Kashmir formally ceases to be a state -The Supreme Court Should Kill DACA,"Thu, 31 Oct 2019 06:30:31 -0400",https://news.yahoo.com/supreme-court-end-daca-103031297.html,"President Obama created an illegal policy for the executive branch to follow. President Trump decided to stop that policy. And in a bizarre case the Supreme Court will be hearing November 12, activist groups are suing to force the executive branch to keep acting illegally.At the heart of the case is the Deferred Action for Childhood Arrivals (DACA) program, through which Obama made legal status and work authorization available to more than a million illegal-immigrant “Dreamers” who arrived in this country as minors. Trump decided to end the program and was, unsurprisingly, promptly sued.If the year were 2016 and the lawsuit were about whether the Court itself should strike down DACA — instead of whether it should stop the executive from ending it — you could at least have a sliver of a debate. Federal immigration laws do grant the executive branch broad enforcement discretion, and the executive branch has used deferred action, albeit on a much narrower basis, to avoid deporting sensitive groups in the past.However, even in that hypothetical case, the program would not have much of a chance before a conservative Court. A similar program for the illegal-immigrant parents of citizen children (“DAPA”) was enjoined in court and never implemented, and the appeals-court ruling against the program spelled out an argument that would obviously apply to DACA as well.The appeals court pointed out that, as vague as U.S. immigration laws can be, they lay out an elaborate process for granting legal status to immigrants. In lieu of that system, the Obama administration’s interpretation of the law would allow the executive “to grant lawful presence and work authorization to any illegal alien in the United States — an untenable position in light of the [law’s] intricate system of immigration classifications and employment eligibility.”The court also stressed that “previous deferred-action programs are not analogous to DAPA.” They were typically used to help people from a specific country in the wake of a disaster, or to help immigrants move from one legal status to another.The Supreme Court confronted the DAPA case in the wake of Antonin Scalia’s death, split 4–4, and thereby let the appeals-court ruling be the final word. The Court has moved to the right since then, so the four votes supporting the appeals-court ruling likely represent the views of the new five-justice conservative majority.And there’s a big difference between the old DAPA case and the new DACA one: In the previous case, the courts were asked to stop the executive branch from acting illegally, raising the age-old quandary of how aggressive the judicial branch should be when it comes to reining in the abuses of the executive. This time, the courts are asked to refuse to let the executive branch end the illegal program on its own, on the idea that the administration failed to adequately explain and defend its reasons for doing so. Such i-dotting and t-crossing is required under the Administrative Procedures Act.As Josh Blackman and Ilya Shapiro — who both support DACA as a policy — explained in a recent brief for the Cato Institute, the argument just doesn’t hold water. Even if the short letter laying out the administration’s objections wasn’t a “model of clarity,” it explained that DACA lacked “proper statutory authority” and suffered from the same problems that had gotten DAPA killed in court on “multiple legal grounds.” The letter also alluded to a deeper constitutional problem: If current immigration law does allow the executive branch to change policy so drastically on its own, it’s arguably an illegal delegation of Congress’s lawmaking power, and the executive branch can and should avoid this problem by winding down the policy.But most to the point, Blackman and Shapiro write that “the Administrative Procedure Act (APA) cannot be read to force the executive branch to continue implementing a policy that is contrary to law, regardless of how it chooses to rescind the policy.”Something like DACA will almost certainly be part of any long-term compromise on immigration policy. I’m sure most congressional Republicans would be happy to preserve it in exchange for a smarter immigration system. But the executive had no right to enact DACA on its own, and the courts have no right to stop the Trump administration from correcting course.",http://l1.yimg.com/uu/api/res/1.2/Zo3439T_YD9HcnTVxOQcbw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/99f778b59c4318e137b1700d28478d94,The Supreme Court Should Kill DACA -"House Democrats face question: Impeach Pence, or make him president?","Thu, 31 Oct 2019 05:00:38 -0400",https://news.yahoo.com/house-democrats-face-question-impeach-pence-or-make-him-president-090012685.html,"If the House approves impeachment, and if the Senate votes to remove Trump, Pence would become president. Would he make a better president?",http://l1.yimg.com/uu/api/res/1.2/Z3VG5Hx16YaZq2pevUBETg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-images/2019-10/deb28d30-fb5b-11e9-bfef-ef163d511377,"House Democrats face question: Impeach Pence, or make him president?" -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong -She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community","Thu, 31 Oct 2019 07:01:10 -0400",https://news.yahoo.com/photos-show-paradise-california-one-110110569.html,"The cleanup in Paradise, California, shows no sign of ending. 18,000 buildings were razed by the Camp Fire, and residents must start from scratch.",http://l1.yimg.com/uu/api/res/1.2/PCMbfOGgiQrP9wsDr6LBRw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/09fe4ea1b28d747b58b045d99bbd1dee,"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community" -"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia","Thu, 31 Oct 2019 07:37:46 -0400",https://news.yahoo.com/1-body-believed-missing-british-113746232.html,"Cambodian authorities found a body floating near the Thai border on Thursday that is believed to be a 21-year-old British woman who went missing last week from a beach party in a coastal area popular with backpackers, police said. Amelia Bambridge's disappearance prompted a search with divers, land-based teams and police drones after her purse was found on a beach with her mobile phone and watch inside. Cambodian maritime authorities located the body in waters near the Thai border, about 100 kilometres (62 miles) away from where she had disappeared last week, said Chuon Narin, police chief of the Preah Sihanouk province.",,"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia" -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -"2 new California fires burn homes, send residents fleeing","Thu, 31 Oct 2019 10:37:54 -0400",https://news.yahoo.com/california-not-fire-danger-lingering-052524893.html,"Strong winds fanned new fires in Southern California on Thursday, burning homes and forcing residents to flee in a repeat of a frightening scenario already faced by tens of thousands across the state. The latest blazes erupted in the heavily populated inland region east of Los Angeles as strong, seasonal Santa Ana winds continued to blow with gusts of up to 60 mph (96 kph) predicted to last until the evening before they fade away. A fast-moving fire spread into the northern neighborhoods of the city of San Bernardino, forcing the evacuation of 490 homes — approximately 1,300 people, the San Bernardino County Fire Department said.",http://l.yimg.com/uu/api/res/1.2/EgvcbkR5TS0030iTKqMFUA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/50bdfeb160fad4ba28ac5cc0abe6c7d8,"2 new California fires burn homes, send residents fleeing" -Indian Kashmir formally ceases to be a state,"Thu, 31 Oct 2019 03:49:33 -0400",https://news.yahoo.com/indian-kashmir-formally-ceases-state-074702472.html,"India's Muslim-majority region of Kashmir was formally divided on Thursday, almost three months after losing its autonomy in a move that triggered violence and stoked tensions with arch-rival Pakistan. The move, announced in early August when India imposed a lockdown and sent in tens of thousands of extra troops, saw Jammu and Kashmir cease to be a state and split into two new administrative territories ruled directly from New Delhi. Speaking next to a colossal statue of independence hero Sardar Vallabhbhai Patel in his home state of Gujarat, Prime Minister Narendra Modi on Thursday hailed a ""bright future"" for the blood-soaked Himalayan region.",http://l2.yimg.com/uu/api/res/1.2/tgmQ6cfdT1T5lXFkGvD8Cg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/6ca8b167fc5782c61c479d4a7165db5861e924af.jpg,Indian Kashmir formally ceases to be a state -The Supreme Court Should Kill DACA,"Thu, 31 Oct 2019 06:30:31 -0400",https://news.yahoo.com/supreme-court-end-daca-103031297.html,"President Obama created an illegal policy for the executive branch to follow. President Trump decided to stop that policy. And in a bizarre case the Supreme Court will be hearing November 12, activist groups are suing to force the executive branch to keep acting illegally.At the heart of the case is the Deferred Action for Childhood Arrivals (DACA) program, through which Obama made legal status and work authorization available to more than a million illegal-immigrant “Dreamers” who arrived in this country as minors. Trump decided to end the program and was, unsurprisingly, promptly sued.If the year were 2016 and the lawsuit were about whether the Court itself should strike down DACA — instead of whether it should stop the executive from ending it — you could at least have a sliver of a debate. Federal immigration laws do grant the executive branch broad enforcement discretion, and the executive branch has used deferred action, albeit on a much narrower basis, to avoid deporting sensitive groups in the past.However, even in that hypothetical case, the program would not have much of a chance before a conservative Court. A similar program for the illegal-immigrant parents of citizen children (“DAPA”) was enjoined in court and never implemented, and the appeals-court ruling against the program spelled out an argument that would obviously apply to DACA as well.The appeals court pointed out that, as vague as U.S. immigration laws can be, they lay out an elaborate process for granting legal status to immigrants. In lieu of that system, the Obama administration’s interpretation of the law would allow the executive “to grant lawful presence and work authorization to any illegal alien in the United States — an untenable position in light of the [law’s] intricate system of immigration classifications and employment eligibility.”The court also stressed that “previous deferred-action programs are not analogous to DAPA.” They were typically used to help people from a specific country in the wake of a disaster, or to help immigrants move from one legal status to another.The Supreme Court confronted the DAPA case in the wake of Antonin Scalia’s death, split 4–4, and thereby let the appeals-court ruling be the final word. The Court has moved to the right since then, so the four votes supporting the appeals-court ruling likely represent the views of the new five-justice conservative majority.And there’s a big difference between the old DAPA case and the new DACA one: In the previous case, the courts were asked to stop the executive branch from acting illegally, raising the age-old quandary of how aggressive the judicial branch should be when it comes to reining in the abuses of the executive. This time, the courts are asked to refuse to let the executive branch end the illegal program on its own, on the idea that the administration failed to adequately explain and defend its reasons for doing so. Such i-dotting and t-crossing is required under the Administrative Procedures Act.As Josh Blackman and Ilya Shapiro — who both support DACA as a policy — explained in a recent brief for the Cato Institute, the argument just doesn’t hold water. Even if the short letter laying out the administration’s objections wasn’t a “model of clarity,” it explained that DACA lacked “proper statutory authority” and suffered from the same problems that had gotten DAPA killed in court on “multiple legal grounds.” The letter also alluded to a deeper constitutional problem: If current immigration law does allow the executive branch to change policy so drastically on its own, it’s arguably an illegal delegation of Congress’s lawmaking power, and the executive branch can and should avoid this problem by winding down the policy.But most to the point, Blackman and Shapiro write that “the Administrative Procedure Act (APA) cannot be read to force the executive branch to continue implementing a policy that is contrary to law, regardless of how it chooses to rescind the policy.”Something like DACA will almost certainly be part of any long-term compromise on immigration policy. I’m sure most congressional Republicans would be happy to preserve it in exchange for a smarter immigration system. But the executive had no right to enact DACA on its own, and the courts have no right to stop the Trump administration from correcting course.",http://l1.yimg.com/uu/api/res/1.2/Zo3439T_YD9HcnTVxOQcbw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/99f778b59c4318e137b1700d28478d94,The Supreme Court Should Kill DACA -Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump.,http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -Pompeo: Trump–Zelensky Phone Conversation ‘Consistent’ With Administration’s Anti-Corruption Policy Goals,"Thu, 31 Oct 2019 08:05:39 -0400",https://news.yahoo.com/pompeo-trump-zelensky-phone-conversation-120539062.html,"Secretary of State Mike Pompeo on Wednesday evening defended President Trump from accusations of corruption based on the contents of a phone conversation between Trump and Ukrainian President Volodymyr Zelensky.""The call was consistent with what I had a long set of conversations with President Trump on our policy for an awfully long time,"" Pompeo said in an interview with Fox News. ""Our policy has been very clear all along with respect to Ukraine.""House Democrats are conducting an impeachment inquiry into whether Trump withheld military aid marked for Ukraine to pressure the country to investigate corruption allegations against political rival Joe Biden and his son. The inquiry is based in part on a July 25 conversation between Trump and Zelensky in which Trump repeatedly urges his Ukrainian counterpart to investigate the Bidens.""I heard the President very clearly on that call talking about making sure that corruption – whether that corruption took place in the 2016 election, whether that corruption was continuing to take place, that the monies that were being provided would be used appropriately,"" he continued. ""It was very consistent with what I’d understood President Trump and our administration to be doing all along.""Pompeo asserted that State Department officials who have given testimony detrimental to Trump during House Democrats' impeachment inquiry were in fact on the same page as the President in regards to policy on Ukraine.""My understanding is that every one of these individuals had the same Ukrainian policy that President Trump had,"" Pompeo said.The House is due to vote on formalizing the inquiry on Thursday.On Wednesday, National Security Council Ukraine expert Alexander Vindman, who listened to the call between Trump and Zelensky, testified to Congress that the transcript of the conversation released by the White House had been altered.",http://l1.yimg.com/uu/api/res/1.2/ach0B6AmtTpbiQhKLKSwWw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/1963769d6e33edd2a9e4003a6813da81,Pompeo: Trump–Zelensky Phone Conversation ‘Consistent’ With Administration’s Anti-Corruption Policy Goals -Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal -She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Striking Chicago teachers: We'll return if classes made up,"Thu, 31 Oct 2019 10:50:59 -0400",https://news.yahoo.com/striking-chicago-teachers-well-return-132350719.html,"The union representing 25,000 striking Chicago teachers voted to approve a tentative contract agreement with city officials but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Elected delegates for the Chicago Teachers Union voted Wednesday night to accept a tentative agreement with the nation's third-largest school district but say they won't come back without Mayor Lori Lightfoot's commitment. The union also encouraged members to fill the streets outside City Hall on Thursday, hoping to pressure Lightfoot into accepting its terms.",http://l2.yimg.com/uu/api/res/1.2/wHNKF.spntsmd2dxw8BNyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/80c07a1af9294f6ce1b88a5874ebb122,Striking Chicago teachers: We'll return if classes made up -Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky -"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia","Thu, 31 Oct 2019 07:37:46 -0400",https://news.yahoo.com/1-body-believed-missing-british-113746232.html,"Cambodian authorities found a body floating near the Thai border on Thursday that is believed to be a 21-year-old British woman who went missing last week from a beach party in a coastal area popular with backpackers, police said. Amelia Bambridge's disappearance prompted a search with divers, land-based teams and police drones after her purse was found on a beach with her mobile phone and watch inside. Cambodian maritime authorities located the body in waters near the Thai border, about 100 kilometres (62 miles) away from where she had disappeared last week, said Chuon Narin, police chief of the Preah Sihanouk province.",,"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia" -"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community","Thu, 31 Oct 2019 07:01:10 -0400",https://news.yahoo.com/photos-show-paradise-california-one-110110569.html,"The cleanup in Paradise, California, shows no sign of ending. 18,000 buildings were razed by the Camp Fire, and residents must start from scratch.",http://l1.yimg.com/uu/api/res/1.2/PCMbfOGgiQrP9wsDr6LBRw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/09fe4ea1b28d747b58b045d99bbd1dee,"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community" -"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump.,http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -Pompeo: Trump–Zelensky Phone Conversation ‘Consistent’ With Administration’s Anti-Corruption Policy Goals,"Thu, 31 Oct 2019 08:05:39 -0400",https://news.yahoo.com/pompeo-trump-zelensky-phone-conversation-120539062.html,"Secretary of State Mike Pompeo on Wednesday evening defended President Trump from accusations of corruption based on the contents of a phone conversation between Trump and Ukrainian President Volodymyr Zelensky.""The call was consistent with what I had a long set of conversations with President Trump on our policy for an awfully long time,"" Pompeo said in an interview with Fox News. ""Our policy has been very clear all along with respect to Ukraine.""House Democrats are conducting an impeachment inquiry into whether Trump withheld military aid marked for Ukraine to pressure the country to investigate corruption allegations against political rival Joe Biden and his son. The inquiry is based in part on a July 25 conversation between Trump and Zelensky in which Trump repeatedly urges his Ukrainian counterpart to investigate the Bidens.""I heard the President very clearly on that call talking about making sure that corruption – whether that corruption took place in the 2016 election, whether that corruption was continuing to take place, that the monies that were being provided would be used appropriately,"" he continued. ""It was very consistent with what I’d understood President Trump and our administration to be doing all along.""Pompeo asserted that State Department officials who have given testimony detrimental to Trump during House Democrats' impeachment inquiry were in fact on the same page as the President in regards to policy on Ukraine.""My understanding is that every one of these individuals had the same Ukrainian policy that President Trump had,"" Pompeo said.The House is due to vote on formalizing the inquiry on Thursday.On Wednesday, National Security Council Ukraine expert Alexander Vindman, who listened to the call between Trump and Zelensky, testified to Congress that the transcript of the conversation released by the White House had been altered.",http://l1.yimg.com/uu/api/res/1.2/ach0B6AmtTpbiQhKLKSwWw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/the_national_review_738/1963769d6e33edd2a9e4003a6813da81,Pompeo: Trump–Zelensky Phone Conversation ‘Consistent’ With Administration’s Anti-Corruption Policy Goals -Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal -She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Striking Chicago teachers: We'll return if classes made up,"Thu, 31 Oct 2019 10:50:59 -0400",https://news.yahoo.com/striking-chicago-teachers-well-return-132350719.html,"The union representing 25,000 striking Chicago teachers voted to approve a tentative contract agreement with city officials but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Elected delegates for the Chicago Teachers Union voted Wednesday night to accept a tentative agreement with the nation's third-largest school district but say they won't come back without Mayor Lori Lightfoot's commitment. The union also encouraged members to fill the streets outside City Hall on Thursday, hoping to pressure Lightfoot into accepting its terms.",http://l2.yimg.com/uu/api/res/1.2/wHNKF.spntsmd2dxw8BNyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/80c07a1af9294f6ce1b88a5874ebb122,Striking Chicago teachers: We'll return if classes made up -Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky -"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia","Thu, 31 Oct 2019 07:37:46 -0400",https://news.yahoo.com/1-body-believed-missing-british-113746232.html,"Cambodian authorities found a body floating near the Thai border on Thursday that is believed to be a 21-year-old British woman who went missing last week from a beach party in a coastal area popular with backpackers, police said. Amelia Bambridge's disappearance prompted a search with divers, land-based teams and police drones after her purse was found on a beach with her mobile phone and watch inside. Cambodian maritime authorities located the body in waters near the Thai border, about 100 kilometres (62 miles) away from where she had disappeared last week, said Chuon Narin, police chief of the Preah Sihanouk province.",,"UPDATE 1-Body believed to be missing British woman, 21, found off Cambodia" -"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community","Thu, 31 Oct 2019 07:01:10 -0400",https://news.yahoo.com/photos-show-paradise-california-one-110110569.html,"The cleanup in Paradise, California, shows no sign of ending. 18,000 buildings were razed by the Camp Fire, and residents must start from scratch.",http://l1.yimg.com/uu/api/res/1.2/PCMbfOGgiQrP9wsDr6LBRw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/09fe4ea1b28d747b58b045d99bbd1dee,"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community" -"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -"House Democrats face question: Impeach Pence, or make him president?","Thu, 31 Oct 2019 05:00:38 -0400",https://news.yahoo.com/house-democrats-face-question-impeach-pence-or-make-him-president-090012685.html,"If the House approves impeachment, and if the Senate votes to remove Trump, Pence would become president. Would he make a better president?",http://l1.yimg.com/uu/api/res/1.2/Z3VG5Hx16YaZq2pevUBETg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-images/2019-10/deb28d30-fb5b-11e9-bfef-ef163d511377,"House Democrats face question: Impeach Pence, or make him president?" -Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community","Thu, 31 Oct 2019 07:01:10 -0400",https://news.yahoo.com/photos-show-paradise-california-one-110110569.html,"The cleanup in Paradise, California, shows no sign of ending. 18,000 buildings were razed by the Camp Fire, and residents must start from scratch.",http://l1.yimg.com/uu/api/res/1.2/PCMbfOGgiQrP9wsDr6LBRw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/insider_articles_922/09fe4ea1b28d747b58b045d99bbd1dee,"Photos show Paradise, California, one year after the worst US wildfire in a century killed 85 people and destroyed a community" -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -North's Kim sends condolences to Moon over mother's death,"Thu, 31 Oct 2019 02:47:42 -0400",https://news.yahoo.com/norths-kim-sends-condolences-moon-053257821.html,"North Korean leader Kim Jong Un has sent a message of condolence to South Korean President Moon Jae-in over his mother's recent death, Moon's office said Thursday. It was later in the day handed over to Moon, who was staying in the southeastern city of Busan where his mother's mourning station was located, Moon's spokeswoman Ko Min-jung said. Ko said Kim expressed his ""deep commemorating (of Moon's mother) and condolence"" over her death.",http://l.yimg.com/uu/api/res/1.2/Nd_6NQf6metYLZMpwHPWhA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e21ad084c8dd5ba9a641cb427dadacfc,North's Kim sends condolences to Moon over mother's death -A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 10:48:40 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l1.yimg.com/uu/api/res/1.2/ImENIU.Ta7D8QwcH7wWueg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/c4a3982d1571388965d58973523bf48f,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,"The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump. The 232-196 vote fell mostly along party lines, with two moderate Democrats voting against the measure.",http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution -North's Kim sends condolences to Moon over mother's death,"Thu, 31 Oct 2019 02:47:42 -0400",https://news.yahoo.com/norths-kim-sends-condolences-moon-053257821.html,"North Korean leader Kim Jong Un has sent a message of condolence to South Korean President Moon Jae-in over his mother's recent death, Moon's office said Thursday. It was later in the day handed over to Moon, who was staying in the southeastern city of Busan where his mother's mourning station was located, Moon's spokeswoman Ko Min-jung said. Ko said Kim expressed his ""deep commemorating (of Moon's mother) and condolence"" over her death.",http://l.yimg.com/uu/api/res/1.2/Nd_6NQf6metYLZMpwHPWhA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e21ad084c8dd5ba9a641cb427dadacfc,North's Kim sends condolences to Moon over mother's death -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong -She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border,"Thu, 31 Oct 2019 09:25:55 -0400",https://news.yahoo.com/1-u-forces-seen-near-132555886.html,"U.S. armoured vehicles were seen on Thursday near the Syria-Turkey border in a part of northeastern Syria where they had not been observed since early October when Washington announced the withdrawal of American forces, according to a witness and Reuters video footage. A military source from the Kurdish-led Syrian Democratic Forces (SDF) described the movement as a patrol running between the towns of Rmeilan and Qahtaniyah, which is 20 km (12 miles) to the west. The witness saw the U.S. military vehicles outside the town of Qahtaniyah, roughly 6 km (4 miles) south of the border.",,UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 10:48:40 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l1.yimg.com/uu/api/res/1.2/ImENIU.Ta7D8QwcH7wWueg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/c4a3982d1571388965d58973523bf48f,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. -Striking Chicago teachers: We'll return if classes made up,"Thu, 31 Oct 2019 10:50:59 -0400",https://news.yahoo.com/striking-chicago-teachers-well-return-132350719.html,"The union representing 25,000 striking Chicago teachers voted to approve a tentative contract agreement with city officials but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Elected delegates for the Chicago Teachers Union voted Wednesday night to accept a tentative agreement with the nation's third-largest school district but say they won't come back without Mayor Lori Lightfoot's commitment. The union also encouraged members to fill the streets outside City Hall on Thursday, hoping to pressure Lightfoot into accepting its terms.",http://l2.yimg.com/uu/api/res/1.2/wHNKF.spntsmd2dxw8BNyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/80c07a1af9294f6ce1b88a5874ebb122,Striking Chicago teachers: We'll return if classes made up -Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,"The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump. The 232-196 vote fell mostly along party lines, with two moderate Democrats voting against the measure.",http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution -North's Kim sends condolences to Moon over mother's death,"Thu, 31 Oct 2019 02:47:42 -0400",https://news.yahoo.com/norths-kim-sends-condolences-moon-053257821.html,"North Korean leader Kim Jong Un has sent a message of condolence to South Korean President Moon Jae-in over his mother's recent death, Moon's office said Thursday. It was later in the day handed over to Moon, who was staying in the southeastern city of Busan where his mother's mourning station was located, Moon's spokeswoman Ko Min-jung said. Ko said Kim expressed his ""deep commemorating (of Moon's mother) and condolence"" over her death.",http://l.yimg.com/uu/api/res/1.2/Nd_6NQf6metYLZMpwHPWhA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e21ad084c8dd5ba9a641cb427dadacfc,North's Kim sends condolences to Moon over mother's death -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong -She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border,"Thu, 31 Oct 2019 09:25:55 -0400",https://news.yahoo.com/1-u-forces-seen-near-132555886.html,"U.S. armoured vehicles were seen on Thursday near the Syria-Turkey border in a part of northeastern Syria where they had not been observed since early October when Washington announced the withdrawal of American forces, according to a witness and Reuters video footage. A military source from the Kurdish-led Syrian Democratic Forces (SDF) described the movement as a patrol running between the towns of Rmeilan and Qahtaniyah, which is 20 km (12 miles) to the west. The witness saw the U.S. military vehicles outside the town of Qahtaniyah, roughly 6 km (4 miles) south of the border.",,UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 10:48:40 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l1.yimg.com/uu/api/res/1.2/ImENIU.Ta7D8QwcH7wWueg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/c4a3982d1571388965d58973523bf48f,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. -Striking Chicago teachers: We'll return if classes made up,"Thu, 31 Oct 2019 10:50:59 -0400",https://news.yahoo.com/striking-chicago-teachers-well-return-132350719.html,"The union representing 25,000 striking Chicago teachers voted to approve a tentative contract agreement with city officials but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Elected delegates for the Chicago Teachers Union voted Wednesday night to accept a tentative agreement with the nation's third-largest school district but say they won't come back without Mayor Lori Lightfoot's commitment. The union also encouraged members to fill the streets outside City Hall on Thursday, hoping to pressure Lightfoot into accepting its terms.",http://l2.yimg.com/uu/api/res/1.2/wHNKF.spntsmd2dxw8BNyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/80c07a1af9294f6ce1b88a5874ebb122,Striking Chicago teachers: We'll return if classes made up -Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,"The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump. The 232-196 vote fell mostly along party lines, with two moderate Democrats voting against the measure.",http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution -North's Kim sends condolences to Moon over mother's death,"Thu, 31 Oct 2019 02:47:42 -0400",https://news.yahoo.com/norths-kim-sends-condolences-moon-053257821.html,"North Korean leader Kim Jong Un has sent a message of condolence to South Korean President Moon Jae-in over his mother's recent death, Moon's office said Thursday. It was later in the day handed over to Moon, who was staying in the southeastern city of Busan where his mother's mourning station was located, Moon's spokeswoman Ko Min-jung said. Ko said Kim expressed his ""deep commemorating (of Moon's mother) and condolence"" over her death.",http://l.yimg.com/uu/api/res/1.2/Nd_6NQf6metYLZMpwHPWhA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e21ad084c8dd5ba9a641cb427dadacfc,North's Kim sends condolences to Moon over mother's death -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong -She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border,"Thu, 31 Oct 2019 09:25:55 -0400",https://news.yahoo.com/1-u-forces-seen-near-132555886.html,"U.S. armoured vehicles were seen on Thursday near the Syria-Turkey border in a part of northeastern Syria where they had not been observed since early October when Washington announced the withdrawal of American forces, according to a witness and Reuters video footage. A military source from the Kurdish-led Syrian Democratic Forces (SDF) described the movement as a patrol running between the towns of Rmeilan and Qahtaniyah, which is 20 km (12 miles) to the west. The witness saw the U.S. military vehicles outside the town of Qahtaniyah, roughly 6 km (4 miles) south of the border.",,UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 10:48:40 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l1.yimg.com/uu/api/res/1.2/ImENIU.Ta7D8QwcH7wWueg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/c4a3982d1571388965d58973523bf48f,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. -Striking Chicago teachers: We'll return if classes made up,"Thu, 31 Oct 2019 10:50:59 -0400",https://news.yahoo.com/striking-chicago-teachers-well-return-132350719.html,"The union representing 25,000 striking Chicago teachers voted to approve a tentative contract agreement with city officials but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Elected delegates for the Chicago Teachers Union voted Wednesday night to accept a tentative agreement with the nation's third-largest school district but say they won't come back without Mayor Lori Lightfoot's commitment. The union also encouraged members to fill the streets outside City Hall on Thursday, hoping to pressure Lightfoot into accepting its terms.",http://l2.yimg.com/uu/api/res/1.2/wHNKF.spntsmd2dxw8BNyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/80c07a1af9294f6ce1b88a5874ebb122,Striking Chicago teachers: We'll return if classes made up -Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,"The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump. The 232-196 vote fell mostly along party lines, with two moderate Democrats voting against the measure.",http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution -North's Kim sends condolences to Moon over mother's death,"Thu, 31 Oct 2019 02:47:42 -0400",https://news.yahoo.com/norths-kim-sends-condolences-moon-053257821.html,"North Korean leader Kim Jong Un has sent a message of condolence to South Korean President Moon Jae-in over his mother's recent death, Moon's office said Thursday. It was later in the day handed over to Moon, who was staying in the southeastern city of Busan where his mother's mourning station was located, Moon's spokeswoman Ko Min-jung said. Ko said Kim expressed his ""deep commemorating (of Moon's mother) and condolence"" over her death.",http://l.yimg.com/uu/api/res/1.2/Nd_6NQf6metYLZMpwHPWhA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e21ad084c8dd5ba9a641cb427dadacfc,North's Kim sends condolences to Moon over mother's death -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong -She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border,"Thu, 31 Oct 2019 09:25:55 -0400",https://news.yahoo.com/1-u-forces-seen-near-132555886.html,"U.S. armoured vehicles were seen on Thursday near the Syria-Turkey border in a part of northeastern Syria where they had not been observed since early October when Washington announced the withdrawal of American forces, according to a witness and Reuters video footage. A military source from the Kurdish-led Syrian Democratic Forces (SDF) described the movement as a patrol running between the towns of Rmeilan and Qahtaniyah, which is 20 km (12 miles) to the west. The witness saw the U.S. military vehicles outside the town of Qahtaniyah, roughly 6 km (4 miles) south of the border.",,UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 10:48:40 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l1.yimg.com/uu/api/res/1.2/ImENIU.Ta7D8QwcH7wWueg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/c4a3982d1571388965d58973523bf48f,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. -Striking Chicago teachers: We'll return if classes made up,"Thu, 31 Oct 2019 10:50:59 -0400",https://news.yahoo.com/striking-chicago-teachers-well-return-132350719.html,"The union representing 25,000 striking Chicago teachers voted to approve a tentative contract agreement with city officials but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Elected delegates for the Chicago Teachers Union voted Wednesday night to accept a tentative agreement with the nation's third-largest school district but say they won't come back without Mayor Lori Lightfoot's commitment. The union also encouraged members to fill the streets outside City Hall on Thursday, hoping to pressure Lightfoot into accepting its terms.",http://l2.yimg.com/uu/api/res/1.2/wHNKF.spntsmd2dxw8BNyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/80c07a1af9294f6ce1b88a5874ebb122,Striking Chicago teachers: We'll return if classes made up -Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,"The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump. The 232-196 vote fell mostly along party lines, with two moderate Democrats voting against the measure.",http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution -North's Kim sends condolences to Moon over mother's death,"Thu, 31 Oct 2019 02:47:42 -0400",https://news.yahoo.com/norths-kim-sends-condolences-moon-053257821.html,"North Korean leader Kim Jong Un has sent a message of condolence to South Korean President Moon Jae-in over his mother's recent death, Moon's office said Thursday. It was later in the day handed over to Moon, who was staying in the southeastern city of Busan where his mother's mourning station was located, Moon's spokeswoman Ko Min-jung said. Ko said Kim expressed his ""deep commemorating (of Moon's mother) and condolence"" over her death.",http://l.yimg.com/uu/api/res/1.2/Nd_6NQf6metYLZMpwHPWhA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e21ad084c8dd5ba9a641cb427dadacfc,North's Kim sends condolences to Moon over mother's death -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong -She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border,"Thu, 31 Oct 2019 09:25:55 -0400",https://news.yahoo.com/1-u-forces-seen-near-132555886.html,"U.S. armoured vehicles were seen on Thursday near the Syria-Turkey border in a part of northeastern Syria where they had not been observed since early October when Washington announced the withdrawal of American forces, according to a witness and Reuters video footage. A military source from the Kurdish-led Syrian Democratic Forces (SDF) described the movement as a patrol running between the towns of Rmeilan and Qahtaniyah, which is 20 km (12 miles) to the west. The witness saw the U.S. military vehicles outside the town of Qahtaniyah, roughly 6 km (4 miles) south of the border.",,UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 10:48:40 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l1.yimg.com/uu/api/res/1.2/ImENIU.Ta7D8QwcH7wWueg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/c4a3982d1571388965d58973523bf48f,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. -Striking Chicago teachers: We'll return if classes made up,"Thu, 31 Oct 2019 10:50:59 -0400",https://news.yahoo.com/striking-chicago-teachers-well-return-132350719.html,"The union representing 25,000 striking Chicago teachers voted to approve a tentative contract agreement with city officials but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Elected delegates for the Chicago Teachers Union voted Wednesday night to accept a tentative agreement with the nation's third-largest school district but say they won't come back without Mayor Lori Lightfoot's commitment. The union also encouraged members to fill the streets outside City Hall on Thursday, hoping to pressure Lightfoot into accepting its terms.",http://l2.yimg.com/uu/api/res/1.2/wHNKF.spntsmd2dxw8BNyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/80c07a1af9294f6ce1b88a5874ebb122,Striking Chicago teachers: We'll return if classes made up -Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,"The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump. The 232-196 vote fell mostly along party lines, with two moderate Democrats voting against the measure.",http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution -North's Kim sends condolences to Moon over mother's death,"Thu, 31 Oct 2019 02:47:42 -0400",https://news.yahoo.com/norths-kim-sends-condolences-moon-053257821.html,"North Korean leader Kim Jong Un has sent a message of condolence to South Korean President Moon Jae-in over his mother's recent death, Moon's office said Thursday. It was later in the day handed over to Moon, who was staying in the southeastern city of Busan where his mother's mourning station was located, Moon's spokeswoman Ko Min-jung said. Ko said Kim expressed his ""deep commemorating (of Moon's mother) and condolence"" over her death.",http://l.yimg.com/uu/api/res/1.2/Nd_6NQf6metYLZMpwHPWhA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e21ad084c8dd5ba9a641cb427dadacfc,North's Kim sends condolences to Moon over mother's death -Alexandria Ocasio-Cortez says the revenge porn campaign targeting Rep. Katie Hill is a 'major crime' that wouldn't happen to a male member of Congress,"Thu, 31 Oct 2019 10:36:42 -0400",https://news.yahoo.com/alexandria-ocasio-cortez-says-revenge-143642245.html,"Rep. Alexandria Ocasio-Cortez decried the publication of nude photos of Rep. Katie Hill, who announced her resignation from Congress this week.",http://l2.yimg.com/uu/api/res/1.2/Fr2UZHbKq8xmmxAY3AwuuQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/8e7523e8a3b3c297f63efe28eba0cc74,Alexandria Ocasio-Cortez says the revenge porn campaign targeting Rep. Katie Hill is a 'major crime' that wouldn't happen to a male member of Congress -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -"House Democrats face question: Impeach Pence, or make him president?","Thu, 31 Oct 2019 05:00:38 -0400",https://news.yahoo.com/house-democrats-face-question-impeach-pence-or-make-him-president-090012685.html,"If the House approves impeachment, and if the Senate votes to remove Trump, Pence would become president. Would he make a better president?",http://l1.yimg.com/uu/api/res/1.2/Z3VG5Hx16YaZq2pevUBETg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-images/2019-10/deb28d30-fb5b-11e9-bfef-ef163d511377,"House Democrats face question: Impeach Pence, or make him president?" -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal -Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong -Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky -She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border,"Thu, 31 Oct 2019 09:25:55 -0400",https://news.yahoo.com/1-u-forces-seen-near-132555886.html,"U.S. armoured vehicles were seen on Thursday near the Syria-Turkey border in a part of northeastern Syria where they had not been observed since early October when Washington announced the withdrawal of American forces, according to a witness and Reuters video footage. A military source from the Kurdish-led Syrian Democratic Forces (SDF) described the movement as a patrol running between the towns of Rmeilan and Qahtaniyah, which is 20 km (12 miles) to the west. The witness saw the U.S. military vehicles outside the town of Qahtaniyah, roughly 6 km (4 miles) south of the border.",,UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border -Striking Chicago teachers: We'll return if classes made up,"Thu, 31 Oct 2019 10:50:59 -0400",https://news.yahoo.com/striking-chicago-teachers-well-return-132350719.html,"The union representing 25,000 striking Chicago teachers voted to approve a tentative contract agreement with city officials but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Elected delegates for the Chicago Teachers Union voted Wednesday night to accept a tentative agreement with the nation's third-largest school district but say they won't come back without Mayor Lori Lightfoot's commitment. The union also encouraged members to fill the streets outside City Hall on Thursday, hoping to pressure Lightfoot into accepting its terms.",http://l2.yimg.com/uu/api/res/1.2/wHNKF.spntsmd2dxw8BNyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/80c07a1af9294f6ce1b88a5874ebb122,Striking Chicago teachers: We'll return if classes made up -A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. -Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,"The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump. The 232-196 vote fell mostly along party lines, with two moderate Democrats voting against the measure.",http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution -North's Kim sends condolences to Moon over mother's death,"Thu, 31 Oct 2019 02:47:42 -0400",https://news.yahoo.com/norths-kim-sends-condolences-moon-053257821.html,"North Korean leader Kim Jong Un has sent a message of condolence to South Korean President Moon Jae-in over his mother's recent death, Moon's office said Thursday. It was later in the day handed over to Moon, who was staying in the southeastern city of Busan where his mother's mourning station was located, Moon's spokeswoman Ko Min-jung said. Ko said Kim expressed his ""deep commemorating (of Moon's mother) and condolence"" over her death.",http://l.yimg.com/uu/api/res/1.2/Nd_6NQf6metYLZMpwHPWhA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e21ad084c8dd5ba9a641cb427dadacfc,North's Kim sends condolences to Moon over mother's death -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong,"Thu, 31 Oct 2019 07:05:57 -0400",https://news.yahoo.com/reuters-graphic-examining-weapons-tactics-110557306.html,"As the showdown between police and protesters in Hong Kong has intensified, officers have used increasing force, deploying an arsenal of crowd-control weapons, including tear gas, pepper spray, rubber bullets, sponge grenades and bean bag rounds. Protesters have also stepped up their actions, hurling petrol bombs, vandalizing mainland Chinese banks and businesses believed to be pro-Beijing, throwing bricks at police stations and battling officers in the streets, sometimes with metal bars. Reuters scrutinized hundreds of images of the protests, as well as dozens of police reports and video footage, and combined this research with reporting on the ground to document the weapons used by the police and protesters, and how the violence has increased from day to day.",http://l2.yimg.com/uu/api/res/1.2/MsMyTzr8Yfqznh55nb3s0A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/2843751ef05664b974ff5d0d076da81a,Graphic: Examining the weapons and tactics used by police and protesters in Hong Kong -She climbed Everest nine times and set a world record – so why doesn’t she have sponsors?,"Thu, 31 Oct 2019 02:00:21 -0400",https://news.yahoo.com/she-climbed-everest-nine-times-060021913.html,"Lhakpa Sherpa works for minimum wages and currently washes dishes, as she trains for her 10th Everest summit with no endorsement deals, no nutritionist and no trainerLhakpa Sherpa in Talcott Mountain state park in Simsbury, Connecticut, where she hikes to prepare for her 10th summit of Everest in the spring of 2020. Photograph: Kayana Szymczak/The GuardianI reach Lhakpa Sherpa’s West Hartford apartment at noon on an overcast Sunday in Connecticut. She bounds out of the front door, embraces me, and welcomes me inside. The small apartment is dimly lit. The living room has a few chairs, and a wall of sports medals from her two daughters’ 5Ks and gymnastic meets.Lhakpa was the first Nepalese woman to summit Everest and descend alive, which she accomplished in the spring of 2000. With nine summits, she holds the world record for women. She plans to summit the world’s highest mountain again in the spring of 2020, but as an unsponsored athlete and single mother of three, it’s difficult to afford training and travel. She currently works at Whole Foods washing dishes, making minimum wage. Unable to afford or drive a car, she walks to work and occasionally takes an Uber to training destinations.Sitting in her living room, I’m struck by her achievements – but also her lack of resources. How is it that a woman with such demonstrated accomplishment and skill is without sponsorship, and must risk nearly everything to continue to climb the Himalayan mountains she loves?Lhakpa makes tea while I chat with her 13-year-old daughter, Shiny, who – more fluent in technology and the English language – acts as her mother’s manager and occasional translator.“What’s it like for you,” I ask, “when your mother is away on an expedition?”> I want to show the world I can do it. I want to show women who look like me that they can do it, too.She turns her phone over in her hands. “It’s hard,” she says. “I’m proud of her, but I worry.” Each climbing season, six to 10 climbers die on the mountain.Everest expeditions last upwards of two months, usually in May, and there are only occasional opportunities to communicate via satellite phone and Skype. Avalanches, like the one that hit base camp in 2015, have kept them out of contact for weeks at a time.“I’m very good with the mountain,” Lhakpa says, bringing me a hot cup of tea, offering her warm smile. She has a long, lush ponytail and bright eyes. “I go, but I know I will come home. I have to come home.” She looks reassuringly at Shiny.Lhakpa, 45, grew up in Balakharka, a village in the Makalu region of the Nepalese Himalayas, where her father owned tea houses, and her mother still lives. Lhakpa tells me she isn’t sure of her exact age, as there were no birth certificates, and all of her mother’s 11 children were born at home. As a child, Lhakpa had no electricity, and young girls did not attend school.Lhapka Sherpa prepares tea at her home in West Hartford. Photograph: Kayana Szymczak/The Guardian“You see my family on television,” she says. “Sherpas. Climbing Everest.” Her brother Mingma Gelu Sherpa directs an expedition outfitter in Kathmandu. Her oldest brother has summited “10 or 11 times,” she says. Another brother has summited eight times, her youngest brother five, and a sister has summited once.“If there weren’t any Sherpas,” she tells me, “nobody could climb Everest”.She worries when people say that anyone can climb Everest if they have the money – she’s heard people say that it’s just a matter of putting one foot in front of the other, and that Sherpas will do all the work. An average climb with a western outfitter costs upwards of $50,000, while a Nepalese outfitter costs upwards of $30,000.She has seen firsthand all the ways people can die on Everest: avalanches, falls, the thin air of the dead zone. Climbers must occasionally pass bodies, of which there are over a 100 on the mountain. (Bodies are dangerous to take down and doing so requires the effort of at least five sherpas.) Sherpas pass through the Khumbu icefall roughly 40 times just to make sure tourists have the supplies and ropes they need. If you spend enough time in the icefall, she says, you are guaranteed to die.“Why do we do this job?” she asks. “Because the alternative is to make money growing potatoes.”For Lhakpa, to say climbing Everest is easy is an insult. The fact that it is said at all reveals the problematic ways privilege has woven itself into adventure culture.Lhakpa Sherpa and her daughter Shiny, who says of her mother: ‘I’m proud of her, but I worry.’ Photograph: Kayana Szymczak/The Guardian‱‱‱Serena Williams won the Australian Open while 23 weeks pregnant; Lhakpa Sherpa summited Everest eight months after the birth of her first child, and again while two months pregnant with Shiny.But unlike Williams, Lhakpa has no endorsement deals, no nutritionist, no trainer. She can’t afford to train full time, or much at all, because she works constantly in order to pay her rent.When she leaves her hourly jobs for climbing expeditions, she risks homelessness. When she returns, she picks up as much work as she can, working as a cashier at 7-Eleven and cleaning houses. “I never tell them about Everest,” she says, recounting a time when an employer realized that the woman mopping his floor was a world-renowned athlete.When I approached her for an interview, I asked her if we could hike together. As we prepare to leave for the walk, I notice that the grommet on Lhakpa’s hiking boots is broken, and she struggles to lace them. I’ve seen athletes with lesser accomplishments – but a higher number of Instagram followers – receive impressive amounts of free gear. Lhakpa mentions that her worn, orange Osprey backpack has summited Everest at least twice.Lhakpa Sherpa in 2006, when she broke her own record for the most Everest summits by a woman. Photograph: Prakash Mathema/AFP/GettyIn an era where many organizations profess a desire to diversify outdoors culture, it is difficult to process that such an accomplished athlete – with an authentic connection to the place she climbs - remains unsupported. I presume the root cause is that Lhakpa is not traditionally marketable, and brands want maximum visibility. She doesn’t have a curated Instagram presence. She’s a middle-aged woman of color, an immigrant single mother who speaks in broken English. She doesn’t exude “stoke”. She’s known to climb slowly on the lower slopes, at the advice of the Icefall Doctors, the Sherpas who manage the ropes and ladders over deep crevasses.In person, Lhakpa’s words are laced with intelligence and humor, and her passion for climbing is evident. “This is my gift,” she says of climbing. Though she would have liked to become a doctor or pilot in another life, she knows her talent is getting herself and others on top of some of the world’s largest peaks. Though Black Diamond sponsored an earlier climb, Lhakpa is currently without support.Her dream is to summit Everest in May 2020, followed by K2, a mountain whose summit once eluded her because of inclement weather. She knows this plan is ambitious, if not crazy. “All extreme athletes are crazy,” she says. “But I want to show the world I can do it. I want to show women who look like me that they can do it, too.”‱‱‱We take an easy hike on Talcott Mountain, a place she often goes with friends for a quick walk. She occasionally stops to place her hand on a rock face. We talk about the sounds of Everest, particularly the groaning ice. She shows me how she sleeps in a tent on the coldest nights, with her hands clasped underneath her body in the sleeping bag.Lhakpa began climbing in the same way many of her siblings and cousins did, helping an uncle move equipment for tourists on Makalu at 15, serving as a kitchen hand and porter. She says she was a tomboy, and that her mother worried she would never get married. She met her first husband on the mountain, and they moved to the United States in 2002. They often climbed together, until the relationship turned violent.> Climbing is my way out of washing dishes. It is the way to make a better life for the girlsIn 2004, her husband notoriously struck her on Everest, continuing a pattern of abuse that began upon the birth of their first child and continued on expeditions and at home. A difficult few years followed, with the family’s fortunes falling; by 2012 they were on food stamps. After further attacks, hospitalizations, and a stay at a shelter, the couple divorced, and Lhakpa was awarded full custody of the girls.I first learned about Lhakpa years ago, through the story of the 2004 climb, and have thought several times how damaging to her climbing career it must have been. She was forced to endure physical and emotional hardship in front of her professional community, and did not have the ability to control the public narrative. She left her marriage with no financial resources and two dependents. (Her oldest child, Nima, a son from another relationship, is now an adult.) She undoubtedly lost good climbing years to adversity, and yet her commitment to climbing persists.It has always seemed unfair to me to ask female athletes and artists about their marriage and children. Were the “great” male explorers of the past – or even the present – asked as often about how their children are cared for during an adventure, or if it’s OK to take certain risks – but to leave Lhakpa’s marriage and children out of the picture would perhaps be to hide one of her greatest challenges, and most profound motivations.“Climbing is my way out of washing dishes,” Lhakpa tells me. “It is the way to make a better life for the girls.”‱‱‱Lhakpa Sherpa: ‘If you don’t trust, you die.’ Photograph: Kayana Szymczak/The GuardianAs we walk the well-worn paths of Talcott Mountain back to my car, Shiny becomes concerned about mosquitoes. “I don’t want you to get EEE when you’re out hiking,” she tells Lhakpa. I think about how difficult it must be to process the risks her mother takes, all while knowing her lifetime record of resilient comebacks. They look out for each other. Even when Lhakpa is posing for photographs at an outlook, she has one eye on her youngest daughter, and cautions her against stepping too close to the ridge line.Lhakpa and I talk about the difference between climbing Everest as a Sherpa, and as a climber. One you do for someone else, and the other you do for yourself. She expresses a moving amount of devotion to the clients Sherpas guide to the summit.“You make a promise,” she says, “and you keep it.” Lhakpa talks a lot about trust – trusting herself, trusting the climbing partner she’s tethered to, trusting the mountain. “If you don’t trust,” she says, “you die.”“I’m a small mouse climbing a big mountain,” Lhakpa tells me. Her relationship with the mountain is reverent, as if she’s in conversation with it. “Share with the mountain,” she says. “If you’re scared, your fear scares the mountain.” She even delayed 2019’s planned climb because of her beloved father’s death. “I didn’t want to carry the sadness,” she says. “It would not be safe.”When we get back to the apartment, Lhakpa shows me her boots and insulated Red Fox suit. “I look like a bear,” she says, slipping into the gear, which is reminiscent of a wearable sleeping bag. During climbing season, the temperatures on Everest’s summit range from -4F to -31F.Lhakpa displays the 50-year-old oxygen mask she wears because she says it’s more reliable than the new ones. Photograph: Kayana Szymczak/The GuardianShe also wears a 50-year-old oxygen mask, because she believes it’s more reliable than the new ones. “I need smart students,” she says, asking me if I can find someone to design a better mask based on the old models. I picture a group of bright minds at MIT listening to this woman – this expert – who has grown up on the mountain and knows what climbers need as they step into the thin air of Everest.These are the other things Lhakpa wants: sponsorship for her historic 10th climb. Time to train and build her guiding business, Cloudscape Climbing. A life spent on the mountains and not cleaning dishes and taking out trash. A book and documentary about her life. Money to help send her bright daughters to college.“These are not quick dreams,” she adds. “They are long dreams.”Lhakpa has always worked hard to survive, and to subvert expectations. In the past, people have discounted the summits of Sherpas, saying that their familiarity with the altitude and location somehow diminishes the accomplishment. Lhakpa, who dared to step outside of a service culture and climb for herself, wants a 10th summit, and is serious about advancing her record.When I ask Shiny what she admires most about her mother, she pauses. “There is so much,” she says, her voice shaking. “But I would have to say her confidence.”Lhakpa is self-conscious of her hands, dried from washing dishes, and the jobs she must work in order to support her family. She is also driven to inspire others, particularly women and single parents. “I would like to hide in the mountain,” Lhakpa confesses on our descent, aware of her humble circumstances. “But I have to show my face here.”",http://l.yimg.com/uu/api/res/1.2/aTsrZU.6T7nrIx0cghr9Rw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-GB/the_guardian_765/924e3a16db3b93dd3a85bbed5207015e,She climbed Everest nine times and set a world record – so why doesn’t she have sponsors? -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border,"Thu, 31 Oct 2019 09:25:55 -0400",https://news.yahoo.com/1-u-forces-seen-near-132555886.html,"U.S. armoured vehicles were seen on Thursday near the Syria-Turkey border in a part of northeastern Syria where they had not been observed since early October when Washington announced the withdrawal of American forces, according to a witness and Reuters video footage. A military source from the Kurdish-led Syrian Democratic Forces (SDF) described the movement as a patrol running between the towns of Rmeilan and Qahtaniyah, which is 20 km (12 miles) to the west. The witness saw the U.S. military vehicles outside the town of Qahtaniyah, roughly 6 km (4 miles) south of the border.",,UPDATE 2-U.S. forces seen patrolling in Syria near Turkish border -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 10:48:40 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l1.yimg.com/uu/api/res/1.2/ImENIU.Ta7D8QwcH7wWueg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/c4a3982d1571388965d58973523bf48f,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. -Striking Chicago teachers: We'll return if classes made up,"Thu, 31 Oct 2019 10:50:59 -0400",https://news.yahoo.com/striking-chicago-teachers-well-return-132350719.html,"The union representing 25,000 striking Chicago teachers voted to approve a tentative contract agreement with city officials but refused to end a strike that has canceled two weeks of classes unless the city's mayor adds school days to cover that lost time. Elected delegates for the Chicago Teachers Union voted Wednesday night to accept a tentative agreement with the nation's third-largest school district but say they won't come back without Mayor Lori Lightfoot's commitment. The union also encouraged members to fill the streets outside City Hall on Thursday, hoping to pressure Lightfoot into accepting its terms.",http://l2.yimg.com/uu/api/res/1.2/wHNKF.spntsmd2dxw8BNyA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/80c07a1af9294f6ce1b88a5874ebb122,Striking Chicago teachers: We'll return if classes made up -Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -History shows Democrats are being fair to Republicans on Trump impeachment: Ex-Starr aide,"Thu, 31 Oct 2019 11:57:55 -0400",https://news.yahoo.com/history-shows-democrats-being-fair-090015707.html,This partisan vote will be a sad commentary on the degradation of a once noble party. Republicans need to stop carping about process and face reality.,http://l1.yimg.com/uu/api/res/1.2/IN8fAp5j4uZ6EpyCar3w2A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/6fa38e32ec540828f431ac5481d3dfdf,History shows Democrats are being fair to Republicans on Trump impeachment: Ex-Starr aide -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -Disabled California seniors in complex left behind in outage,"Thu, 31 Oct 2019 11:46:55 -0400",https://news.yahoo.com/disabled-infirm-senior-complex-were-053217257.html,"One woman in her 80s tripped over another resident who had fallen on the landing in a steep stairwell. At least 20 seniors with wheelchairs and walkers were essentially trapped, in the dark, in a low-income apartment complex in Northern California during a two-day power shut-off aimed at warding off wildfires. Residents of the Villas at Hamilton in Novato, north of San Francisco, say they were without guidance from their property management company or the utility behind the blackout as they faced pitch-black stairwells and hallways and elevators that shut down.",http://l2.yimg.com/uu/api/res/1.2/.xKHuIObpdYlT3_yB5QM3A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/7f8f42e64999a72c508bee8ac1cce9a2,Disabled California seniors in complex left behind in outage -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. -The Latest: Northern California wildfire now 60% contained,"Thu, 31 Oct 2019 11:43:01 -0400",https://news.yahoo.com/latest-fire-erupts-san-bernardino-112830955.html,"Officials say a wildfire burning in Northern California's wine country that forced the evacuation of more than 180,000 people is now 60% contained and has not increased in size since Wednesday. California Department of Forestry and Fire Protection officials said Thursday that firefighting crews working through the night increased their control of the fire from 45% containment. The fire started last week near the town of Geyserville in Sonoma County north of San Francisco and has scorched about 120 square miles (311 square kilometers).",http://l1.yimg.com/uu/api/res/1.2/2sptUHoUhwVZ3QxYtYAMfg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e59db5b3d01481e820049f6a2a08ae46,The Latest: Northern California wildfire now 60% contained -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -History shows Democrats are being fair to Republicans on Trump impeachment: Ex-Starr aide,"Thu, 31 Oct 2019 11:57:55 -0400",https://news.yahoo.com/history-shows-democrats-being-fair-090015707.html,This partisan vote will be a sad commentary on the degradation of a once noble party. Republicans need to stop carping about process and face reality.,http://l1.yimg.com/uu/api/res/1.2/IN8fAp5j4uZ6EpyCar3w2A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/6fa38e32ec540828f431ac5481d3dfdf,History shows Democrats are being fair to Republicans on Trump impeachment: Ex-Starr aide -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -Disabled California seniors in complex left behind in outage,"Thu, 31 Oct 2019 11:46:55 -0400",https://news.yahoo.com/disabled-infirm-senior-complex-were-053217257.html,"One woman in her 80s tripped over another resident who had fallen on the landing in a steep stairwell. At least 20 seniors with wheelchairs and walkers were essentially trapped, in the dark, in a low-income apartment complex in Northern California during a two-day power shut-off aimed at warding off wildfires. Residents of the Villas at Hamilton in Novato, north of San Francisco, say they were without guidance from their property management company or the utility behind the blackout as they faced pitch-black stairwells and hallways and elevators that shut down.",http://l2.yimg.com/uu/api/res/1.2/.xKHuIObpdYlT3_yB5QM3A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/7f8f42e64999a72c508bee8ac1cce9a2,Disabled California seniors in complex left behind in outage -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. -The Latest: Northern California wildfire now 60% contained,"Thu, 31 Oct 2019 11:43:01 -0400",https://news.yahoo.com/latest-fire-erupts-san-bernardino-112830955.html,"Officials say a wildfire burning in Northern California's wine country that forced the evacuation of more than 180,000 people is now 60% contained and has not increased in size since Wednesday. California Department of Forestry and Fire Protection officials said Thursday that firefighting crews working through the night increased their control of the fire from 45% containment. The fire started last week near the town of Geyserville in Sonoma County north of San Francisco and has scorched about 120 square miles (311 square kilometers).",http://l1.yimg.com/uu/api/res/1.2/2sptUHoUhwVZ3QxYtYAMfg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e59db5b3d01481e820049f6a2a08ae46,The Latest: Northern California wildfire now 60% contained -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -The Latest: Northern California wildfire now 60% contained,"Thu, 31 Oct 2019 11:43:01 -0400",https://news.yahoo.com/latest-fire-erupts-san-bernardino-112830955.html,"Officials say a wildfire burning in Northern California's wine country that forced the evacuation of more than 180,000 people is now 60% contained and has not increased in size since Wednesday. California Department of Forestry and Fire Protection officials said Thursday that firefighting crews working through the night increased their control of the fire from 45% containment. The fire started last week near the town of Geyserville in Sonoma County north of San Francisco and has scorched about 120 square miles (311 square kilometers).",http://l1.yimg.com/uu/api/res/1.2/2sptUHoUhwVZ3QxYtYAMfg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e59db5b3d01481e820049f6a2a08ae46,The Latest: Northern California wildfire now 60% contained -"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" -"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" -The Latest: Video shows US forces in Syria border area,"Thu, 31 Oct 2019 12:15:44 -0400",https://news.yahoo.com/latest-turkey-says-captured-18-135616944.html,"New video shows U.S. armored vehicles patrolling near oil facilities in an area of northern Syria that saw recent heavy fighting between Turkey and Syrian Kurdish forces, and from which American troops had withdrawn. The video, aired by Kurdistan 24, an Iraqi Kurdish network, showed what appeared to be U.S. special operations forces visiting oil facilities east of the city of Qamishli on Thursday. A witness says aircraft overhead provided cover as the patrol visited six small oil facilities.",,The Latest: Video shows US forces in Syria border area -History shows Democrats are being fair to Republicans on Trump impeachment: Ex-Starr aide,"Thu, 31 Oct 2019 11:57:55 -0400",https://news.yahoo.com/history-shows-democrats-being-fair-090015707.html,This partisan vote will be a sad commentary on the degradation of a once noble party. Republicans need to stop carping about process and face reality.,http://l1.yimg.com/uu/api/res/1.2/IN8fAp5j4uZ6EpyCar3w2A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/6fa38e32ec540828f431ac5481d3dfdf,History shows Democrats are being fair to Republicans on Trump impeachment: Ex-Starr aide -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -Disabled California seniors in complex left behind in outage,"Thu, 31 Oct 2019 11:46:55 -0400",https://news.yahoo.com/disabled-infirm-senior-complex-were-053217257.html,"One woman in her 80s tripped over another resident who had fallen on the landing in a steep stairwell. At least 20 seniors with wheelchairs and walkers were essentially trapped, in the dark, in a low-income apartment complex in Northern California during a two-day power shut-off aimed at warding off wildfires. Residents of the Villas at Hamilton in Novato, north of San Francisco, say they were without guidance from their property management company or the utility behind the blackout as they faced pitch-black stairwells and hallways and elevators that shut down.",http://l2.yimg.com/uu/api/res/1.2/.xKHuIObpdYlT3_yB5QM3A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/7f8f42e64999a72c508bee8ac1cce9a2,Disabled California seniors in complex left behind in outage -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. -The Latest: Northern California wildfire now 60% contained,"Thu, 31 Oct 2019 11:43:01 -0400",https://news.yahoo.com/latest-fire-erupts-san-bernardino-112830955.html,"Officials say a wildfire burning in Northern California's wine country that forced the evacuation of more than 180,000 people is now 60% contained and has not increased in size since Wednesday. California Department of Forestry and Fire Protection officials said Thursday that firefighting crews working through the night increased their control of the fire from 45% containment. The fire started last week near the town of Geyserville in Sonoma County north of San Francisco and has scorched about 120 square miles (311 square kilometers).",http://l1.yimg.com/uu/api/res/1.2/2sptUHoUhwVZ3QxYtYAMfg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e59db5b3d01481e820049f6a2a08ae46,The Latest: Northern California wildfire now 60% contained -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -History shows Democrats are being fair to Republicans on Trump impeachment: Ex-Starr aide,"Thu, 31 Oct 2019 11:57:55 -0400",https://news.yahoo.com/history-shows-democrats-being-fair-090015707.html,This partisan vote will be a sad commentary on the degradation of a once noble party. Republicans need to stop carping about process and face reality.,http://l1.yimg.com/uu/api/res/1.2/IN8fAp5j4uZ6EpyCar3w2A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_opinion_532/6fa38e32ec540828f431ac5481d3dfdf,History shows Democrats are being fair to Republicans on Trump impeachment: Ex-Starr aide -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:31:06 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal,"Thu, 31 Oct 2019 09:33:49 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Is Among Lawyers Reaping $15 Million in 1MDB Deal -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -Disabled California seniors in complex left behind in outage,"Thu, 31 Oct 2019 11:46:55 -0400",https://news.yahoo.com/disabled-infirm-senior-complex-were-053217257.html,"One woman in her 80s tripped over another resident who had fallen on the landing in a steep stairwell. At least 20 seniors with wheelchairs and walkers were essentially trapped, in the dark, in a low-income apartment complex in Northern California during a two-day power shut-off aimed at warding off wildfires. Residents of the Villas at Hamilton in Novato, north of San Francisco, say they were without guidance from their property management company or the utility behind the blackout as they faced pitch-black stairwells and hallways and elevators that shut down.",http://l2.yimg.com/uu/api/res/1.2/.xKHuIObpdYlT3_yB5QM3A--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/7f8f42e64999a72c508bee8ac1cce9a2,Disabled California seniors in complex left behind in outage -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. -The Latest: Northern California wildfire now 60% contained,"Thu, 31 Oct 2019 11:43:01 -0400",https://news.yahoo.com/latest-fire-erupts-san-bernardino-112830955.html,"Officials say a wildfire burning in Northern California's wine country that forced the evacuation of more than 180,000 people is now 60% contained and has not increased in size since Wednesday. California Department of Forestry and Fire Protection officials said Thursday that firefighting crews working through the night increased their control of the fire from 45% containment. The fire started last week near the town of Geyserville in Sonoma County north of San Francisco and has scorched about 120 square miles (311 square kilometers).",http://l1.yimg.com/uu/api/res/1.2/2sptUHoUhwVZ3QxYtYAMfg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e59db5b3d01481e820049f6a2a08ae46,The Latest: Northern California wildfire now 60% contained -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -'That's not bringing about change': Obama advises 'woke' young people not to be so judgmental,"Thu, 31 Oct 2019 08:11:34 -0400",https://news.yahoo.com/thats-not-bringing-change-obama-161906797.html,"""That's not bringing about change. If all you're doing is casting stones, you're probably not going to get that far,"" the former president said.",http://l2.yimg.com/uu/api/res/1.2/AEN8wJEL8250wF1A.y67.g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/20fc21a139a8b853711f5cc8117a86b2,'That's not bringing about change': Obama advises 'woke' young people not to be so judgmental -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" -"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:44:29 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -The Latest: Ex-Trump adviser arrives for impeachment session,"Thu, 31 Oct 2019 08:29:07 -0400",https://news.yahoo.com/latest-ex-trump-adviser-arrives-114430236.html,A former top national security adviser to President Donald Trump has arrived on Capitol Hill to testify in the House impeachment inquiry. Tim Morrison handled Russian and European affairs at the White House's National Security Council before resigning his position a day before Thursday's hearing.,http://l1.yimg.com/uu/api/res/1.2/IyCmU8y0hmK.3k9oJ9_aHw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/7cb49101cca0e76b3a9503ab4d5ea3de,The Latest: Ex-Trump adviser arrives for impeachment session -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -'That's not bringing about change': Obama advises 'woke' young people not to be so judgmental,"Thu, 31 Oct 2019 08:11:34 -0400",https://news.yahoo.com/thats-not-bringing-change-obama-161906797.html,"""That's not bringing about change. If all you're doing is casting stones, you're probably not going to get that far,"" the former president said.",http://l2.yimg.com/uu/api/res/1.2/AEN8wJEL8250wF1A.y67.g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/20fc21a139a8b853711f5cc8117a86b2,'That's not bringing about change': Obama advises 'woke' young people not to be so judgmental -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" -"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:44:29 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -The Latest: Ex-Trump adviser arrives for impeachment session,"Thu, 31 Oct 2019 08:29:07 -0400",https://news.yahoo.com/latest-ex-trump-adviser-arrives-114430236.html,A former top national security adviser to President Donald Trump has arrived on Capitol Hill to testify in the House impeachment inquiry. Tim Morrison handled Russian and European affairs at the White House's National Security Council before resigning his position a day before Thursday's hearing.,http://l1.yimg.com/uu/api/res/1.2/IyCmU8y0hmK.3k9oJ9_aHw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/7cb49101cca0e76b3a9503ab4d5ea3de,The Latest: Ex-Trump adviser arrives for impeachment session -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -'That's not bringing about change': Obama advises 'woke' young people not to be so judgmental,"Thu, 31 Oct 2019 08:11:34 -0400",https://news.yahoo.com/thats-not-bringing-change-obama-161906797.html,"""That's not bringing about change. If all you're doing is casting stones, you're probably not going to get that far,"" the former president said.",http://l2.yimg.com/uu/api/res/1.2/AEN8wJEL8250wF1A.y67.g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/20fc21a139a8b853711f5cc8117a86b2,'That's not bringing about change': Obama advises 'woke' young people not to be so judgmental -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" -"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" -Lost WW2 British submarine found sunk off the coast of Malta,"Thu, 31 Oct 2019 08:44:29 -0400",https://news.yahoo.com/lost-ww2-british-submarine-found-123106914.html,"The wreck of a British submarine, which vanished at the height of World War Two, has been discovered lying at the bottom of the sea off Malta, university marine archaeologists said on Thursday. HMS Urge had been based with other submarines in Malta and had carried out several deadly missions when the British navy ordered it and rest of the flotilla to redeploy to Egypt because of a relentless German siege of the Mediterranean island. A team from the University of Malta, which has spent two decades surveying the local seas, said that at the request of the grandson of Urge's commander, they combed an area this summer that had once been heavily mined by Nazi forces.",http://l1.yimg.com/uu/api/res/1.2/FZxjIrmw6SEu7pgPuJ12Ng--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/9b6aac7c625ca08de253ee3be2688b2a,Lost WW2 British submarine found sunk off the coast of Malta -The Latest: Ex-Trump adviser arrives for impeachment session,"Thu, 31 Oct 2019 08:29:07 -0400",https://news.yahoo.com/latest-ex-trump-adviser-arrives-114430236.html,A former top national security adviser to President Donald Trump has arrived on Capitol Hill to testify in the House impeachment inquiry. Tim Morrison handled Russian and European affairs at the White House's National Security Council before resigning his position a day before Thursday's hearing.,http://l1.yimg.com/uu/api/res/1.2/IyCmU8y0hmK.3k9oJ9_aHw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/7cb49101cca0e76b3a9503ab4d5ea3de,The Latest: Ex-Trump adviser arrives for impeachment session -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" -Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,"The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump. The 232-196 vote fell mostly along party lines, with two moderate Democrats voting against the measure.",http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution -"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -Donald Trump Jr: I Wish I Was Like Hunter Biden So I Could ‘Make Millions Off of My Father’s Presidency’,"Thu, 31 Oct 2019 07:22:50 -0400",https://news.yahoo.com/donald-trump-jr-wish-hunter-034516851.html,"Donald Trump Jr., a man who shares the same name as the President of the United States and is currently the executive vice president of the Trump Organization, said with a straight face on Wednesday night that he wished his name was Hunter Biden so he could “make millions off my father's presidency.”During an appearance on Fox News’ Hannity to hawk his upcoming book Triggered, Trump Jr. quickly turned his sights on the impeachment inquiry his father is currently facing. After Trump Jr. called it a “sham” and claimed “the reasonable people in the middle” support his dad, Sean Hannity asked the presidential scion about former Vice President Joe Biden and his son Hunter. The president is facing impeachment largely due to his efforts to pressure Ukraine to open investigations into the Democratic presidential nominee and his family.Insisting the media protects Biden and doesn’t report on unsubstantiated claims that the former veep forced Ukrainian leaders to drop investigations into his son, Hannity then wondered aloud what would happen if Trump Jr.’s name was Hunter Biden.“I wish my name was Hunter Biden,” the president’s eldest son said without a hint of irony. “I could go abroad, make millions off of my father’s presidency—I’d be a really rich guy! It would be incredible!”Trump Jr. then brought up unfounded allegations that Hunter Biden got a sweetheart $1.5 billion deal from China thanks to a desire by Beijing to curry favor with the then-vice president, claiming that if he got “$1.5 from China” the media’s “heads would explode.”“They would have an aneurysm—we’d end the fake news problem,” he concluded. “That is the double standard that we are living under right now. That is the double standard the American people are sick and tired of.”While the lack of self-awareness should be apparent, it should also be noted that while his father has been president, Trump Jr. has opened himself and his dad up to a whole host of conflict of interest issues. For example, a trip to India Trump Jr. took to sell his family’s condominium projects cost American taxpayers roughly $100,000.Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/vypoOIdHZqPTuyClu9C_Ig--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/0a13e97fac312f151608d8bf81deece6,Donald Trump Jr: I Wish I Was Like Hunter Biden So I Could ‘Make Millions Off of My Father’s Presidency’ -"Homes destroyed, hundreds more evacuated as Los Angeles wildfires spread","Thu, 31 Oct 2019 08:59:58 -0400",https://news.yahoo.com/desert-winds-fuel-twin-wildfires-125958841.html,"More wildfires ignited near Los Angeles on Thursday, destroying homes and forcing evacuations, as the region faced a second day of gusting desert winds that have fanned flames and displaced thousands of people. The fast-moving Hillside Fire grew to 200 acres (80 hectares) and was starting to consume homes near scrub-covered slopes in San Bernardino, east of Los Angeles, according to the San Bernardino County Fire Department. A helicopter and a small plane dropped water and retardant on the flames, according to Chris Prater, a fire department spokesman.",http://l1.yimg.com/uu/api/res/1.2/As0Alga6NdnqgVgKSwm0sA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/7b13d9ec06bc690d60c21f3db52c21f1,"Homes destroyed, hundreds more evacuated as Los Angeles wildfires spread" -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" -Live updates: House passes impeachment resolution,"Thu, 31 Oct 2019 09:31:57 -0400",https://news.yahoo.com/house-impeachment-vote-trump-live-133157368.html,"The House on Thursday voted to pass a historic resolution establishing formal procedures for the ongoing impeachment inquiry into President Trump. The 232-196 vote fell mostly along party lines, with two moderate Democrats voting against the measure.",http://l1.yimg.com/uu/api/res/1.2/.2dP09SVXpW7i6HlA6AVxg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2019-10/7b696780-fb33-11e9-b9e7-8bf92932f488,Live updates: House passes impeachment resolution -"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -Donald Trump Jr: I Wish I Was Like Hunter Biden So I Could ‘Make Millions Off of My Father’s Presidency’,"Thu, 31 Oct 2019 07:22:50 -0400",https://news.yahoo.com/donald-trump-jr-wish-hunter-034516851.html,"Donald Trump Jr., a man who shares the same name as the President of the United States and is currently the executive vice president of the Trump Organization, said with a straight face on Wednesday night that he wished his name was Hunter Biden so he could “make millions off my father's presidency.”During an appearance on Fox News’ Hannity to hawk his upcoming book Triggered, Trump Jr. quickly turned his sights on the impeachment inquiry his father is currently facing. After Trump Jr. called it a “sham” and claimed “the reasonable people in the middle” support his dad, Sean Hannity asked the presidential scion about former Vice President Joe Biden and his son Hunter. The president is facing impeachment largely due to his efforts to pressure Ukraine to open investigations into the Democratic presidential nominee and his family.Insisting the media protects Biden and doesn’t report on unsubstantiated claims that the former veep forced Ukrainian leaders to drop investigations into his son, Hannity then wondered aloud what would happen if Trump Jr.’s name was Hunter Biden.“I wish my name was Hunter Biden,” the president’s eldest son said without a hint of irony. “I could go abroad, make millions off of my father’s presidency—I’d be a really rich guy! It would be incredible!”Trump Jr. then brought up unfounded allegations that Hunter Biden got a sweetheart $1.5 billion deal from China thanks to a desire by Beijing to curry favor with the then-vice president, claiming that if he got “$1.5 from China” the media’s “heads would explode.”“They would have an aneurysm—we’d end the fake news problem,” he concluded. “That is the double standard that we are living under right now. That is the double standard the American people are sick and tired of.”While the lack of self-awareness should be apparent, it should also be noted that while his father has been president, Trump Jr. has opened himself and his dad up to a whole host of conflict of interest issues. For example, a trip to India Trump Jr. took to sell his family’s condominium projects cost American taxpayers roughly $100,000.Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l2.yimg.com/uu/api/res/1.2/vypoOIdHZqPTuyClu9C_Ig--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/0a13e97fac312f151608d8bf81deece6,Donald Trump Jr: I Wish I Was Like Hunter Biden So I Could ‘Make Millions Off of My Father’s Presidency’ -"Homes destroyed, hundreds more evacuated as Los Angeles wildfires spread","Thu, 31 Oct 2019 08:59:58 -0400",https://news.yahoo.com/desert-winds-fuel-twin-wildfires-125958841.html,"More wildfires ignited near Los Angeles on Thursday, destroying homes and forcing evacuations, as the region faced a second day of gusting desert winds that have fanned flames and displaced thousands of people. The fast-moving Hillside Fire grew to 200 acres (80 hectares) and was starting to consume homes near scrub-covered slopes in San Bernardino, east of Los Angeles, according to the San Bernardino County Fire Department. A helicopter and a small plane dropped water and retardant on the flames, according to Chris Prater, a fire department spokesman.",http://l1.yimg.com/uu/api/res/1.2/As0Alga6NdnqgVgKSwm0sA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/7b13d9ec06bc690d60c21f3db52c21f1,"Homes destroyed, hundreds more evacuated as Los Angeles wildfires spread" -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow.,"Thu, 31 Oct 2019 05:40:49 -0400",https://news.yahoo.com/nobel-peace-prize-vladimir-putin-094049080.html,"Adam Berry/GettyMOSCOW—For those who live outside Russia and the enormous bubble of admiration inflated around President Vladimir Putin, this story may be a bit hard to believe. But there is a movement afoot here, apparently in all sincerity, to nominate Putin for the Nobel Peace Prize.From the outside, one must wonder how the dossier for the former KGB operative might be prepared. Would it include the peace of the grave imposed on civilians in the Second Chechen War early in Putin’s presidency? Or would it be for backing quasi states broken away from the Republic of Georgia? Or, more recently, for the forcible annexation of Crimea and the instigation of a separatist war in Ukraine that continues to this day? Alex Gibney: How Donald Trump Is Morphing Into Vladimir PutinOr perhaps he’d win for Syria, where Putin is a strong supporter of the Assad dictatorship that has killed hundreds of thousands of people while half of the nation’s population has been driven into internal or external exile. Would that be the venue for Putin the peacemaker to earn his Nobel laurels?In fact, through the looking glass of Moscow’s media and Putin’s supporters, Ukraine and Syria are held up as prime examples of his eligibility for The Prize.The general secretary of the Russian-Turkish Public Forum, Sergey Markov, who is close to the Kremlin, tells The Daily Beast that there is no better candidate for the prestigious award than Putin: “Most Russian state officials believe that President Putin deserves the Nobel Peace Prize for saving the world from a nuclear war during the crisis in Ukraine in 2014—for holding back and not bringing Russian forces to Kharkiv, Dnepropetrovsk, [Ukrainian] cities full of Russian people,” Markov said, adding, “Of course Putin should be given the prize for solving the Turkish-Kurdish conflict, which risked taking thousands of lives.” Forget U.S. President Donald Trump’s efforts to claim credit for a ceasefire deal with Ankara, Putin’s supporters in Moscow believe that it was Putin alone who managed to find the solution and negotiate a deal with Turkish President Recep Tayyip Erdogan that prevented a Turkish-Kurdish bloodbath. Whoever is responsible, the arrangement is essentially on Erdogan’s terms, opening the way for ethnic cleansing as Kurdish troops withdraw, Kurdish civilians flee, and Erdogan plans to move millions of Syrian Arabs, most of them from other parts of the country, into what Erdogan calls a “safe zone.”Yet Aleksey Venediktov, editor-in-chief of the influential independent radio station Echo of Moscow, tweeted last week as that deal came down: “They tell me at the top: ‘Now you understand, Putin deserves a Nobel Peace Prize.’” He said his high-level sources were telling him Putin’s Syria deal was like “the new Camp David Accord,” putting it on a par with the 1978 agreement brokered by President Jimmy Carter that ended generations of war between Israel and Egypt. In truth, the Russian leader has been looking to win The Prize for years. Ever since Time magazine put Putin on the cover as Person of the Year in 2007, the Kremlin’s ideologues have believed that the West recognizes Putin as the world’s preeminent politician—and peacemaker—and no wars in Georgia, Ukraine or Syria could dissuade them.Putin’s greatest accomplishment on that score probably came in 2013 when President Barack Obama was weighing the possibility of major military strikes on the Bashar al-Assad regime to retaliate for its use of chemical weapons, and Putin stepped in with a better—or at least more peaceful—plan. He persuaded Assad, first, to admit he had a chemical arsenal, which he had never done before. Then Assad agreed to U.N. inspections as he eliminated everything he admitted to having, and by all accounts the vast majority of those gruesome weapons were destroyed. At the time, that seemed like a major war averted, and therefore a pathway to peace.So at the beginning of 2014 a Russian advocacy group called the International Academy of Spiritual Unity and Cooperation of People put Putin up for the prize.Unfortunately for Putin’s aspirations, there’s quite a long delay between the nominations at the beginning of the year, and the awards at the end, and Putin was not exactly making peace in 2014. Reacting to a popular pro-European, largely anti-Russian uprising in Ukraine, he seized the Crimean Peninsula, annexed it to Russia, and poured support into separatist rebels in Eastern Ukraine. The death toll soon climbed into the thousands, with hundreds of thousands of people displaced. In July 2014 a Russian-supplied missile shot down a Malaysian Airliner en route from Amsterdam to Kuala Lumpur with 298 people on board, all of whom died.If anyone argued in 2014, as Markov suggests, that Putin should have gotten a peace prize for not staging a massive, direct invasion of Ukraine to take the large cities of Kharkiv and Dnepropetrovsk, the Nobel Committee in Norway clearly was not persuaded. It gave the 2014 prize to Kailash Satyarthi and Malala Yousafzai ""for their struggle against the suppression of children and young people and for the right of all children to education.""Russia’s record in Syria has been equally bloody since it entered the fight directly to support Assad in 2015.  One recent example was a Russian-Syrian military strike on a center for hundreds of displaced people in the town of Haas in Idlib that killed 20 civilians in August. A Human Rights Watch investigation published in October qualified the attack as “an apparent war crime.” Sara Kayyali who monitors the violations on the ground for HRW, tells The Daily Beast that “Russian strikes on protected humanitarian infrastructure” have been common in the areas where they operate, with “severely negative consequences.”Now, says Kayyali, “Russia has brokered an agreement with Turkey around a so-called ‘safe zone,’ but as history has proved again and again, safe zones are rarely safe.” President Putin’s spokesman Dmitry Peskov gloated last week, saying, ""The United States was the closest ally of the Kurds during the last few years, and in the end the U.S. ditched the Kurds and effectively betrayed them."" By arranging for the withdrawal of the fighters, Peskov suggested, Russia is at least saving their lives. The United States looks foolish and treacherous, to be sure. But some analysts suggest Russia’s schadenfreude is premature. David Aaron Miller at the Carnegie Endowment for International Peace notes that among some in Washington, “Animosity toward Trump and Putin—richly deserved—is clouding the analysis on Syria  and triggering overreaction about Russia’s gains.”As Miller points out, “Russia has been the dominant external power in Syria since at least the 1970s. And the U.S. withdrawal has no doubt consolidated that and elevated Russia’s role in the region. But we shouldn’t overestimate Moscow’s gains.  They now preside over a broken country that will take years and billions to heal. They are shackled with a pariah regime—both entitled and dependent—that will continue to alienate the majority of the Sunni population; they face a resurgent ISIS and are now shackled with responsibility for managing both the Turkish-Syrian-Kurdish triangle and a potential Israeli-Iranian conflict.”“The idea of giving Putin a Nobel Peace Prize sounds ridiculous after years of this dirty war in Syria, the Russian military violating international law, using banned weapons, bombing hospitals and clinics,” Tania Lokshina, Europe and Central Asia associate director at Human Rights Watch Moscow, told The Daily Beast. But still the dream lives on, revived by the agreement moving the Kurds out of the region near the Turkish border. Last week the Russian news agency riafan.ru headlined: “Foreigners propose to award Putin with a Nobel Prize for peace in Syria.” The deadline for Nobel nominations is January 31. One can only guess at the peace initiatives Putin will carry out between now and then.Is Trump Saving Those Syrian Oil Fields for the Russians?Read more at The Daily Beast.Get our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/C728yqrklY8Mh7Xi5loohQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/e70ee07a1d2376c102a6d1bd9026dece,A Nobel Peace Prize for Vladimir Putin? That’s the Talk in Moscow. -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" -"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'","Thu, 31 Oct 2019 11:27:22 -0400",https://news.yahoo.com/trump-says-rep-steve-scalise-144840649.html,"Trump recalled how Scalise's wife Jennifer was extremely distraught, saying, ""not many wives would react that way to tragedy, I know mine wouldn't.""",http://l2.yimg.com/uu/api/res/1.2/E5u5AoVSVzxJYNn3hUeSug--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/ab98bc63a8efb7b6a5144f8f815b565c,"Trump says after Rep. Steve Scalise got shot his wife 'cried her eyes out', joking 'not many wives would react that way ... I know mine wouldn't'" -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -The Latest: Northern California wildfire now 60% contained,"Thu, 31 Oct 2019 11:43:01 -0400",https://news.yahoo.com/latest-fire-erupts-san-bernardino-112830955.html,"Officials say a wildfire burning in Northern California's wine country that forced the evacuation of more than 180,000 people is now 60% contained and has not increased in size since Wednesday. California Department of Forestry and Fire Protection officials said Thursday that firefighting crews working through the night increased their control of the fire from 45% containment. The fire started last week near the town of Geyserville in Sonoma County north of San Francisco and has scorched about 120 square miles (311 square kilometers).",http://l1.yimg.com/uu/api/res/1.2/2sptUHoUhwVZ3QxYtYAMfg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/e59db5b3d01481e820049f6a2a08ae46,The Latest: Northern California wildfire now 60% contained -Impeachment trial could complicate Democratic senators' U.S. presidential bids,"Thu, 31 Oct 2019 06:06:04 -0400",https://news.yahoo.com/impeachment-trial-could-complicate-democratic-100604502.html,"Democratic U.S. senators vying for the party's 2020 presidential nomination face the increasing likelihood of being tethered to Washington for President Donald Trump's impeachment trial just as they need to ramp up efforts in early-voting states. With the U.S. House of Representatives set to vote on Thursday on next steps in the impeachment probe, lawmakers there anticipate the investigation could wrap up by year's end or early 2020, at which point the process will move to the Senate. Senate Majority Leader Mitch McConnell, a Republican, has said a trial requiring the presence of the full Senate could take place six days a week.",http://l1.yimg.com/uu/api/res/1.2/NBP5ObIps5m5Czjd4rcFZA--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/91e91d747543a06790c063c82047aae0,Impeachment trial could complicate Democratic senators' U.S. presidential bids -"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" -Netflix Drops Horrifying Camp Fire Documentary ‘Fire in Paradise’ as California Burns,"Thu, 31 Oct 2019 05:39:58 -0400",https://news.yahoo.com/netflix-drops-horrifying-camp-fire-093958850.html,"Karl Mondon/GettyLike people, wildfires aren’t born coherent or fully formed. They rarely have one direction or one goal. Fires are fluid and disparate, made up of smaller blazes and embers, some of which might merge into irrational explosions or veer off in different directions. (Scientists have dubbed this odd meandering, not “fire movement” or “fire patterns,” but “fire behavior”). Today, Los Angeles, like Sonoma County, is on fire. The city smells like everyone is having a cookout. On maps, the evacuation zone is drawn in hard lines, starting just five miles from where I’m writing this—a box framed by Mulholland Drive in the north, the 405 in the east, Sunset Boulevard in the south and Temescal Canyon Road in the west. But with hurricane-like winds predicted this week, there remains some uncertainty about just where, exactly, the blaze might go. Unlike actual flames, the stories of fire have a predictable arc: low humidity, dry fuel, some small ignition (a cigarette, a powerline), ferocious wind, dispatch calls, mobile alerts, confused evacuators, missing heirlooms, lost lives, thousands of tired firefighters, and later, aerial photos of the earth, burnt into a scar. The familiarity makes the worst fire stories the hardest to tell. How do you capture the chaos of a place like Paradise—leveled last year by the Camp Fire, California’s deadliest in a century—when we all know the end? One hundred and fifty thousand acres burned. Nineteen thousand structures were destroyed. Eighty-five people, most of them disabled or elderly, dead. In that sense, Fire in Paradise, a new documentary directed by Drea Cooper and Zackary Canepari which streams on Netflix this Friday, doesn’t break ground. The tight, 40-minute film isn’t an exercise in narrative form. There’s no narration at all. It’s a time capsule—a minute-by-minute replay, told by the people who lived it and spliced with source footage: dispatch calls, cellphone videos, and clips from an eerily upbeat weatherman. But it’s also a forecast, both for what the state will undergo these next few weeks, and what will replay in fire seasons to come. Inside L.A.’s High-End Getty Fire Evacuation CenterThe Weird Weather Fanning the Flames in CaliforniaFire in Paradise opens with an omen—at once self-conscious and effective. The camera pans on a forest, dry but unburned. An answering machine beeps in the background and a robocall sets the scene. “This is an important safety alert from Pacific Gas & Electric Company,” the monotone voice says. “Extreme weather conditions and high fire danger are forecasted in Butte County, starting Thursday, November 8, 2018.” Months after that morning, investigators would find the utility company responsible for as many as 10 of the fires which scorched the state last year. It’s another reminder of the film as forecast—this season, PG&E; has already taken heat for at least one inferno, and cutting power to millions across the state, leaving some to escape in the dark with little warning. As the voiceover continues, a square screen appears over the forest, playing a montage of home videos. Families bowl; a man fishes; couples dance and swim; kids dressed as cowboys hop a potato-sack race. “To protect public safety,” the robovoice goes on, “PG&E; may temporarily turn off power in your neighborhood or community.” The screen goes black. “Please have your emergency plan ready.”The account of the following hours unfold through interviews with residents and first responders—when they heard about the fire, when they got scared, when they fled. The most powerful moments don’t come from the speakers describing the fire. One of the unnerving things about extreme natural disasters is how language fails to keep pace with their severity: “It got bad real quick,” one dispatcher says. Another resident echoes: “It felt unreal.” Instead, the strongest scenes emerge from people describing people. At one point, an auburn-haired teacher named Mary Ludwig recalls boarding a bus filled with students, watching them yawn from the low-oxygen air, and making impromptu masks from the driver’s shirt and the sole water bottle on board. She hoped they wouldn’t work: “We prayed that we would die of smoke inhalation.” Later, resident Joy Beeson, a wry elderly woman with blue nail polish and a pink fleece, describes escaping with her son. “I ran out in my Skechers and my pajamas,” she says. “I was running out of breath, and my son put his hand on my back and said, ‘You’ve got to run now, Mama.’” When Beeson pushed ahead, a burning tree fell where she stood just seconds before: “My son saved my life.” A third survivor, a Cal Fire captain named Sean Norman, remembers evacuating a family that didn’t want to leave. If you don’t go, he told them, you will die. As the fire bore down, Norman couldn’t keep convincing them. He fled. “They survived,” he says, choking up. “They don’t like me very much. But at least they’re around to not like me.” Still, what makes Fire in Paradise essential viewing isn’t anything the subjects said or the directors captured. It comes from the amateurs, from the cellphone videos filmed from inside cars or while fleeing on foot. Near the end of the movie, the inevitable aerial shot arrives, revealing city blocks reduced to black squares. In the background, newscasters list unthinkable numbers: 77 deaths so far, 1,000 missing people. Then, the camera cuts to a stunning recording. It’s shot by an anonymous man walking through his old town. The landscape is so scorched the tape looks sepia. Only a few faint colors (a fleck of car paint, a blue flame) prove otherwise. The man pans toward the remains of a few cars, narrating in a squeaky voice. “Now this is the poor guy,” he says, “came down to get my crippled friend out.” He zooms in on the front car. It could be a Honda or a Dodge or a Geo or really any smallish, average car. Identifying markers have all been burned away. “He didn’t make it. None of these people made it down here. These people all got burnt up. I was right down below them here.” The man approaches the shattered windshield, focusing on the hollowed-out front seats. “My friend, you can see he’s dead.” In fact, you can’t see it. The images are unintelligible, all abstract lumps and black lines. But then he pans to a window, and something comes into focus: a blackened skull, and beneath it, bones. Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l.yimg.com/uu/api/res/1.2/33hwbB28ORhRhZQMKMgv9Q--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/b918ec5adac82db62f87f4da32698588,Netflix Drops Horrifying Camp Fire Documentary ‘Fire in Paradise’ as California Burns -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -"Qantas grounds Boeing 737 plane with crack, inspects others","Thu, 31 Oct 2019 02:17:26 -0400",https://news.yahoo.com/qantas-grounds-boeing-737-plane-crack-inspects-others-013140640.html,"Australian flag carrier Qantas said Thursday it had grounded one Boeing 737NG due to a structural crack, and was urgently inspecting 32 others for the flaw. The grounding is the latest safety concern for Boeing, as it reels from two 737 MAX crashes that killed 346 people and highlighted problems with the planes' flight handling software. The US aviation authority this month ordered checks of Boeing 737NG planes that had flown more than 30,000 times.",http://l2.yimg.com/uu/api/res/1.2/QdlwI7FUT2UCdKbRpn0jtw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/dbb7d54772fd3991e089d08482d5f8d74f73dff6.jpg,"Qantas grounds Boeing 737 plane with crack, inspects others" -"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes","Thu, 31 Oct 2019 07:18:02 -0400",https://news.yahoo.com/boeing-facing-fresh-crisis-another-111802622.html,Qantas found cracks in a 737NG plane that had flown fewer times than the planes the US Federal Aviation Administration had ordered to be inspected.,http://l2.yimg.com/uu/api/res/1.2/F2uYIYha9V91J6iBdUe..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/business_insider_articles_888/4254e0c231552fc69429e15c3561751e,"Boeing is facing a fresh crisis after another airline found cracks in a 737 plane, adding to a growing number of airlines grounding some of the planes" -"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" -China responds to reports of U.S. grounding its fleet of Chinese-made drones,"Thu, 31 Oct 2019 10:33:59 -0400",https://news.yahoo.com/china-responds-reports-u-grounding-143359231.html,"China's foreign ministry said on Thursday after reports that the United States Department of the Interior had grounded its fleet of Chinese-made drones that it hoped Washington would ""stop abusing the concept of national security"" and provide a nondiscriminatory atmosphere for Chinese companies.",http://l2.yimg.com/uu/api/res/1.2/7PQM1BUYpSL9xxiFkSHKDQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314557-1572532267028.jpg,China responds to reports of U.S. grounding its fleet of Chinese-made drones -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -Convicted rapist mistakenly released from Georgia prison captured in Kentucky,"Thu, 31 Oct 2019 08:30:00 -0400",https://news.yahoo.com/convicted-rapist-mistakenly-released-georgia-123000391.html,"Tony Maycon Munoz-Mendez was serving a life sentence in Georgia when he was released ""in error."" Authorities captured him in Kentucky Wednesday.",http://l2.yimg.com/uu/api/res/1.2/YoEbsalyavrYoNwveoHhzg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/72a486a1d22695356eaf40bde507240f,Convicted rapist mistakenly released from Georgia prison captured in Kentucky -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -"House Democrats face question: Impeach Pence, or make him president?","Thu, 31 Oct 2019 05:00:38 -0400",https://news.yahoo.com/house-democrats-face-question-impeach-pence-or-make-him-president-090012685.html,"If the House approves impeachment, and if the Senate votes to remove Trump, Pence would become president. Would he make a better president?",http://l1.yimg.com/uu/api/res/1.2/Z3VG5Hx16YaZq2pevUBETg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-images/2019-10/deb28d30-fb5b-11e9-bfef-ef163d511377,"House Democrats face question: Impeach Pence, or make him president?" -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Islamic State group announces successor to al-Baghdadi,"Thu, 31 Oct 2019 12:37:25 -0400",https://news.yahoo.com/islamic-state-group-announces-successor-153846160.html,"The Islamic State group declared a new leader Thursday after it confirmed the death of its leader Abu Bakr al-Baghdadi days earlier in a U.S raid in Syria. In its audio release by the IS central media arm, al-Furqan Foundation, a new spokesman for IS identifies the successor as Abu Ibrahim al-Hashimi al-Qurayshi — tracing his lineage, like al-Baghdadi, to the Prophet Muhammad's Quraysh tribe. The speaker in the audio also confirmed the death of Abu Hassan al-Muhajir, a close aide of al-Baghdadi and a spokesman for the group since 2016.",http://l1.yimg.com/uu/api/res/1.2/fivXDH2rwHyqVQcwyhaFIw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/dfbeabe545288a1916e6d2fb2fb1776b,Islamic State group announces successor to al-Baghdadi -"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -"House Democrats face question: Impeach Pence, or make him president?","Thu, 31 Oct 2019 05:00:38 -0400",https://news.yahoo.com/house-democrats-face-question-impeach-pence-or-make-him-president-090012685.html,"If the House approves impeachment, and if the Senate votes to remove Trump, Pence would become president. Would he make a better president?",http://l1.yimg.com/uu/api/res/1.2/Z3VG5Hx16YaZq2pevUBETg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-images/2019-10/deb28d30-fb5b-11e9-bfef-ef163d511377,"House Democrats face question: Impeach Pence, or make him president?" -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Islamic State group announces successor to al-Baghdadi,"Thu, 31 Oct 2019 12:37:25 -0400",https://news.yahoo.com/islamic-state-group-announces-successor-153846160.html,"The Islamic State group declared a new leader Thursday after it confirmed the death of its leader Abu Bakr al-Baghdadi days earlier in a U.S raid in Syria. In its audio release by the IS central media arm, al-Furqan Foundation, a new spokesman for IS identifies the successor as Abu Ibrahim al-Hashimi al-Qurayshi — tracing his lineage, like al-Baghdadi, to the Prophet Muhammad's Quraysh tribe. The speaker in the audio also confirmed the death of Abu Hassan al-Muhajir, a close aide of al-Baghdadi and a spokesman for the group since 2016.",http://l1.yimg.com/uu/api/res/1.2/fivXDH2rwHyqVQcwyhaFIw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/ap.org/dfbeabe545288a1916e6d2fb2fb1776b,Islamic State group announces successor to al-Baghdadi -"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -China responds to reports of U.S. grounding its fleet of Chinese-made drones,"Thu, 31 Oct 2019 10:33:59 -0400",https://news.yahoo.com/china-responds-reports-u-grounding-143359231.html,"China's foreign ministry said on Thursday after reports that the United States Department of the Interior had grounded its fleet of Chinese-made drones that it hoped Washington would ""stop abusing the concept of national security"" and provide a nondiscriminatory atmosphere for Chinese companies.",http://l2.yimg.com/uu/api/res/1.2/7PQM1BUYpSL9xxiFkSHKDQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314557-1572532267028.jpg,China responds to reports of U.S. grounding its fleet of Chinese-made drones -"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -China responds to reports of U.S. grounding its fleet of Chinese-made drones,"Thu, 31 Oct 2019 10:33:59 -0400",https://news.yahoo.com/china-responds-reports-u-grounding-143359231.html,"China's foreign ministry said on Thursday after reports that the United States Department of the Interior had grounded its fleet of Chinese-made drones that it hoped Washington would ""stop abusing the concept of national security"" and provide a nondiscriminatory atmosphere for Chinese companies.",http://l2.yimg.com/uu/api/res/1.2/7PQM1BUYpSL9xxiFkSHKDQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314557-1572532267028.jpg,China responds to reports of U.S. grounding its fleet of Chinese-made drones -"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -China responds to reports of U.S. grounding its fleet of Chinese-made drones,"Thu, 31 Oct 2019 10:33:59 -0400",https://news.yahoo.com/china-responds-reports-u-grounding-143359231.html,"China's foreign ministry said on Thursday after reports that the United States Department of the Interior had grounded its fleet of Chinese-made drones that it hoped Washington would ""stop abusing the concept of national security"" and provide a nondiscriminatory atmosphere for Chinese companies.",http://l2.yimg.com/uu/api/res/1.2/7PQM1BUYpSL9xxiFkSHKDQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314557-1572532267028.jpg,China responds to reports of U.S. grounding its fleet of Chinese-made drones -"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -China responds to reports of U.S. grounding its fleet of Chinese-made drones,"Thu, 31 Oct 2019 10:33:59 -0400",https://news.yahoo.com/china-responds-reports-u-grounding-143359231.html,"China's foreign ministry said on Thursday after reports that the United States Department of the Interior had grounded its fleet of Chinese-made drones that it hoped Washington would ""stop abusing the concept of national security"" and provide a nondiscriminatory atmosphere for Chinese companies.",http://l2.yimg.com/uu/api/res/1.2/7PQM1BUYpSL9xxiFkSHKDQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314557-1572532267028.jpg,China responds to reports of U.S. grounding its fleet of Chinese-made drones -"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -China responds to reports of U.S. grounding its fleet of Chinese-made drones,"Thu, 31 Oct 2019 10:33:59 -0400",https://news.yahoo.com/china-responds-reports-u-grounding-143359231.html,"China's foreign ministry said on Thursday after reports that the United States Department of the Interior had grounded its fleet of Chinese-made drones that it hoped Washington would ""stop abusing the concept of national security"" and provide a nondiscriminatory atmosphere for Chinese companies.",http://l2.yimg.com/uu/api/res/1.2/7PQM1BUYpSL9xxiFkSHKDQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314557-1572532267028.jpg,China responds to reports of U.S. grounding its fleet of Chinese-made drones -"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -China responds to reports of U.S. grounding its fleet of Chinese-made drones,"Thu, 31 Oct 2019 10:33:59 -0400",https://news.yahoo.com/china-responds-reports-u-grounding-143359231.html,"China's foreign ministry said on Thursday after reports that the United States Department of the Interior had grounded its fleet of Chinese-made drones that it hoped Washington would ""stop abusing the concept of national security"" and provide a nondiscriminatory atmosphere for Chinese companies.",http://l2.yimg.com/uu/api/res/1.2/7PQM1BUYpSL9xxiFkSHKDQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314557-1572532267028.jpg,China responds to reports of U.S. grounding its fleet of Chinese-made drones -"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" -Chicago teachers strike continues into 11th day over one last demand: Make up strike days,"Thu, 31 Oct 2019 07:47:50 -0400",https://news.yahoo.com/chicago-teachers-strike-continues-11th-114750309.html,The Chicago Teachers Union voted to accept a tentative agreement with Mayor Lori Lightfoot. But the mayor says she won't pay teachers for striking.,http://l.yimg.com/uu/api/res/1.2/YnSsxtTtC88ps4TdTv75uw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-us/usa_today_news_641/c71cecd1e261f0b8c23310eb597532ac,Chicago teachers strike continues into 11th day over one last demand: Make up strike days -"G.M. Union Members Return to Work, but Worries Are Far From Over","Thu, 31 Oct 2019 06:48:39 -0400",https://news.yahoo.com/g-m-union-members-return-104839179.html,GM autoworkers returned to work with a new contract after their longest nationwide strike in nearly 50 years. Here's where they stand now.,http://l1.yimg.com/uu/api/res/1.2/ba3mWr.8ASTQgIis1MyRfQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/time_72/ab5f71c6022adf9707a5e8ca93cc8cde,"G.M. Union Members Return to Work, but Worries Are Far From Over" -Why the Tories are cruising toward a big win in Britain,"Thu, 31 Oct 2019 05:50:02 -0400",https://news.yahoo.com/why-tories-cruising-toward-big-095002680.html,"The polling is clear. Over the more than three years since they voted to leave the European Union, British voters have come to regret their choice. Polls consistently show a several-point margin in favor of Remain, only one in three voters will endorse the proposition that getting Brexit over with is better than further delay, and two thirds believe that a no-deal Brexit should require another referendum.So why are Boris Johnson's Tories, running on a clearer stance for Brexit than ever before, currently projected to win a decisive victory in the December election?The simplest answer is: the opposition is divided. But that answer obscures more than it reveals, because it presumes that the question of Brexit is as dominant among the opposition as it is among the Tories. And the division of the opposition itself proves that this is not the case. On the contrary: Brexit is a truly existential question for a far larger fraction of Leave voters than it is of Remain voters, and that has had and continues to have material electoral consequences.Consider the largest opposition party. Labour under Jeremy Corbin has trended in an overwhelmingly left-wing direction, not only on economic matters but also on immigration and foreign policy. A ""no enemies on the left"" approach has even seen extremist illiberal and anti-Semitic elements gain a greater foothold within the party. But on Brexit, Corbyn has taken a somewhat ambiguous stance, reflecting the fact that while a majority of Labourites voted Remain, a not insignificant number had always been skeptical of an economic arrangement that gave financial interests greater influence at both the national and European levels of government.That combination of stridency and straddle hasn't played well in electoral terms, and has opened space for two other parties to establish themselves as alternatives: the Liberal Democrats, a longstanding centrist liberal party that has positioned itself as the unequivocal party of Remain, and the Brexit Party, a newly-minted political faction founded by Nigel Farage, the former leader of the U.K. Independence Party. At one point this past summer, both parties looked capable of surpassing the Tories, and possibly Labour as well.Since Boris Johnson took the premiership, though, the picture has changed dramatically. The Brexit party has fallen back to 10-12 percent in the polls, while the Tories have surged to the mid-to-high 30s. Moreover, Farage has intimated that he might cooperate with the Tories strategically, targeting constituencies where left-wing Leave voters are concentrated to pull them away from Labour, while staying away from seats that would be contested between the Remain-oriented Liberal Democrats and the Leave-oriented Tories.How could such a strategy work if Brexit is only getting less-popular with time? The answer comes down to intensity and cohesion.If Tory Remain voters -- of which there were many -- cared more about stopping Brexit than they did about the fate of their party, they would defect to the Liberal Democrats, badly damaging the Tories' chances of winning a majority. Similarly, if Labour Remain voters felt that Brexit was the most important issue, they would either have pushed Corbyn to a more decisive Remain stance, or would be working strategically with the Liberal Democrats in the way that the Brexit Party may work with the Tories. And the Liberal Democrats would be doing the same.But while Brexit may be a politically-defining event for the liberal center, for the left this is their first chance at power since the 1970s -- not something to be traded away lightly for the sake of free trade with Germany or even stability in Ireland. Even for liberal centrists, the choice between Corbyn and Johnson may be a tough one. For the right, meanwhile, the party as a whole seems to have come to realize that while the hard Leave voters are a minority in the country, they hold the balance of power within the Tory coalition. If they are not given the wheel, the coach isn't going anywhere.Now they have the wheel, and a Leave coalition looks likely to triumph decisively, in spite of all regrets.What happens then? The opposition could continue to come up with explanations for why the result doesn't truly reflect the will of the people -- blaming the electoral system, for instance (though in current polling the Tory-plus-Brexit coalition outpolls Labour-plus-Lib-Dems by an average of five points, suggesting even proportional representation would give victory to the Brexiteers). But they would be wiser to focus on the future. No longer dependent on the votes of Irish Unionists, nor needing to cater to the concerns of the Scottish Nationalists, a big Tory majority could govern from the center of England rather than Britain.The biggest post-Brexit challenge may not be how to get Britain back into Europe, but how to hold Britain itself together.Want more essential commentary and analysis like this delivered straight to your inbox? Sign up for The Week's ""Today's best articles"" newsletter here.",,Why the Tories are cruising toward a big win in Britain -Death sentence confirmed against four men in Morocco backpacker murders,"Thu, 31 Oct 2019 06:25:05 -0400",https://news.yahoo.com/death-sentence-confirmed-against-four-102505231.html,"A Moroccan appeals court upheld, late on Wednesday, death sentences against three Moroccan men for murdering two Scandinavian women in the Atlas mountains last December. A fourth man was also handed capital punishment after he was sentenced to life in prison by an anti-terrorism court on July 18. The other three were handed death sentences at the time.",,Death sentence confirmed against four men in Morocco backpacker murders -Chris Christie Among Lawyers Making $15 Million in 1MDB Pact,"Thu, 31 Oct 2019 12:10:31 -0400",https://news.yahoo.com/chris-christie-among-lawyers-reaping-133349408.html,"(Bloomberg) -- The biggest recovery ever from an American anti-corruption crackdown is proving lucrative for former New Jersey Governor Chris Christie.A major deal struck by the U.S. for fugitive financier Jho Low to give up almost $1 billion in assets allegedly stolen from a Malaysian investment fund comes with a provision to pay his lawyers. As part of the 1MDB settlement, the Justice Department allowed for $15 million to be paid to a group advising Jho Low, including the law firm Christie set up after two terms as New Jersey’s governor.Those proceeds will come from Jho Low’s stake in EMI Music Publishing, which has grown to about $415 million. That investment ballooned after he initially put in a little more than $100 million stolen from 1MDB, according to prosecutors. The two sides agreed to the provision to allow the lawyers to extract fees from Low, whose assets and accounts have been seized or monitored by authorities across the world.“We were pleased to help negotiate this historic resolution in order to preserve the tremendous value of assets involved,” Christie said in a statement after the Justice Department announced the settlement agreement on Wednesday. It still needs approval from a federal judge.Christie, who ran for the Republican presidential nomination in 2016 before dropping out and endorsing Donald Trump, set up his own law firm last year, the Christie Law Firm LLC. The other firms that will receive proceeds of the 1MDB deal for legal expenses are Kobre & Kim LLP and Lowenstein Sandler LLP.The agreement comes even before the criminal charges against Low have been resolved. In the settlement, the Justice Department cautioned that the released funds should be used only for the Low family’s legal fees and costs related to the lawsuits, and can’t be routed back to Low or his family.The cases were resolved in a “collaborative and fair way that includes payment of our legal fees,” said Robin Rathmell, a lawyer at Kobre & Kim.(Updates with lawyer’s comment in last paragraph.)To contact the reporter on this story: Sridhar Natarajan in New York at snatarajan15@bloomberg.netTo contact the editors responsible for this story: Michael J. Moore at mmoore55@bloomberg.net, Daniel Taub, David S. JoachimFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/PbVaTWepxvVbXr53TcCujQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/f6e0823b2c5d5c67a6bef851e5731153,Chris Christie Among Lawyers Making $15 Million in 1MDB Pact -Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit,"Thu, 31 Oct 2019 09:08:46 -0400",https://news.yahoo.com/harry-dunn-police-interview-diplomat-130846041.html,"British police have conducted an interview with the wife of an American diplomat suspected of involvement in a crash that killed Harry Dunn.Northamptonshire Police passed details of their interview with Anne Sacoolas, 42, to the Crown Prosecution Service, it is understood.",http://l.yimg.com/uu/api/res/1.2/.wf73F8icRUo.yzE2xR..g--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_independent_635/ad7372f016168eff10c6a18c68bd0149,Harry Dunn: Police interview diplomat’s wife who fled under diplomatic immunity as family demands chief constable quit -Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge,"Thu, 31 Oct 2019 11:29:46 -0400",https://news.yahoo.com/play-win-dodge-challenger-hellcat-152946140.html,"Take your shot to win one potent Mopar.The Dodge Horsepower Challenge: 5 Weeks. 5 Questions. 5 Challengers. As a thank you to Dodge customers and enthusiasts for reaching the 500 million horsepower goal early, the automaker has launched Brotherhood of Muscle With Horsepower Challenge. The first challenge starts on November 5th and ending on November 11th, and five new owners will compete to take home a special-edition TorRed Dodge Challenger SRT Hellcat Redeye.Every Tuesday, Dodge.com will post a horsepower-inspired question in multiple choice form. The first weekly ""Dodge Horsepower Challenge"" will be announced by professional wrestler Bill Goldberg for challengers to win one sweet Challenger. Each Tuesday, Goldberg will announce the question starting at 8 a.m. ET, and the question will remain through Monday until 11:59 p.m. The answer to the week's question can be found on Dodge.com (following Tuesday) a week after its release at 8 a.m.The challenge offers one clue per day, and this comes in the form of hidden hashtags within an image. The clues will be posted in Dodge's Twitter and Instagram social channels to help with the week's question. You must answer one of the weekly multiple choice questions correctly to be eligible to win the Challenger.""At Dodge, we know that no matter how much horsepower you have, a little more can't hurt. So we're giving all our loyal fans an opportunity to get one of our highest horsepower Challenger models for free,"" said Tim Kuniskis, Global Head of Alfa Romeo and Head of Passenger Cars – Dodge, SRT, Chrysler and FIAT, FCA – North America. ""Unfortunately, there isn't really any such thing as free horsepower, so these five lucky Dodge fans will have to earn their way in by answering a horsepower question. Ok, the questions are ridiculously difficult, but it is a free Challenger SRT Hellcat Redeye, and we'll help you along the way."" For official rules, visit Dodge.com.Source: FCA North America Read More... * It’s Haunting How Much This 275K 2010 Callway Corvette Is Listed For * eBay Find: Jet Powered Batmobile Is A Treat, Not A Trick",http://l2.yimg.com/uu/api/res/1.2/DI4ApBbfYcHRgzJTXAw6Dw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en_us/autoclassics_668/56995ac6789f33211d6cf5314cba09a2,Play To Win A Dodge Challenger Hellcat Redeye With Horsepower Challenge -U.S. Navy Beware! Russian Submarines Surge Into the Atlantic,"Thu, 31 Oct 2019 03:24:00 -0400",https://news.yahoo.com/u-navy-beware-russian-submarines-072400651.html,The Russian navy in mid-October 2019 sortied eight submarines in the country’s biggest undersea exercise since the Cold War.,http://l2.yimg.com/uu/api/res/1.2/bi4TcYlAoP1s_M9PvaD4zQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/the_national_interest_705/723f75445632ef8d61a19a10be6803ae,U.S. Navy Beware! Russian Submarines Surge Into the Atlantic -India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal,"Thu, 31 Oct 2019 08:50:07 -0400",https://news.yahoo.com/india-farmers-plan-nationwide-protest-125007797.html,"(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. India’s farmers’ organizations have planned a nationwide protest on Nov. 4 to demand that the government of Prime Minister Narendra Modi keep agriculture out of a 16-nation trade agreement currently being negotiated in Thailand.The All India Kisan Sangharsh Coordination Committee, an umbrella organization of about 250 farmers unions from across the country, said that they will burn effigies depicting the China-backed Regional Comprehensive Economic Partnership or RCEP, to mark their protest and warn the government.Indian farmers won’t be able to compete should the country agree to cut duties for agricultural and dairy products in the proposed trade pact, said V.M. Singh, a convener of the the farmers’ group. Imports of dairy and agricultural products including wheat, cotton and oil seeds would affect the livelihood of millions of Indian farmers, he said.The government should defer signing of the agreement and hold consultations with farmers, state governments and other stake holders before taking a final decision, said Singh. “We have to stop RCEP,” he said.It is not clear yet what terms India will agree to in order to join what could become the world’s largest trade deal. The final stage of negotiations have begun in Bangkok and Indian trade minister Piyush Goyal will travel for the ministerial meeting there on Nov. 1. The nations are seeking to conclude the negotiations by November end.To contact the reporter on this story: Bibhudatta Pradhan in New Delhi at bpradhan@bloomberg.netTo contact the editors responsible for this story: Ruth Pollard at rpollard2@bloomberg.net, Muneeza Naqvi, Abhay SinghFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l1.yimg.com/uu/api/res/1.2/GF2o4tZmPCtqpE8IuBOemg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/38b9b9b23d04b76ac5ea78347d209b84,India Farmers Plan Nationwide Protest Against 16-Nation Trade Deal -Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start,"Thu, 31 Oct 2019 09:13:07 -0400",https://news.yahoo.com/authorities-identify-fly-creek-jane-131307745.html,"On a chilly February Sunday in 1980, a father and son panning for gold along Fly Creek in Clark County, Washington, kicked up the remains of a human skeleton that appeared to have been buried in a shallow grave. They called the authorities who came to collect the skull and what bones hadn’t been dragged away by animals, and were able to use the remains to construct a facial reconstruction that produced a picture of a teenage girl. Detectives were able to deduce that she died from a cause that did not seem natural. Calls for information, searches through missing persons reports, and detective work turned up nothing. No one seemed to miss the teen, dubbed the ‘Fly Creek Jane Doe,’ and, for the last 40 years, that is as far as the case went–until now.This summer Clark County detectives decided to post a DNA sample from the old remains to the Virginia-based Parabon NanoLabs, a public genealogy database that has had recent success closing old cold cases. The lab found a tie to a distant cousin of a teen named Sandra “Sandy” Renee Morden who said she was last seen in 1977–three years before her skeletal remains were found. Courtesy of Clark County SheriffThe Oregonian then dug up an old birthday announcement that was tied to the case. On April 29, 1977, in the classified section of the paper, a tiny ad appeared that said: “Sandra Renee Morden, Happy 15th Birthday. Love Always—Mom.” Such published greetings were a common way to mark a birthday or anniversary in the era before Facebook and other social media. Morden’s parents were divorced, according to the DNA-linked cousin, who does not want to be named and who provided Clark County cold-case detective Lindsay Schultz with the only clues the teen’s life. Schultz told the Oregonian that Morden was a “latchkey kid” who was mostly “unsupervised.” There is no indication that the parents filed a missing persons report, and, as Schultz says, “We didn’t have [the National Crime Information Center] at that time.” The detective says Morden’s parents came from the San Francisco area and settled in Portland. They split up in the early 1970s, and did not communicate with each other. The girl’s mother, identified as Kathryn Irene Morden, apparently lost custody and the cousin said Sandy most often stayed with her father, identified as Andrew Bain Morden, a Marine Corps veteran who fought in the Korean War. Schultz says she likely fell through the cracks when one parent thought the other had her. She last attended Wilson High School in Portland. Schultz told the Oregonian that the father likely thought she was with her mother. He had left her alone for an extended period of time and when he came back, she was gone, so he assumed she had gone to her mother’s home. “We don’t know for certain,” Schultz says. “We know that’s what family members believe.”Both parents are dead, so there is no way to confirm what either of them knew. Schultz told the Oregonian that it is the birthday greeting that bothers him most. It was posted around the time the extended family says she disappeared. “Was it just a mom who loved her daughter–or did her mom know something and put it out there for that reason?” Schultz said. “It’s one of those two, right? You ponder it. You look at it and you think, ‘What does it mean?’”Now detectives are looking for the missing puzzle pieces. They are calling on anyone who might have any information about Morden, her parents, or how she might have died to contact the Clark County Medical Examiner's Office or Clark County Sheriff's Office Cold Case Tip Line.Read more at The Daily Beast.Got a tip? Send it to The Daily Beast hereGet our top stories in your inbox every day. Sign up now!Daily Beast Membership: Beast Inside goes deeper on the stories that matter to you. Learn more.",http://l1.yimg.com/uu/api/res/1.2/SDZIwGol7i490n6I1E3hMQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/thedailybeast.com/3aad454293f39aeae0ac3a45c8f7da7d,Authorities Identify ‘Fly Creek Jane Doe’ Through DNA and Now the Real Questions Start -Third deadly quake in weeks hits south Philippines,"Thu, 31 Oct 2019 06:25:57 -0400",https://news.yahoo.com/deadly-quake-hits-south-philippines-043327444.html,"A powerful earthquake struck the southern Philippines on Thursday, killing at least five people and sparking searches of seriously damaged buildings that had already been rattled by two previous deadly tremors in recent weeks. The 6.5 magnitude quake hit the island of Mindanao, the US Geological Survey said, causing locals to run to safety in the same area where a strong tremor killed eight people on Tuesday.",http://l1.yimg.com/uu/api/res/1.2/oxJU6vOIe9DkaGFCYNFTBg--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/http://media.zenfs.com/en_us/News/afp.com/7204c1bd2a1dbd11425cb4611ee082b5910fb343.jpg,Third deadly quake in weeks hits south Philippines -Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day,"Thu, 31 Oct 2019 05:04:29 -0400",https://news.yahoo.com/striking-chicago-teachers-press-final-090429999.html,"Chicago Mayor Lori Lightfoot called on the city's teacher's union to embrace a ""spirit of compromise"" as a strike that has kept 300,000 public students away from school extended into an 11th day on Thursday, despite a tentative contract deal. ""Our members are tired, frustrated and miss their students ... we want to return to the classroom,"" Chicago Teachers Union President Jesse Sharkey said in a statement on Thursday. Lightfoot, a first-term Democrat, has rejected the demand for makeup days, and accused the union of reneging on a deal reached Wednesday with the third-largest U.S. school district.",http://l2.yimg.com/uu/api/res/1.2/7h2yexlXJzv_BIJZ2S3mkw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en-US/reuters.com/990aac4bbc2f8cf6d00b65ee291edc50,Chicago mayor seeks 'spirit of compromise' as teachers strike hits 11th day -China responds to reports of U.S. grounding its fleet of Chinese-made drones,"Thu, 31 Oct 2019 10:33:59 -0400",https://news.yahoo.com/china-responds-reports-u-grounding-143359231.html,"China's foreign ministry said on Thursday after reports that the United States Department of the Interior had grounded its fleet of Chinese-made drones that it hoped Washington would ""stop abusing the concept of national security"" and provide a nondiscriminatory atmosphere for Chinese companies.",http://l2.yimg.com/uu/api/res/1.2/7PQM1BUYpSL9xxiFkSHKDQ--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://slick-prod.s3-us-west-2.amazonaws.com/slick_thumb/yahooNews-314557-1572532267028.jpg,China responds to reports of U.S. grounding its fleet of Chinese-made drones -"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy","Thu, 31 Oct 2019 06:46:29 -0400",https://news.yahoo.com/kgb-judged-comrade-v-v-104629972.html,"(Bloomberg) -- Russian President Vladimir Putin was “prompt, disciplined and conscientious” as a spy in the KGB, according to a declassified profile from the Soviet Union’s feared security service.“Comrade V.V. Putin constantly improves his ideological and political standards,” according to the document exhibited at the Central State Archive for Historical-Political Documents of St. Petersburg, the Russian leader’s home city. “He’s actively engaged in party education work.”The profile, which is also on show at a Moscow exhibition of “outstanding figures” of modern Russian history, describes Putin as “morally upstanding” and enjoying “well-deserved authority among colleagues,” noting that he won a judo championship in 1978.Putin joined the KGB in 1975 after graduating from the law faculty of Leningrad State University, located in what’s now St. Petersburg, and served as a spy for more than 15 years until the Soviet Union’s collapse in 1991. Putin asked to become a KGB officer even before he finished school, according to his Kremlin biography, which cites him saying his view of the organization “was based on idealistic stories I heard about intelligence.”He served in Dresden in East Germany from 1985 until 1990, rising to the rank of lieutenant colonel during a largely undistinguished stint, and was awarded a bronze medal for service to the National People’s Army of the German Democratic Republic. He headed the Federal Security Service, the main successor agency of the KGB, in 1998-1999 before President Boris Yeltsin made him prime minister and named Putin as his chosen successor. Putin was elected president in 2000.The KGB’s appraisal of Putin, which appears to be from the late 1970s or early 1980s, was absolutely standard and showed that he hadn’t stood out or achieved anything in particular, according to Alexei Kondaurov, a former KGB general. “Usually we wrote ‘morally upstanding’ when there was nothing else to say,” he said.Still, there’s been “colossal” public interest in the document, shown as part of commemorations of the archive’s 90th anniversary, said Olga Bobrova, deputy head of the institution.To contact the reporters on this story: Irina Reznik in Moscow at ireznik@bloomberg.net;Henry Meyer in Moscow at hmeyer4@bloomberg.netTo contact the editors responsible for this story: Gregory L. White at gwhite64@bloomberg.net, Tony Halpin, Paul AbelskyFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.",http://l.yimg.com/uu/api/res/1.2/kJfS_a3lsxwsLmK3nqmkSw--/YXBwaWQ9eXRhY2h5b247aD04Njt3PTEzMDs-/https://media.zenfs.com/en/bloomberg_politics_602/3343959f3d0120edaf7d32af41ccf2fc,"KGB Judged ‘Comrade V.V. Putin’ a Disciplined, Conscientious Spy" diff --git a/news_feed/news_cash/20191101.csv b/news_feed/news_cash/20191101.csv new file mode 100644 index 0000000..6226a00 --- /dev/null +++ b/news_feed/news_cash/20191101.csv @@ -0,0 +1,5 @@ +title,pubDate,link,description,imageLink,imageDescription +"One year after the Google walkout, key organizers reflect on the risk to their careers","Fri, 01 Nov 2019 20:42:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/7xztEBsGMGk/index.html,Claire Stapleton and Meredith Whittaker staked their careers when they organized the Google walkout in November 2018. It was a risk they felt they had to take.,http://feeds.feedburner.com/~r/rss/edition_world/~4/7xztEBsGMGk, +Russia rolls out its 'sovereign internet',"Fri, 01 Nov 2019 16:21:25 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/vztqGYJG8oY/index.html,"On Friday, a controversial new law took effect in Russia: The so-called ""sovereign internet"" law, which mandates the creation of an independent internet for Russia.",http://feeds.feedburner.com/~r/rss/edition_world/~4/vztqGYJG8oY, +"One year after the Google walkout, key organizers reflect on the risk to their careers","Fri, 01 Nov 2019 20:42:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/7xztEBsGMGk/index.html,Claire Stapleton and Meredith Whittaker staked their careers when they organized the Google walkout in November 2018. It was a risk they felt they had to take.,http://feeds.feedburner.com/~r/rss/edition_world/~4/7xztEBsGMGk, +Russia rolls out its 'sovereign internet',"Fri, 01 Nov 2019 16:21:25 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/vztqGYJG8oY/index.html,"On Friday, a controversial new law took effect in Russia: The so-called ""sovereign internet"" law, which mandates the creation of an independent internet for Russia.",http://feeds.feedburner.com/~r/rss/edition_world/~4/vztqGYJG8oY, diff --git a/news_feed/news_cash/20191104.csv b/news_feed/news_cash/20191104.csv new file mode 100644 index 0000000..12337a6 --- /dev/null +++ b/news_feed/news_cash/20191104.csv @@ -0,0 +1,13 @@ +title,pubDate,link,description,imageLink,imageDescription +New Delhi is choking on smog and there's no end in sight,"Mon, 04 Nov 2019 09:59:11 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/tbjRLXCRMIE/index.html,‱ Air pollution reaches 'unbearable' levels,http://feeds.feedburner.com/~r/rss/edition_world/~4/tbjRLXCRMIE, +World's most profitable company to IPO,"Mon, 04 Nov 2019 10:43:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/WdGBNzqr0Ko/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/WdGBNzqr0Ko, +China perfected fake meat centuries before the Impossible Burger,"Mon, 04 Nov 2019 09:19:17 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gb96p9WE7ow/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/gb96p9WE7ow, +Why US military aid is so crucial to Ukraine,"Mon, 04 Nov 2019 02:48:34 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/YxPYqk6S_S4/ukraine-troops-front-lines-russia-ward-pkg-vpx.cnn,"Following the now infamous phone call between President Trump and Ukrainian President Volodymyr Zelensky, the US temporarily suspended nearly $400 million in military and security aid to Ukraine. CNN's Clarissa Ward reports from the front lines of Ukraine's war with Russia, where forces say the need for military aid is dire.",http://feeds.feedburner.com/~r/rss/edition_world/~4/YxPYqk6S_S4, +China approves seaweed-based Alzheimer's drug. It's the first new one in 17 years,"Mon, 04 Nov 2019 07:55:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/egUv2keeyj8/index.html,"Authorities in China have approved a drug for the treatment of Alzheimer's disease, the first new medicine with the potential to treat the cognitive disorder in 17 years.",http://feeds.feedburner.com/~r/rss/edition_world/~4/egUv2keeyj8, +Tech stocks rally in Asia after news that a Huawei reprieve could come soon,"Mon, 04 Nov 2019 10:57:36 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/RzbapX1NKyg/index.html,"Asian markets edged up on Monday, following last week's gains on Wall Street as well as news of a potential reprieve for Huawei.",http://feeds.feedburner.com/~r/rss/edition_world/~4/RzbapX1NKyg, +New Delhi is choking on smog and there's no end in sight,"Mon, 04 Nov 2019 09:59:11 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/tbjRLXCRMIE/index.html,‱ Air pollution reaches 'unbearable' levels,http://feeds.feedburner.com/~r/rss/edition_world/~4/tbjRLXCRMIE, +World's most profitable company to IPO,"Mon, 04 Nov 2019 10:43:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/WdGBNzqr0Ko/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/WdGBNzqr0Ko, +China perfected fake meat centuries before the Impossible Burger,"Mon, 04 Nov 2019 09:19:17 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gb96p9WE7ow/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/gb96p9WE7ow, +Why US military aid is so crucial to Ukraine,"Mon, 04 Nov 2019 02:48:34 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/YxPYqk6S_S4/ukraine-troops-front-lines-russia-ward-pkg-vpx.cnn,"Following the now infamous phone call between President Trump and Ukrainian President Volodymyr Zelensky, the US temporarily suspended nearly $400 million in military and security aid to Ukraine. CNN's Clarissa Ward reports from the front lines of Ukraine's war with Russia, where forces say the need for military aid is dire.",http://feeds.feedburner.com/~r/rss/edition_world/~4/YxPYqk6S_S4, +China approves seaweed-based Alzheimer's drug. It's the first new one in 17 years,"Mon, 04 Nov 2019 07:55:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/egUv2keeyj8/index.html,"Authorities in China have approved a drug for the treatment of Alzheimer's disease, the first new medicine with the potential to treat the cognitive disorder in 17 years.",http://feeds.feedburner.com/~r/rss/edition_world/~4/egUv2keeyj8, +Tech stocks rally in Asia after news that a Huawei reprieve could come soon,"Mon, 04 Nov 2019 10:57:36 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/RzbapX1NKyg/index.html,"Asian markets edged up on Monday, following last week's gains on Wall Street as well as news of a potential reprieve for Huawei.",http://feeds.feedburner.com/~r/rss/edition_world/~4/RzbapX1NKyg, diff --git a/news_feed/rss_reader.py b/news_feed/rss_reader.py index ecf4337..ed7b109 100644 --- a/news_feed/rss_reader.py +++ b/news_feed/rss_reader.py @@ -5,9 +5,12 @@ from dateutil.parser import parse import lxml.html as html +import lxml.etree as etree import xml.etree.ElementTree as ET + import json import csv +import pandas as pd import argparse @@ -48,7 +51,14 @@ def get_news(self): :return: dictionary of news """ - request = requests.get(self.url) # TODO: catch all errors + try: + request = requests.get(self.url) + except requests.exceptions.MissingSchema: + print(f'Invalid URL: {self.url}. Paste items by yourself.') + return None + + if not request.ok: + raise requests.exceptions.InvalidURL(f'You URL is invalid. Status code: {request.status_code}') if self.verbose: print(request.status_code) # TODO: create understandable error status output @@ -72,7 +82,6 @@ def get_news(self): items.setdefault(num, {}) news_description = dict() - # TODO: set useful_tags as default tags! news_description.setdefault('title', 'no title') news_description.setdefault('pubDate', str(datetime.datetime.today().date())) @@ -107,7 +116,7 @@ def _cash_news(news, dir='news_cash'): :return: None """ - date = NewsReader.get_date(news) + date = NewsReader.get_date(news['pubDate']) date = ''.join(str(date).split('-')) if not os.path.exists(dir): @@ -136,8 +145,8 @@ def read_by_date(date, dir='news_cash'): dates = os.listdir(dir) - if date not in dates: - pass # TODO: raise some exception + if date + '.csv' not in dates: + raise NewsNotFoundError('There is no chased news with such date') path = os.path.join(dir, date + '.csv') with open(path, 'r', encoding='UTF-8') as file: @@ -158,18 +167,20 @@ def read_by_date(date, dir='news_cash'): return items @staticmethod - def get_date(news): + def get_date(news_date): """ Returns date of news publication - :param news: dictionary of given news + :param news: string date from dictionary of given news :return: date of news publication """ - news_date = news['pubDate'] + try: + news_date = parse(news_date) + except ValueError: + print('There is not date. Today\'s has been pasted') + news_date = datetime.datetime.today() - # news_date = datetime.datetime.strptime(date, '%a, %d %b %Y %H:%M:%S %Z') - news_date = parse(news_date) news_date = news_date.date() return news_date @@ -192,6 +203,23 @@ def parse_description(description): return text, image_link, image_text + @staticmethod + def get_description(description): + """ + Remove all tags from raw description and + return just simple news description + + :param description: news description + :return: processed description + """ + + try: + node = html.fromstring(description) + except etree.ParserError: + return '' + + return node.text_content() + @staticmethod def get_image(description): """ @@ -218,20 +246,6 @@ def get_image(description): return image_src, image_description - @staticmethod - def get_description(description): - """ - Remove all tags from raw description and - return just simple news description - - :param description: news description - :return: processed description - """ - - node = html.fromstring(description) - - return node.text_content() - @staticmethod def news_text(news): """ @@ -252,7 +266,7 @@ def news_text(news): return result - def fancy_output(self): + def fancy_output(self, items): """ Output readable information about news from items dictionary @@ -263,7 +277,7 @@ def fancy_output(self): if self.verbose: print('News feed is ready') - for key, value in self.items.items(): + for key, value in items.items(): if key == 'title': print(f'Feed: {value}') else: @@ -287,12 +301,10 @@ def to_json(self): return json_result -# feed = NewsReader(' http://rss.cnn.com/rss/edition_world.rss', limit=None, cashing=True) -# print(feed.read_by_date('20191028')) -# it = feed.items - +feed = NewsReader('http://rss.cnn.com/rss/edition_world.rss', limit=10, cashing=True) +# items = feed.read_by_date('20190607') -# date = datetime.datetime.strptime(date, '%a, %d %b %Y %H:%M:%S %Z') +feed.fancy_output(feed.items) # def main(): # parser = argparse.ArgumentParser(description='Pure Python command-line RSS reader') @@ -306,7 +318,7 @@ def to_json(self): # # # TODO: add flags to output logs # parser.add_argument('--limit', type=int, help='Limit news topics if this parameter provided') -# parser.add_argument('--date', type=datetime.datetime, help='Reads cashed news by date. And output them') +# parser.add_argument('--date', type=str, help='Reads cashed news by date. And output them') # # args = parser.parse_args() # print(args) @@ -319,10 +331,15 @@ def to_json(self): # news = NewsReader(args.source, args.limit, args.verbose) # # print(news.to_json()) +# elif args.date: +# news = NewsReader(args.source, args.limit, args.verbose) +# items = news.read_by_date(args.date) +# +# news.fancy_output(items) # else: # news = NewsReader(args.source, args.limit, args.verbose) # -# news.fancy_output() +# news.fancy_output(news.items) # # # if __name__ == '__main__': diff --git a/news_feed/rss_reader_unittest.py b/news_feed/rss_reader_unittest.py new file mode 100644 index 0000000..06aa7db --- /dev/null +++ b/news_feed/rss_reader_unittest.py @@ -0,0 +1,54 @@ +import unittest +import datetime + +from rss_reader import NewsReader + + +class TestNewsReader(unittest.TestCase): + def setUp(self) -> None: + self.feed = NewsReader(url='no url') + + self.feed.items = {'title': 'CNN.com - RSS Channel - World', + 0: {'title': "New Delhi is choking on smog and there's no end in sight", 'pubDate': 'Mon, 04 Nov 2019 09:59:11 GMT', 'link': 'http://rss.cnn.com/~r/rss/edition_world/~3/tbjRLXCRMIE/index.html', 'description': "‱ Air pollution reaches 'unbearable' levels", 'imageLink': 'http://feeds.feedburner.com/~r/rss/edition_world/~4/tbjRLXCRMIE', 'imageDescription': ''}, + 1: {'title': "World's most profitable company to IPO", 'pubDate': 'Mon, 04 Nov 2019 10:43:39 GMT', 'link': 'http://rss.cnn.com/~r/rss/edition_world/~3/WdGBNzqr0Ko/index.html', 'description': '', 'imageLink': 'http://feeds.feedburner.com/~r/rss/edition_world/~4/WdGBNzqr0Ko', 'imageDescription': ''}, + 2: {'title': 'China perfected fake meat centuries before the Impossible Burger', 'pubDate': 'Mon, 04 Nov 2019 09:19:17 GMT', 'link': 'http://rss.cnn.com/~r/rss/edition_world/~3/gb96p9WE7ow/index.html', 'description': '', 'imageLink': 'http://feeds.feedburner.com/~r/rss/edition_world/~4/gb96p9WE7ow', 'imageDescription': ''}, + 3: {'title': 'Why US military aid is so crucial to Ukraine', 'pubDate': 'Mon, 04 Nov 2019 02:48:34 GMT', 'link': 'http://rss.cnn.com/~r/rss/edition_world/~3/YxPYqk6S_S4/ukraine-troops-front-lines-russia-ward-pkg-vpx.cnn', 'description': "Following the now infamous phone call between President Trump and Ukrainian President Volodymyr Zelensky, the US temporarily suspended nearly $400 million in military and security aid to Ukraine. CNN's Clarissa Ward reports from the front lines of Ukraine's war with Russia, where forces say the need for military aid is dire.", 'imageLink': 'http://feeds.feedburner.com/~r/rss/edition_world/~4/YxPYqk6S_S4', 'imageDescription': ''}, + 4: {'title': "China approves seaweed-based Alzheimer's drug. It's the first new one in 17 years", 'pubDate': 'Mon, 04 Nov 2019 07:55:31 GMT', 'link': 'http://rss.cnn.com/~r/rss/edition_world/~3/egUv2keeyj8/index.html', 'description': "Authorities in China have approved a drug for the treatment of Alzheimer's disease, the first new medicine with the potential to treat the cognitive disorder in 17 years.", 'imageLink': 'http://feeds.feedburner.com/~r/rss/edition_world/~4/egUv2keeyj8', 'imageDescription': ''}, + 5: {'title': 'One year after the Google walkout, key organizers reflect on the risk to their careers', 'pubDate': 'Fri, 01 Nov 2019 20:42:24 GMT', 'link': 'http://rss.cnn.com/~r/rss/edition_world/~3/7xztEBsGMGk/index.html', 'description': 'Claire Stapleton and Meredith Whittaker staked their careers when they organized the Google walkout in November 2018. It was a risk they felt they had to take.', 'imageLink': 'http://feeds.feedburner.com/~r/rss/edition_world/~4/7xztEBsGMGk', 'imageDescription': ''}, + 6: {'title': 'Tech stocks rally in Asia after news that a Huawei reprieve could come soon', 'pubDate': 'Mon, 04 Nov 2019 10:57:36 GMT', 'link': 'http://rss.cnn.com/~r/rss/edition_world/~3/RzbapX1NKyg/index.html', 'description': "Asian markets edged up on Monday, following last week's gains on Wall Street as well as news of a potential reprieve for Huawei.", 'imageLink': 'http://feeds.feedburner.com/~r/rss/edition_world/~4/RzbapX1NKyg', 'imageDescription': ''}, + 7: {'title': "They're recycling plastic milk bottles to build roads", 'pubDate': 'Wed, 30 Oct 2019 10:28:31 GMT', 'link': 'http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html', 'description': 'Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.', 'imageLink': 'http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M', 'imageDescription': ''}, + 8: {'title': "Russia rolls out its 'sovereign internet'", 'pubDate': 'Fri, 01 Nov 2019 16:21:25 GMT', 'link': 'http://rss.cnn.com/~r/rss/edition_world/~3/vztqGYJG8oY/index.html', 'description': 'On Friday, a controversial new law took effect in Russia: The so-called "sovereign internet" law, which mandates the creation of an independent internet for Russia.', 'imageLink': 'http://feeds.feedburner.com/~r/rss/edition_world/~4/vztqGYJG8oY', 'imageDescription': ''}, + 9: {'title': "US cities are losing 36 million trees a year. Here's why it matters ", 'pubDate': 'Wed, 18 Sep 2019 16:44:32 GMT', 'link': 'http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html', 'description': "If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.", 'imageLink': 'http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8', 'imageDescription': ''}} + + def test_get_date(self): + date_0 = str(self.feed.get_date(self.feed.items[0]['pubDate'])) + res_date_0 = str(datetime.datetime.today().date()) + self.assertEqual(date_0, res_date_0) + + date_1 = str(self.feed.get_date(self.feed.items[1]['pubDate'])) + res_date_1 = '2019-11-04' + self.assertEqual(date_1, res_date_1) + + date_7 = str(self.feed.get_date(self.feed.items[7]['pubDate'])) + res_date_7 = '2019-10-30' + self.assertEqual(date_7, res_date_7) + + def test_get_description(self): + description_0 = self.feed.get_description(self.feed.items[0]['description']) + res_description_0 = '‱ Air pollution reaches \'unbearable\' levels' + self.assertEqual(description_0, res_description_0) + + description_1 = self.feed.get_description(self.feed.items[1]['description']) + res_description_1 = '' + self.assertEqual(description_1, res_description_1) + + description_9 = self.feed.get_description(self.feed.items[9]['description']) + res_description_9 = 'If you\'re looking for a reason to care about tree loss, ' \ + 'the nation\'s latest heat wave might be it. Trees can ' \ + 'lower summer daytime temperatures by as much as 10 degrees ' \ + 'Fahrenheit, according to a recent study.' + self.assertEqual(description_9, res_description_9) + + +if __name__ == '__main__': + unittest.main() diff --git a/setup.py b/setup.py index 824ca24..a52ff66 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ ] }, - install_requires=['lxml>=4.3.0', 'dateutil'], + install_requires=['lxml>=4.3.0', 'dateutil', 'requests'], python_requires='>=3.6' ) From cf20974be7e7d50be521b5b6c8fde7704b2904dd Mon Sep 17 00:00:00 2001 From: vadbeg Date: Mon, 4 Nov 2019 17:03:28 +0300 Subject: [PATCH 10/11] News cashing without news repeating was added using pandas library --- news_feed/news_cash/20190918.csv | 3 --- news_feed/news_cash/20191030.csv | 3 --- news_feed/news_cash/20191101.csv | 5 ----- news_feed/news_cash/20191104.csv | 13 ------------- news_feed/rss_reader.py | 21 +++++++++++++++------ setup.py | 2 +- 6 files changed, 16 insertions(+), 31 deletions(-) delete mode 100644 news_feed/news_cash/20190918.csv delete mode 100644 news_feed/news_cash/20191030.csv delete mode 100644 news_feed/news_cash/20191101.csv delete mode 100644 news_feed/news_cash/20191104.csv diff --git a/news_feed/news_cash/20190918.csv b/news_feed/news_cash/20190918.csv deleted file mode 100644 index cb3e0ba..0000000 --- a/news_feed/news_cash/20190918.csv +++ /dev/null @@ -1,3 +0,0 @@ -title,pubDate,link,description,imageLink,imageDescription -US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, -US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, diff --git a/news_feed/news_cash/20191030.csv b/news_feed/news_cash/20191030.csv deleted file mode 100644 index e4dd24b..0000000 --- a/news_feed/news_cash/20191030.csv +++ /dev/null @@ -1,3 +0,0 @@ -title,pubDate,link,description,imageLink,imageDescription -They're recycling plastic milk bottles to build roads,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, -They're recycling plastic milk bottles to build roads,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, diff --git a/news_feed/news_cash/20191101.csv b/news_feed/news_cash/20191101.csv deleted file mode 100644 index 6226a00..0000000 --- a/news_feed/news_cash/20191101.csv +++ /dev/null @@ -1,5 +0,0 @@ -title,pubDate,link,description,imageLink,imageDescription -"One year after the Google walkout, key organizers reflect on the risk to their careers","Fri, 01 Nov 2019 20:42:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/7xztEBsGMGk/index.html,Claire Stapleton and Meredith Whittaker staked their careers when they organized the Google walkout in November 2018. It was a risk they felt they had to take.,http://feeds.feedburner.com/~r/rss/edition_world/~4/7xztEBsGMGk, -Russia rolls out its 'sovereign internet',"Fri, 01 Nov 2019 16:21:25 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/vztqGYJG8oY/index.html,"On Friday, a controversial new law took effect in Russia: The so-called ""sovereign internet"" law, which mandates the creation of an independent internet for Russia.",http://feeds.feedburner.com/~r/rss/edition_world/~4/vztqGYJG8oY, -"One year after the Google walkout, key organizers reflect on the risk to their careers","Fri, 01 Nov 2019 20:42:24 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/7xztEBsGMGk/index.html,Claire Stapleton and Meredith Whittaker staked their careers when they organized the Google walkout in November 2018. It was a risk they felt they had to take.,http://feeds.feedburner.com/~r/rss/edition_world/~4/7xztEBsGMGk, -Russia rolls out its 'sovereign internet',"Fri, 01 Nov 2019 16:21:25 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/vztqGYJG8oY/index.html,"On Friday, a controversial new law took effect in Russia: The so-called ""sovereign internet"" law, which mandates the creation of an independent internet for Russia.",http://feeds.feedburner.com/~r/rss/edition_world/~4/vztqGYJG8oY, diff --git a/news_feed/news_cash/20191104.csv b/news_feed/news_cash/20191104.csv deleted file mode 100644 index 12337a6..0000000 --- a/news_feed/news_cash/20191104.csv +++ /dev/null @@ -1,13 +0,0 @@ -title,pubDate,link,description,imageLink,imageDescription -New Delhi is choking on smog and there's no end in sight,"Mon, 04 Nov 2019 09:59:11 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/tbjRLXCRMIE/index.html,‱ Air pollution reaches 'unbearable' levels,http://feeds.feedburner.com/~r/rss/edition_world/~4/tbjRLXCRMIE, -World's most profitable company to IPO,"Mon, 04 Nov 2019 10:43:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/WdGBNzqr0Ko/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/WdGBNzqr0Ko, -China perfected fake meat centuries before the Impossible Burger,"Mon, 04 Nov 2019 09:19:17 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gb96p9WE7ow/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/gb96p9WE7ow, -Why US military aid is so crucial to Ukraine,"Mon, 04 Nov 2019 02:48:34 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/YxPYqk6S_S4/ukraine-troops-front-lines-russia-ward-pkg-vpx.cnn,"Following the now infamous phone call between President Trump and Ukrainian President Volodymyr Zelensky, the US temporarily suspended nearly $400 million in military and security aid to Ukraine. CNN's Clarissa Ward reports from the front lines of Ukraine's war with Russia, where forces say the need for military aid is dire.",http://feeds.feedburner.com/~r/rss/edition_world/~4/YxPYqk6S_S4, -China approves seaweed-based Alzheimer's drug. It's the first new one in 17 years,"Mon, 04 Nov 2019 07:55:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/egUv2keeyj8/index.html,"Authorities in China have approved a drug for the treatment of Alzheimer's disease, the first new medicine with the potential to treat the cognitive disorder in 17 years.",http://feeds.feedburner.com/~r/rss/edition_world/~4/egUv2keeyj8, -Tech stocks rally in Asia after news that a Huawei reprieve could come soon,"Mon, 04 Nov 2019 10:57:36 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/RzbapX1NKyg/index.html,"Asian markets edged up on Monday, following last week's gains on Wall Street as well as news of a potential reprieve for Huawei.",http://feeds.feedburner.com/~r/rss/edition_world/~4/RzbapX1NKyg, -New Delhi is choking on smog and there's no end in sight,"Mon, 04 Nov 2019 09:59:11 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/tbjRLXCRMIE/index.html,‱ Air pollution reaches 'unbearable' levels,http://feeds.feedburner.com/~r/rss/edition_world/~4/tbjRLXCRMIE, -World's most profitable company to IPO,"Mon, 04 Nov 2019 10:43:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/WdGBNzqr0Ko/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/WdGBNzqr0Ko, -China perfected fake meat centuries before the Impossible Burger,"Mon, 04 Nov 2019 09:19:17 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gb96p9WE7ow/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/gb96p9WE7ow, -Why US military aid is so crucial to Ukraine,"Mon, 04 Nov 2019 02:48:34 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/YxPYqk6S_S4/ukraine-troops-front-lines-russia-ward-pkg-vpx.cnn,"Following the now infamous phone call between President Trump and Ukrainian President Volodymyr Zelensky, the US temporarily suspended nearly $400 million in military and security aid to Ukraine. CNN's Clarissa Ward reports from the front lines of Ukraine's war with Russia, where forces say the need for military aid is dire.",http://feeds.feedburner.com/~r/rss/edition_world/~4/YxPYqk6S_S4, -China approves seaweed-based Alzheimer's drug. It's the first new one in 17 years,"Mon, 04 Nov 2019 07:55:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/egUv2keeyj8/index.html,"Authorities in China have approved a drug for the treatment of Alzheimer's disease, the first new medicine with the potential to treat the cognitive disorder in 17 years.",http://feeds.feedburner.com/~r/rss/edition_world/~4/egUv2keeyj8, -Tech stocks rally in Asia after news that a Huawei reprieve could come soon,"Mon, 04 Nov 2019 10:57:36 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/RzbapX1NKyg/index.html,"Asian markets edged up on Monday, following last week's gains on Wall Street as well as news of a potential reprieve for Huawei.",http://feeds.feedburner.com/~r/rss/edition_world/~4/RzbapX1NKyg, diff --git a/news_feed/rss_reader.py b/news_feed/rss_reader.py index ed7b109..ec70e2c 100644 --- a/news_feed/rss_reader.py +++ b/news_feed/rss_reader.py @@ -119,18 +119,27 @@ def _cash_news(news, dir='news_cash'): date = NewsReader.get_date(news['pubDate']) date = ''.join(str(date).split('-')) + values = list(news.values()) + column_names = list(news.keys()) + + data_temp = pd.DataFrame(data=[values], columns=column_names) + if not os.path.exists(dir): os.mkdir(dir) path = os.path.join(dir, date + '.csv') - with open(path, 'a', newline='', encoding='UTF-8') as file: - csv_writer = csv.writer(file, delimiter=',', - quotechar='"', quoting=csv.QUOTE_MINIMAL) - if os.path.getsize(path) == 0: - csv_writer.writerow(news.keys()) + if os.path.isfile(path): # If file exists -> load it into dataframe + data = pd.read_csv(path) + else: + data = pd.DataFrame(columns=column_names) + + is_unique = data_temp.isin(data['title']).sum().sum() + print(is_unique) - csv_writer.writerow(news.values()) + if not is_unique: + data = data.append(data_temp) + data.to_csv(path, index=False) @staticmethod def read_by_date(date, dir='news_cash'): diff --git a/setup.py b/setup.py index a52ff66..f0e53f9 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ ] }, - install_requires=['lxml>=4.3.0', 'dateutil', 'requests'], + install_requires=['lxml>=4.3.0', 'dateutil', 'requests', 'pandas'], python_requires='>=3.6' ) From 6b76c02950bff52ecb86476ec794f75db687e4f3 Mon Sep 17 00:00:00 2001 From: Vadim Titko Date: Tue, 5 Nov 2019 12:25:11 +0300 Subject: [PATCH 11/11] .gitignore was added --- .gitignore | 33 ++ .../format_converter.cpython-37.pyc | Bin 0 -> 6668 bytes .../__pycache__/rss_reader.cpython-37.pyc | Bin 6639 -> 8939 bytes news_feed/format_converter.py | 11 +- news_feed/news.pdf | Bin 187841 -> 33447 bytes news_feed/news2.html | 360 ++++++++++++++++++ news_feed/news2.pdf | Bin 0 -> 33447 bytes news_feed/news_cash/20190712.csv | 2 + news_feed/news_cash/20190918.csv | 2 + news_feed/news_cash/20191030.csv | 2 + news_feed/news_cash/20191103.csv | 2 + news_feed/news_cash/20191104.csv | 17 + news_feed/rss_reader.py | 119 ++++-- 13 files changed, 496 insertions(+), 52 deletions(-) create mode 100644 .gitignore create mode 100644 news_feed/__pycache__/format_converter.cpython-37.pyc create mode 100644 news_feed/news2.html create mode 100644 news_feed/news2.pdf create mode 100644 news_feed/news_cash/20190712.csv create mode 100644 news_feed/news_cash/20190918.csv create mode 100644 news_feed/news_cash/20191030.csv create mode 100644 news_feed/news_cash/20191103.csv create mode 100644 news_feed/news_cash/20191104.csv diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e763b68 --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ + +# Don't track content of these folders +node_modules/ +someOtherfoler/ +.idea/ + +# Compiled source # +################### +*.com +*.class +*.dll +*.exe +*.o +*.so + +*.so + +# Packages # +############ +# it's better to unpack these files and commit the raw source +# git has its own built in compression methods +*.7z +*.dmg +*.gz +*.iso +*.jar +*.rar +*.tar +*.zip +*.jpg +*.csv +*.html +*.pdf diff --git a/news_feed/__pycache__/format_converter.cpython-37.pyc b/news_feed/__pycache__/format_converter.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f2395cb55a1fc11d9b8c62270fec3136416c3c8e GIT binary patch literal 6668 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 literal 0 HcmV?d00001 diff --git a/news_feed/__pycache__/rss_reader.cpython-37.pyc b/news_feed/__pycache__/rss_reader.cpython-37.pyc index 344688c4fe570f6ee76e41fad147c25b1bcd35da..78991ac2a6f8e88735ccff56ef39721debdab0e8 100644 GIT binary patch literal 8939 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 LjF-LN@y!1L3sYzG delta 3042 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 a$a#2pBHcZY@DGK+KoS66US%B>!2bacW}6}a literal 187841 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∈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

~gN2zb?P1 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 diff --git a/news_feed/news2.html b/news_feed/news2.html new file mode 100644 index 0000000..342889c --- /dev/null +++ b/news_feed/news2.html @@ -0,0 +1,360 @@ + + + + + +

Yahoo News - Latest News & Headlines

+ +

Children were told to ‘build the wall’ at White House Halloween party

+

Date: Sat, 02 Nov 2019 11:30:53 -0400

+
News link +

A Halloween party on Oct. 25 at the Eisenhower Executive Office Building in D.C. featured candy, paper airplanes — and concerning for some attendees — a station where children were encouraged to help “Build the Wall” with their own personalized bricks.

+ No image +

Image description: Children were told to ‘build the wall’ at White House Halloween party

+ +

November 9, 1989: A day that changed the world

+

Date: Sun, 03 Nov 2019 21:47:51 -0500

+ News link +

Guenter Schabowski scratches his head, puts on his glasses, hesitates, then fumbles with his handwritten notes. A member of the Politburo of East Germany's communist party, and its spokesman, this member of the inner ruling circle of the "workers' and peasants' state", as the German Democratic Republic was known, just announced to a few flabbergasted journalists the fall of the Berlin Wall. Was it the result of a misunderstanding in the communist hierarchy, caught flat-footed by events, or a calculated gesture by the East German dictatorship which had reached the end of the line?

+ No image +

Image description: November 9, 1989: A day that changed the world

+ +

China is reportedly sending men to sleep in the same beds as Uighur Muslim women while their husbands are in prison camps

+

Date: Mon, 04 Nov 2019 09:03:10 -0500

+ News link +

China is waging a hardline campaign against the Uighur ethnic minority, which has seen more than 1 million people detained in prison camps.

+ No image +

Image description: China is reportedly sending men to sleep in the same beds as Uighur Muslim women while their husbands are in prison camps

+ +

Missing New Hampshire couple found buried on Texas beach, sheriff's office says

+

Date: Sun, 03 Nov 2019 17:07:15 -0500

+ News link +

Missing New Hampshire couple James and Elaine Bulter were found dead, buried on a beach in Kleberg County, Texas in an ongoing homicide investigation.

+ No image +

Image description: Missing New Hampshire couple found buried on Texas beach, sheriff's office says

+ +

Judge blocks Trump rule requiring prospective immigrants have health insurance

+

Date: Sat, 02 Nov 2019 18:48:10 -0400

+ News link +

Judge Michael Simon in U.S. District Court in Portland, Oregon, granted a 28-day temporary restraining order that prevents the rule from taking effect on Nov. 3. The legal challenge against it will continue. In an 18-page order, Simon said the potential damage to would-be immigrants and their families justified a nationwide block.

+ No image +

Image description: Judge blocks Trump rule requiring prospective immigrants have health insurance

+ +

The U.S. Military is Sending Thousands of Troops and Even B-1 Bombers into Saudi Arabia (To Counter Iran)

+

Date: Sun, 03 Nov 2019 03:30:00 -0500

+ News link +

And that is just for starters.

+ No image +

Image description: The U.S. Military is Sending Thousands of Troops and Even B-1 Bombers into Saudi Arabia (To Counter Iran)

+ +

‘Not our mission’: private fire crews protect the insured, not the public

+

Date: Sun, 03 Nov 2019 06:00:22 -0500

+ News link +

Agencies hired to protect assets look like first responders but, if a fire puts them in danger, they can become a liabilityFirefighters work to defend homes from an approaching wildfire in Sonoma, California. Photograph: Jim Urquhart/ReutersThe engines, big and small, came from all over the country to fight the Kincade fire in the Sonoma county wine region of California. There were trucks from Nevada, South Dakota, Colorado – and from the wildfire protection unit of home insurer AIG.As fires have increasingly encroached on development in California’s wildlands in recent years, communities are grappling with a new paradigm of risk. If the fire creates an existential crisis for people living in high-risk areas, it also creates one for the companies that insure their homes.Insurers of houses, timber and agriculture have contracted with private firefighting agencies for decades. But now, thanks to longer, more devastating fire seasons, the business is booming.While some wealthy communities and individuals have contracted their own private firefighting services to defend mansions on hilltops from flying embers, the majority of these agencies work on behalf of insurance companies. And as fire risk extends to more homes in California’s flammable brushland and forest, these crews are becoming a fixture in middle class neighborhoods. It is something of a return to a pre-American civil war model of pay-for-play firefighting, before the government employed first responders.Firefighters protect a Pacific Palisades area home in Los Angeles from the flames of a wildfire. Photograph: Christian Monterrosa/Associated Press“Any policyholder that would like to have wildfire services, all they need to do is shop from more than a dozen insurers out there that have these services,” said David Torgerson, president of Wildfire Defense Systems, a private firefighting firm. “It’s not a special policy. It’s not something that’s exclusive. It’s something that the insurance industry has found brings value.”Insured losses for the 2018 California wildfire season topped $12bn. Insurance companies are looking for any way to reduce payouts in the future, whether by raising rates, dropping coverage, or putting new risk mitigation measures into place – including, in some cases, these kinds of private fire crews.The services they provide focus primarily on fire prevention mitigation – cutting back vegetation, creating clear defensible space around structures and providing consultations on other home hardening work. As in the Kincade fire, private crews also sometimes access mandatory evacuation zones during active wildfires to protect valuable assets while the embers are flying – a move that makes some government firefighters and local authorities uneasy.“Generally speaking, from our perspective, we have found that private fire crews are not first responders,” said Carroll Wills, communications director for California Professional Firefighters.Firefighters watch from a home in the Pacific Palisades area as a helicopter drops water on a wildfire. Photograph: Christian Monterrosa/Associated PressPrivate fire crews travel into evacuation zones in trucks equipped with water tanks and hoses and retardant, looking nearly identical to their government counterparts – though their sole task is to protect specific insured homes.Torgerson, president of Wildfire Defense Systems, noted that while his teams are capable of fighting fires, “that’s not our mission in this case”.“Our task with the insurance industry is more so to prepare the homes and secure them, prior to and after the fire, and contribute to the survivability,” he said.“Our [wildfire protection unit] teams are not private firefighters,” said Matt Gallagher, a spokesman for AIG – yet they station engines with full tanks in evacuation zones during wildfires that can turn dangerous within seconds.Lawmakers grew concerned that civilians would see these private engines and get a false sense of security about remaining in evacuation zones. Government firefighters voiced complaints about rolling onto a scene, believing the area to be fully evacuated, only to find private fire crews who had not alerted incident command.In the 2018 Woolsey fire, Kim Kardashian famously hired private firefighters to save her $50m Calabasas mansion – a crew that, said Wills, never told anyone of their plans. “That’s just incredibly dangerous,” Wills said. A helicopter drops water on a brush fire during the Woolsey Fire in Malibu, California. Photograph: Ringo HW Chiu/Associated PressPrior to the 2018 fire season, California lawmakers passed a bill requiring private crews to alert public incident command and obtain permission before entering an evacuation zone. The law codified a best-practice guideline put in place in 2008. Torgerson, who founded his company that same year, said his company has always followed these directives, and will continue to do so now that the law is in effect.“We’ve responded to more than 650 wildfires since 2008, and more than 97% of the time, we’ve been granted access to the evacuation zones to conduct these insurance missions,” he said. “We’ve coordinated with hundreds of incident command teams.”Torgerson said he does not know why his crews were not permitted 3% of the time.“We’re fully qualified under state and federal certification and training processes,” he said. “We are the same resources that the federal government hires.”But their mission is fundamentally different. Government firefighters are tasked with saving life, first and foremost, so if the fires turn and the private crews require rescue, “they are a liability”, Wills said.“We understand that when people see these massive fires, there’s a tendency to say, ‘Well, more is better’,” Wills said. “From our perspective, more really isn’t better. The more that we need is more fully trained and battle-tested, front-line firefighters and emergency responders.”

+ No image +

Image description: ‘Not our mission’: private fire crews protect the insured, not the public

+ +

Smugglers reportedly cutting holes in border wall

+

Date: Sat, 02 Nov 2019 13:05:09 -0400

+ News link +

Smuggling gangs in Mexico are reportedly using power tools to cut large holes in walls at the southern U.S.-Mexico border, according to a new report from the Washington Post.

+ No image +

Image description: Smugglers reportedly cutting holes in border wall

+ +

Indian capital Delhi diverts flights and restricts cars as millions endure 'eye-burning' smog

+

Date: Mon, 04 Nov 2019 05:18:26 -0500

+ News link +

New Delhi banned half the Indian capital's private cars from its roads on Monday as the megacity's 20 million people spluttered with stinging eyes in the worst pollution in three years. As smog levels exceeded those of Beijing by more than three times, authorities also parked a van with an air purifier near the Taj Mahal - the iconic 17th-century marble mausoleum 250 kilometres (150 miles) south of Delhi - in a bid to clean the air in its surroundings, the Press Trust of India reported. With the pollution causing a rush of respiratory complaints at hospitals and the diversion of 37 flights on Sunday, a new law came into effect restricting cars from the capital's roads to alternative days, depending on if their number plate ends in an odd or even number. More than 600 police teams were deployed at road intersections in the capital with the power to hand out fines of 4,000 rupees (£44) to transgressors Exempt from the restrictions were Delhi's seven million motorbikes and scooters, public transport and cars carrying only women, stoking criticism that the measures were ineffective. The toxic smog is visible over the old quarter of Delhi Credit: Javed Sultan/Anadolu Agency via Getty Images "There is smoke everywhere and people, including youngsters, kids, elderly are finding it difficult to breathe," Delhi's chief minister Arvind Kejriwal said in a Twitter video. "Eyes are burning. Pollution is that bad." Construction was banned temporarily late last week in the world's most polluted capital city, while schools have been closed until Wednesday, with the city government handing out free pollution masks to children. "I have a headache every day I wake up. It's suffocating to breathe sometimes. And inflammation in the nostrils and all. And eyes also. Like it kind of burns," Ankusha Kushi, a student, told AFP. As Delhiites woke up on Monday, levels of particulates measuring less than 2.5 microns - so tiny they enter deep into the respiratory tract - were at 613 micrograms per cubic metre of air, according to the US embassy in Delhi. The government will distribute pollution masks to all Delhi school students Credit:  RAJAT GUPTA/EPA-EFE/REX The World Health Organisation's recommended safe daily maximum is a reading of 25. In central Delhi, the state air quality institute rated levels of the tiny particulates - which can be deadly over the long term - as "severe". Bollywood megastar Priyanka Chopra Jonas posted a selfie in pollution mask on Instagram and said it was "hard to shoot" in Delhi. "I can't even imagine what it must be like to live here under these conditions. We r blessed with air purifiers and masks. Pray for the homeless," she posted. A man wearing a pollution mask sweeps a street with a broom in the old quarters of New Delhi  Credit: LAURENE BECQUART/AFP via Getty Images Fourteen Indian cities including the capital are among the world's top 15 most polluted cities, according to the World Health Organization. One study last year said that a million Indians died prematurely every year as a result. With a state election due in Delhi in early 2020, the crisis has also become a casualty of political bickering, with each side blaming the other. Mr Kejriwal, who likened Delhi to a "gas chamber" on Friday, said the city had done its part to curb pollution and that the burning of wheat stubble residue on farms outside the capital had to be stopped.

+ No image +

Image description: Indian capital Delhi diverts flights and restricts cars as millions endure 'eye-burning' smog

+ +

‘We'll see what happens’: Trump refuses to rule out government shutdown if Democrats continue impeachment inquiry

+

Date: Sun, 03 Nov 2019 17:29:49 -0500

+ News link +

Donald Trump has refused to rule out forcing a government shutdown if Democrats do not stop their impeachment inquiry into him."We'll see what happens," the US president said when asked about the possibility of agencies being shuttered.

+ No image +

Image description: ‘We'll see what happens’: Trump refuses to rule out government shutdown if Democrats continue impeachment inquiry

+ +

Vietnam arrests eight over UK truck deaths

+

Date: Mon, 04 Nov 2019 05:06:38 -0500

+ News link +

Vietnam has arrested eight more people in connection with the deaths of 39 people found in a truck in Britain who are believed to be Vietnamese, police said Monday. Eight women and 31 men were found in a refrigerated lorry in an industrial park in Essex, east of London last month, in a case that has shaken Britain and exposed the deadly risks of illegal migration from Vietnam into Europe. British police initially said the victims were Chinese, but several Vietnamese families came forward to say they feared their relatives were on the truck.

+ No image +

Image description: Vietnam arrests eight over UK truck deaths

+ +

Time ticks away at wild bison genetic diversity

+

Date: Sun, 03 Nov 2019 11:38:14 -0500

+ News link +

Evidence is mounting that wild North American bison are gradually shedding their genetic diversity across many of the isolated herds overseen by the U.S. government, weakening future resilience against disease and climate events in the shadow of human encroachment. The extent of the creeping threat to herds overseen by the Department of Interior — the backbone of wild bison conservation efforts for North America — is coming into sharper focus amid advances in genetic studies. It does not include Yellowstone National Park's herd of some 5,000 unfenced bison, the largest federal conservation herd that's seen by millions of people who visit the park annually.

+ No image +

Image description: Time ticks away at wild bison genetic diversity

+ +

Pregnant Florida Woman Kills Home Intruder with AR-15

+

Date: Mon, 04 Nov 2019 08:58:00 -0500

+ News link +

A pregnant woman is being celebrated as a hero for using an AR-15 rifle to save the lives of her husband and 11-year-old daughter after two men broke into the family's home Wednesday night.Two masked intruders broke into the Lithia, Florida home close to 9pm on Wednesday. One of the men grabbed the couple's 11-year-old daughter while both men violently attacked her father, Jeremy King. One of the men pistol-whipped him, and the other kicked him in the head several times, King said.“As soon as they had got the back door opened, they had a pistol on me and was grabbing my 11-year-old daughter,” King told Bay News 9.His wife, who is more than eight-months pregnant, peeked out of the back bedroom during the incident, at which point King said one of the intruders shot at her. She then retrieved the AR-15 and shot at the intruder, clipping him, according to King.“He made it from my back door to roughly 200 feet out in the front ditch before the AR did its thing,” King said.Authorities found the body of a man in a ditch nearby the house. King meanwhile said he has a fractured eye socket, fractured sinus cavity, a concussion, 20 stitches and three staples in his head.“Them guys came in with two normal pistols and my AR stopped it," King said, adding that his wife had "evened the playing field and kept them from killing me.”The AR-15 rifle was in the home legally, according to the Hillsborough County Sheriff’s Office.

+ No image +

Image description: Pregnant Florida Woman Kills Home Intruder with AR-15

+ +

Myanmar ethnic rebels release Indians held in Rakhine after one dies

+

Date: Mon, 04 Nov 2019 03:23:29 -0500

+ News link +

Ethnic rebels in Myanmar have detained and interrogated a lawmaker and several Indian nationals, one of whom died, the rebels said on Monday, in the latest escalation of violence in the restive western state of Rakhine. Tens of thousands of people have been displaced across Rakhine since clashes began in December, bringing fresh chaos to the region, from which more than 730,000 Rohingya Muslims fled a military crackdown in 2017. Sunday's incident was the first time foreigners have been abducted in the fighting between government troops and the Arakan Army, an ethnic armed group that recruits from the mostly Buddhist local majority in its quest for greater state autonomy.

+ No image +

Image description: Myanmar ethnic rebels release Indians held in Rakhine after one dies

+ +

The World's Most Powerful Navies Of 2030 Won't Look Like Those Of Today

+

Date: Sun, 03 Nov 2019 13:00:00 -0500

+ News link +

Who will hold the number 1 spot?

+ No image +

Image description: The World's Most Powerful Navies Of 2030 Won't Look Like Those Of Today

+ +

Saudi Arabia officially kicked off Saudi Aramco's IPO, which could be the largest in the world

+

Date: Sun, 03 Nov 2019 10:51:49 -0500

+ News link +

Saudi Aramco's public listing is a major part of the kingdom's economic plans going forward. The Tadawul All Share Index fell 2.4% on the news.

+ No image +

Image description: Saudi Arabia officially kicked off Saudi Aramco's IPO, which could be the largest in the world

+ +

Iraq’s Top Cleric Warns Iran to Stay Out

+

Date: Mon, 04 Nov 2019 09:29:03 -0500

+ News link +

(Bloomberg Opinion) -- To understand what Iraq’s Grand Ayatollah Ali al-Sistani is saying, you have to translate him twice: first from Arabic to English, then from politesse to plain-speak. In the first translation, a key passage from his Friday sermon in the holy city of Karbala went like this: “No person or group, no side with a particular view, no regional or international actor may seize the will of the Iraqi people and impose its will on them.”The second translation: “Back off, Khamenei!”That is how it would have sounded to Sistani’s audience in Karbala, where it was read out for the ailing octogenarian by an aide; in the streets of Baghdad and other Iraqi cities, where a bloody crackdown on largely peaceful protesters has taken more than 200 lives; in the Iraqi parliament, where lawmakers are negotiating a response to the demonstrations; and in Tehran, where Supreme Leader Ali Khamenei has been struggling to respond to the rising anti-Iran sentiment that undergirds uprisings in Iraq and Lebanon.Khamenei has unleashed Iran’s proxies in the streets — Hezbollah in Lebanon, and Shiite militias in Iraq — to intimidate the protesters. He has also dispatched his chief enforcer, the Iranian Revolutionary Guards Corps commander Qassem Soleimani, to the Iraqi parliament, to rally Shiite parties behind the feckless Prime Minister Adel Abdul-Mahdi.But if anything, these responses will only fan the anger in the streets against Iranian interference in Iraqi and Lebanese politics. Not even Khamenei, who is practiced in the art of ignoring popular resentment, can have failed to notice the anti-Iran slogans echoing through Iraqi cities. Nor will it have escaped his attention that the loudest chanting comes from Iraqi Shiites, a community he expects to favor his Islamic Republic.  The Supreme Leader’s anxiety was palpable in his tweets on Thursday, when he tried to blame Tehran’s usual suspects — “the U.S., the Zionist regime, some Western countries, and the money of some reactionary countries” — for the protests.Sistani’s sermon was a riposte, designed to set Khamenei right. Although born in Iran, he is no fan of Khamenei and other hardliners in Tehran, preferring the likes of President Hassan Rouhani.Iraq’s Grand Ayatollah has been in a quandary over the protests. Every Iraqi government since 2005 has had his personal imprimatur: His word has united factions among the Shiite majority. Prime Minister Abdul-Mahdi, too, has his blessing. As such, Sistani is complicit in the corruption and ineptitude that have brought the Iraqis into the streets.His early pronouncements on the protests vacillated between bromides against corruption and calls on the protesters to abjure violence. But as the demonstrations have persisted, Sistani has grown progressively more critical of the government, blaming it for the violence.His Friday sermon puts him squarely on the protesters’ side. In addition to interfering Iranians, the leaders who have long benefited from his validation came under attack. As the politicians in Baghdad struggle to devise a response that will satisfy angry Iraqis, the so-called sage of Najaf warned that Iraqis have a right to a “referendum on the constitution” to change how they are governed. By invoking the prospect of a referendum, Sistani may have given the protesters a new focus for their energies, and Iraqi politicians a way to break the toxic pattern of inconclusive elections and compromise prime ministers. Much will depend on the reaction of another cleric, Moqtada al-Sadr, who has also taken the protesters’ side — even joining them in the streets — and has called for Abdul-Mahdi’s removal.Sadr, frequently described as a firebrand, has little in common with the preternaturally placid Sistani. But the prospect of the protests being led by one and backed by the other is certain to rattle turbaned heads in Tehran. And if Sistani and Sadr were to throw their combined weight behind demands for a referendum — and who knows, maybe even inspire emulation by the Lebanese — that might be the stuff of Khamenei’s nightmares.(Corrects photograph of Grand Ayatollah al-Sistani in article published Nov. 2.)To contact the author of this story: Bobby Ghosh at aghosh73@bloomberg.netTo contact the editor responsible for this story: James Gibney at jgibney5@bloomberg.netThis column does not necessarily reflect the opinion of the editorial board or Bloomberg LP and its owners.Bobby Ghosh is a columnist and member of the Bloomberg Opinion editorial board. He writes on foreign affairs, with a special focus on the Middle East and the wider Islamic world.For more articles like this, please visit us at bloomberg.com/opinion©2019 Bloomberg L.P.

+ No image +

Image description: Iraq’s Top Cleric Warns Iran to Stay Out

+ +

The Most Cringe-Worthy 90s Internet Guides That We Can't Stop Watching

+

Date: Sat, 02 Nov 2019 12:00:00 -0400

+ News link +

+ No image +

Image description: The Most Cringe-Worthy 90s Internet Guides That We Can't Stop Watching

+ +

California wildfires: Ignition of Maria fire spotted on camera

+

Date: Sat, 02 Nov 2019 12:16:47 -0400

+ News link +

The moment a wildfire burst into life and began to spread in California has been caught on camera.The Maria Fire has burned some 15 square miles and prompted evacuation orders for nearly 11,000 people since it began Thursday evening.

+ No image +

Image description: California wildfires: Ignition of Maria fire spotted on camera

+ +

Central European governments accused of abusing European agriculture subsidies

+

Date: Sun, 03 Nov 2019 13:56:39 -0500

+ News link +

Central European governments have been systematically abusing the European Union’s Common Agricultural Policy to enrich family members and political allies, an investigation claims.  The New York Times survey of subsidies in nine European countries found that millions of euros in agricultural subsidies had been directed to a handful of companies, often linked to national leaders. It alleged that the CAP had even underwritten “mafia-style land grabs” in Slovakia and Bulgaria.  Prominent beneficiaries reportedly include Andrej Babis, the billionaire prime minister of the Czech republic, who the paper says is linked to a company that received at least $42 million (£32 million) in subsidies last year.  Lukáơ Wagenknecht, a senator from the opposition Pirate Party, last week filed a complaint against the European Council saying it should not allow Mr Babis to take part in the bloc’s budget discussions because his Agrofert conglomerate receives tens of millions of Euros in subsidies annually.  Mr Babis no longer owns the company and has denied a conflict of interests, but organisations including Transparency International claim that he remains its end beneficiary.   Andrej Babis, the Czech prime minister, denies a conflict of interest Credit: Martin Divisek/Bloomberg The paper also accused Viktor Orban, the prime minister of Hungary, of abusing the EU’s subsidies to fund a system of patronage linked to land leases.   It cited Mr Orban’s sale of 12 state farms to close associates when he was prime minister between 1998 and 2002, which became eligible for large subsidies when Hungary joined the EU in 2004.  In 2015, five years after he returned to power, Mr Orban’s government began to sell and auction leases to hundreds of thousands of hectares at cut price rates, arranging for most of them go to businessmen with close connections of Fidesz.  The paper implies that this created a system of “modern feudalism” in which small farmers were left beholden to barons who received land eligible for European subsidies based on their loyalty to Mr Orban.   Individuals who are reported to have built up considerable landholdings include Mr Orbans family and close business and political allies.  The European Union supported farmers with 58.82 billion Euros (£50.8 billion) in 2018. Subsidies are meant to support food production, rural community development, and environmentally friendly farming.  The subsidies it provides are often crucial to the survival of small farmers across the bloc.  Ivan Haralampiev, the Bulgarian farmer whose cow Penka was at the centre of an outcry over EU agricultural regulations in 2018, told the Telegraph that he had bought cattle only because the subsidies they qualified for made it possible to live.  The Telegraph sought comment from Mr Orban's office.  A spokesman for the Hungarian government said: “The procedures in Hungary for administering EU agricultural subsidies fully satisfy EU rules and regulations for the management of these funds. Hungary is also fully compliant in the sale of state land, which is regulated by law. Furthermore, it should be noted, that concerning a plot of land larger than 1,000 hectares, subsidies for or sale of that plot must follow strict rules. The NYT’s questions and sources clearly reflect a biased preconception about the topic.”

+ No image +

Image description: Central European governments accused of abusing European agriculture subsidies

+ +

French leader to raise 'taboo' topics in China

+

Date: Mon, 04 Nov 2019 04:13:50 -0500

+ News link +

French President Emmanuel Macron arrived in China on Monday to drum up new business deals, but under warning from his hosts to keep off thorny issues such as the pro-democracy protests in Hong Kong. Macron began his second official trip to China on Monday afternoon in the financial hub of Shanghai, where he will attend an international import fair against the backdrop of the US-China trade war.

+ No image +

Image description: French leader to raise 'taboo' topics in China

+ +

Salmonella linked to ground beef leaves 8 ill, 1 dead

+

Date: Sat, 02 Nov 2019 11:32:08 -0400

+ News link +

Ten people in six states have become infected with salmonella dublin after eating ground beef, the Centers for Disease Control and Prevention announced Friday.

+ No image +

Image description: Salmonella linked to ground beef leaves 8 ill, 1 dead

+ +

Indian Muslims anxious as court prepares to rule on destroyed mosque

+

Date: Mon, 04 Nov 2019 02:41:15 -0500

+ News link +

In the Indian town of Ayodhya, minority Muslims are feeling under siege as they await a Supreme Court ruling on a centuries-old religious dispute that has cast a shadow over their relations with the majority Hindu community. After a tangle of legal cases, the Supreme Court in August decided to hear arguments every day in an effort to resolve the dispute over what should be built on the ruins of the 16th-century Babri Masjid, destroyed by a Hindu mob in 1992. The uproar over the mosque triggered some of India's deadliest riots, in which nearly 2,000 people, most of them Muslim, were killed.

+ No image +

Image description: Indian Muslims anxious as court prepares to rule on destroyed mosque

+ +

Late-week storm could spell wintry weather for the mid-Atlantic

+

Date: Sun, 03 Nov 2019 11:39:56 -0500

+ News link +

A storm budding in the south-central U.S. earlier in the week, will take aim at the East Coast, and could deliver both heavy rain and wintry weather.An active pattern will continue to bring several storms from the center of the country to the Eastern Seaboard throughout the week. The presence of many moving parts makes for a more long-term complex pattern.One such moving part is a high pressure system that will move across the northern half of the country late in the week."The strength and location of the high pressure delivering cold to the northern tier of the country will determine how far north the storm is able to go," said AccuWeather Senior Meteorologist Alan Reppert.No matter how far north the storm traverses, the likelihood of rain for states like Mississippi, Alabama, Tennessee and Georgia from late on Thursday through Friday is pretty high. The situation with the high pressure will instead determine the precipitation amount, and precipitation type for parts of Kentucky to the Carolinas and Virginia.Cold present in the Appalachians and to the east of the mountains when the storm arrives could allow wet snowflakes to mix in with the rainfall, especially during the morning and overnight hours."In this scenario, accumulating snow will be possible in parts of Virginia, and in the mountains of North Carolina," added Reppert.Residents will want to keep a close eye on this storm, and prepare for changeable conditions.Snow falling in the mid-Atlantic is not unprecedented for early November.Richmond's earliest accumulating snowfall, and even Raleigh earliest snowfall is during the first week of November. Snowflakes can come as early as October in these areas. The occurrence of accumulating snowfall in the higher elevations of the Appalachians is even more common.However, a snowy situation in Virginia and North Carolina at the end of the week is not set in stone.Should the high hang back farther to the west, so will the cold air. Instead of the cold being present during the arrival of the storm, it will follow the wet weather. This second scenario, combined with a more northerly storm track, would minimize the presence of snow for most across the south. Instead, there is a slight chance for some wet snowflakes to mix in with rain in places like Delaware, Maryland and northern Virginia.Additionally, the storm may move faster, most locations away from the Carolina Coast and Florida would be dried out by Friday afternoon.Cold would be able to dive farther to the south, bringing a chill for many across the region, including northern Florida, where cities experienced a record-warm October.Much of the southern and eastern Untied States has seen its fair share of storminess as of late.Cities like D.C., Raleigh, Nashville and Atlanta all recorded above-normal precipitation for the month of October. In fact D.C., and Nashville had almost double the normal amount of rain they get during the month.Download the free AccuWeather app to see the latest forecast for your region. Keep checking back for updates on AccuWeather.com and stay tuned to the AccuWeather Network on DirecTV, Frontier and Verizon Fios.

+ No image +

Image description: Late-week storm could spell wintry weather for the mid-Atlantic

+ +

Enemies Beware: America Is Upgrading Its Mighty Air Force Bombers

+

Date: Sat, 02 Nov 2019 23:00:00 -0400

+ News link +

The B-52, B-1, and B-2 are joining the future.

+ No image +

Image description: Enemies Beware: America Is Upgrading Its Mighty Air Force Bombers

+ +

Steve Bannon advised Kushner days before election to avoid Paul Manafort 'like the plague'

+

Date: Sat, 02 Nov 2019 17:38:31 -0400

+ News link +

In documents obtained by BuzzFeed, former Trump campaign head Bannon told Kushner to avoid Manafort because of optics.

+ No image +

Image description: Steve Bannon advised Kushner days before election to avoid Paul Manafort 'like the plague'

+ +

A 9,000-barrel leak in the Keystone pipeline in North Dakota spilled enough crude oil to fill half an Olympic-sized swimming pool

+

Date: Sat, 02 Nov 2019 14:00:25 -0400

+ News link +

The second large oil spill from the Keystone pipeline in two years provoked outrage because TC Energy told activists that spills were unlikely.

+ No image +

Image description: A 9,000-barrel leak in the Keystone pipeline in North Dakota spilled enough crude oil to fill half an Olympic-sized swimming pool

+ +

US white supremacist arrested hours before far-right conference in Norway

+

Date: Sun, 03 Nov 2019 17:58:06 -0500

+ News link +

An American white supremacist was arrested hours before he was due to speak at an international far-right conference in Norway.Greg Johnson was detained under immigration law on the basis that he posed a threat to national interests, according to the police security agency PST.

+ No image +

Image description: US white supremacist arrested hours before far-right conference in Norway

+ +

Clashes erupt on another Baghdad bridge, protester killed

+

Date: Mon, 04 Nov 2019 09:33:15 -0500

+ News link +

Anti-government protesters clashed with Iraqi security forces on a third major bridge in Baghdad on Monday, with at least one protester killed and two dozen wounded as gunfire echoed through the streets. Some protesters hurled rocks at security forces, who responded with tear gas and fired a water cannon. Police and hospital officials said at least one person was killed and 24 wounded in the clashes on the bridge, where security forces used live ammunition, rubber bullets and tear gas grenades.

+ No image +

Image description: Clashes erupt on another Baghdad bridge, protester killed

+ +

'Deepening repression' alongside Saudi reforms: HRW

+

Date: Sun, 03 Nov 2019 19:45:22 -0500

+ News link +

Saudi Crown Prince Mohammed bin Salman has pursued landmark reforms since coming to power, but his rise has been accompanied by "deepening repression and abusive practices", Human Rights Watch said Monday. Despite a perception that the outcry over the October 2018 murder of journalist Jamal Khashoggi had left the Saudis chastened, critics of the kingdom are still being vigorously pursued with measures including arbitrary travel bans and harassment of their families, it said. "Detaining citizens for peaceful criticism of the government's policies or human rights advocacy is not a new phenomenon in Saudi Arabia," the New York-based group said in a report.

+ No image +

Image description: 'Deepening repression' alongside Saudi reforms: HRW

+ +

Abe, Moon Break Ice After Worst Japan-South Korea Fight in Years

+

Date: Sun, 03 Nov 2019 23:49:32 -0500

+ News link +

(Bloomberg) -- Terms of Trade is a daily newsletter that untangles a world embroiled in trade wars. Sign up here. South Korean President Moon Jae-in and Japanese Prime Minister Shinzo Abe agreed in their first meeting in 14 months to ease tensions, according to the South Korean presidential office.Moon and Abe shared the view that the relationship between South Korea and Japan is important and re-affirmed in principle that issues between the two nations should be resolved via dialogue, the presidential office said in a text message. Abe conveyed Japan’s “basic stance” on bilateral issues in his exchange with Moon, the Tokyo-based Kyodo News agency said separately, citing the Japanese foreign ministry.The brief, 11-minute meeting at the Association of Southeast Asian Nations summit in Bangkok came as a long-simmering feud escalated into a trade-and-security dispute, leading to boycotts of Japanese imports and the decision to scrap an intelligence-sharing pact. The encounter followed a break-through meeting last month between Abe and South Korean Prime Minister Lee Nak-yon.Moon proposed high-level talks, if needed while Abe said every effort should be made to resolve the feud, Moon’s office said. Abe last met Moon in September 2018 and passed up a chance to meet him for formal talks during Group of 20 events in Osaka in June.The remarks were the most positive yet since South Korean courts issued a series of rulings last year backing the claims of Koreans forced to work for Japanese companies during the country’s 1910-45 occupation of the Korean Peninsula.Japan subsequently tightened restrictions on exports of key materials used by South Korean semi-conductor manufacturers. South Korea responded by moving to withdraw from a military intelligence-sharing pact with Japan.To contact the reporters on this story: Shinhye Kang in Seoul at skang24@bloomberg.net;Seyoon Kim in Seoul at skim7@bloomberg.net;Sophie Jackman in Tokyo at sjackman5@bloomberg.netTo contact the editors responsible for this story: Peter Pae at ppae1@bloomberg.net, Brendan ScottFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.

+ No image +

Image description: Abe, Moon Break Ice After Worst Japan-South Korea Fight in Years

+ +

Malaysia says country shielding 1MDB fugitive Jho Low refuses to cooperate

+

Date: Mon, 04 Nov 2019 06:51:45 -0500

+ News link +

Malaysian fugitive Low Taek Jho, wanted over a multibillion dollar scandal at state fund 1MDB, is living in a country that has refused to cooperate on efforts to retrieve him, Malaysia's police chief said on Monday, according to the state news agency. Low, also known as Jho Low, has been charged in Malaysia and the United States over the alleged theft of $4.5 billion from 1Malaysia Development Berhad (1MDB), set up by former Malaysian Prime Minister Najib Razak.

+ No image +

Image description: Malaysia says country shielding 1MDB fugitive Jho Low refuses to cooperate

+ +

California fires, rising seas: Millions of climate refugees will dwarf Dust Bowl by 2100

+

Date: Mon, 04 Nov 2019 08:23:04 -0500

+ News link +

An environmental crisis in the early 1900s created 'Dust Bowl refugees.' Today's climate crisis is much bigger and will last for decades, not years.

+ No image +

Image description: California fires, rising seas: Millions of climate refugees will dwarf Dust Bowl by 2100

+ +

How Al-Baghdadi's Death Will Change the Terrorism of Tomorrow

+

Date: Sat, 02 Nov 2019 12:30:00 -0400

+ News link +

Will the war ever end?

+ No image +

Image description: How Al-Baghdadi's Death Will Change the Terrorism of Tomorrow

+ +

Chicago teen charged in suspected gang shooting that injured girl who was trick-or-treating

+

Date: Sat, 02 Nov 2019 12:34:50 -0400

+ News link +

A 7-year-old girl was trick-or-treating in Chicago when she was hit by a stray bullet. A teenager has now been charged.

+ No image +

Image description: Chicago teen charged in suspected gang shooting that injured girl who was trick-or-treating

+ +

Biden Campaign: We ‘Don’t Have to Win in Iowa’

+

Date: Mon, 04 Nov 2019 07:53:38 -0500

+ News link +

Former vice president Joe Biden's campaign staffers have begun playing down expectations in the Iowa caucuses in response to their candidate's underperformance in recent polls conducted in the first primary state.“I think we’re the only ones who don’t have to win Iowa, honestly," Biden campaign manager Greg Schultz told the Wall Street Journal, "because our strength is the fact that we have a broad and diverse coalition.”A Siena College/New York Times poll released Friday predicted Biden will take fourth place in the Iowa caucuses. Left-wing challengers Elizabeth Warren and Bernie Sanders come in first and second respectively, with the more moderate Pete Buttigieg taking third place.The Iowa caucuses could “have three or four or five candidates all within a couple of percentage points. Does anybody win? Technically, yes, maybe," said Schultz. "But does that give you clarity on where the heart of the Democratic Party is? I would say, ‘no.’”Biden still leads the Democratic field in national polling. His team is hoping that Biden's wide support among black voters will help propel him to the front of the race in the primaries following Iowa.The former vice president has come out against Warren's and Sanders's promise of "medicare for all" plans in trying to win over more moderate voters.“The plan put forward by Bernie and Elizabeth, even out here, is not embraced by a majority of the people,” Biden said. “And so I think what people are going to start to focus on, at least I hope, is a little bit of . . . truth in advertising.”Warren released her universal Medicare plan on Friday. The plan require $21 trillion in new government spending over ten years, while Sanders's carries a $32 trillion price tag over the same period.

+ No image +

Image description: Biden Campaign: We ‘Don’t Have to Win in Iowa’

+ +

PG&E CEO Causes Outrage After Saying Struggling California Residents’ Houses Are ‘Still There’ Because of Blackouts

+

Date: Sun, 03 Nov 2019 15:25:15 -0500

+ News link +

California Gov. Gavin Newsom has been vocal in his criticism of PG&E

+ No image +

Image description: PG&E CEO Causes Outrage After Saying Struggling California Residents’ Houses Are ‘Still There’ Because of Blackouts

+ +

Supreme leader: Iran has outflanked US since 1979 revolution

+

Date: Sun, 03 Nov 2019 09:22:55 -0500

+ News link +

Iran's supreme leader said Sunday that his country has outmaneuvered the United States in the four decades since the 1979 Islamic Revolution. Ayatollah Ali Khamenei said Iran has "trapped the other party in the corner of the ring in many cases," adding that U.S. aggression toward Iran has only grown "wilder and more flagrant" over the years. Khamenei was quoted on his official website in a speech to thousands of students, a day before the 40th anniversary of the U.S. Embassy takeover in Tehran.

+ No image +

Image description: Supreme leader: Iran has outflanked US since 1979 revolution

+ +

Brazil's Bolsonaro says 'worst is yet to come' on oil spill

+

Date: Sun, 03 Nov 2019 21:59:34 -0500

+ News link +

Brazilian President Jair Bolsonaro said Sunday that "the worst is yet to come" with an oil spill that has affected more than 200 beaches on the country's coast. "What came so far and what was collected is a small amount of what was spilled," Bolsonaro said in an interview with Record television. Oil slicks have been appearing for three months off the coast of northeast Brazil and fouling beaches along a 2,000 kilometer (1,250 mile) area of Brazil's most celebrated shoreline.

+ No image +

Image description: Brazil's Bolsonaro says 'worst is yet to come' on oil spill

+ +

Knifeman stabs four in Hong Kong as mall clashes between protesters and police end in bloodshed

+

Date: Sun, 03 Nov 2019 08:14:17 -0500

+ News link +

At least four people were injured by a blade-wielding man who rampaged through a mall in Hong Kong as riot police stormed shopping centres in a move to block protesters from staging rallies. The bloody attack took place amid a day of chaos in Hong Kong that also saw an elected local councillor have part of his left ear bitten off. Pro-democracy activists called a spate of flashmobs in shopping centers on Sunday in a bid to keep up the momentum of the protest movement that has swept the city with violent clashes for five months.  The actions came after a day of running battles on Saturday, and riot police stormed several malls early the day in an attempt to stop the rallies from taking place. Officers stationed at planned protest sites blocked certain areas, dispersed crowds and made arrests. Nonetheless, protesters succeeded in worming their way into malls in several neighbourhoods, forming a human chain, chanting slogans, and blocking entrances to prevent police officers from entering. Riot police arrive to a shopping mall to disperse protesters during a rally against police brutality in Hong Kong Credit: JEROME FAVRE/EPA-EFE/REX Although the protests were less violent than the previous day's, they ended in bloodshed when a man charged into a crowd that had gathered at the Cityplaza mall in the middle class neighbourhood of Tai Koo Shing.  Survivors were seen lying in pools of blood and surrounded by people holding down tissues and gauze on their wounds in an effort to staunch the bleeding. Footage circulating online showed that the attacker, thought to be wielding a knife, had been subdued by angry onlookers. He was said to have argued with others over political issues before the incident. Andrew Chiu, a pro-democracy councillor, lost part of his ear at the same mall. It was not immediately clear if the person who bit off his ear was the same person who carried out the knife attack.  Police said in a statement that they stormed into the shopping centres after activists started vandalising interiors and smashing windows. View of a blood-splattered floor after an alleged pro-Chinese supporter attacked a pro-democracy protester Credit: JEROME FAVRE/EPA-EFE/REX They said were still confirming the total number of people injured as of late Sunday evening. Police arrested at least 200 people the previous night when another set of protests disrupted the city. The weekend's clashes were the latest bout of violence in Hong Kong's worst political crisis since the former British colony was returned to China in 1997.  Protests kicked off early June against an extradition bill that would have sent suspects to face trial in mainland China, where Communist Party influence in the court system results in a 99.9 per cent conviction rate. City leaders finally withdrew the plan last month, but activists have continued to demonstrate against what they describe as police brutality and overall frustration at a government they feel has refused to listen to them. The protesters' demands have expanded to include the resignation of Carrie Lam, the city's chief executive, establishment of an independent inquiry into police handling of the demonstrations, amnesty for arrested protesters, and direct leadership elections. A woman is detained by riot police at a shopping mall in Tai Po in Hong Kong,  Credit:  KIM KYUNG-HOON/ REUTERS Ms Lam was on an official visit to mainland China on Sunday, where she is scheduled to meet this week with top Communist Party leaders.   Five months of demonstrations have dramatically disrupted day-to-day life in Hong Kong, with activists growing increasingly radical and police escalating their tactics in response.  City residents have struggled to keep up their daily routines as neighbourhoods are unexpectedly rocked by violent clashes between protesters and police.  The tense political environment has divided many in the international financial hub, with heated debates taking place everywhere from street corners to cafes. And while Ms Lam has refused to make further concessions, the clashes have grown increasingly violent. Police have deployed record amounts of tear gas, rubber bullets and sponge grenades, while a more radical faction of protesters now routinely throw petrol bombs and bricks and set fire to street barricades to deter police. Resentment at Hong Kong’s police force – once dubbed “Asia’s Finest” ­– is hardening as activists denounce what they say is disproportionate force. At least three candidates running in local elections were arrested by police over the weekend, including Richard Chan, 48, who was pepper sprayed at close range twice by officers.  Protesters have also begun targeting symbols of mainland China, including the Chinese flag, major state-owned Chinese banks, and businesses thought to be pro-Beijing, to show their frustration that freedoms long enjoyed in the former British colony were fast eroding under Beijing’s Communist rule.  On Saturday, protesters targeted the offices of Chinese state media agency Xinhua for the first time. Xinhua said in a statement that it strongly condemned the “barbaric acts of mobs” who vandalised and set fire to its lobby.

+ No image +

Image description: Knifeman stabs four in Hong Kong as mall clashes between protesters and police end in bloodshed

+ +

China says no promise 'fatigue' on opening its economy

+

Date: Mon, 04 Nov 2019 04:17:03 -0500

+ News link +

There is no promise "fatigue" about China's efforts to open its economy to foreign businesses, the government said on Monday on the eve of week-long import fair, after the European Union said China needed to make rapid and substantial improvements. The EU, China's largest trading partner, said last week ahead of the Shanghai fair that there was a risk of "promise fatigue", urging China to show "more ambition and genuine effort towards rebalancing and a level playing field". China has long been dogged by allegations of unfair trade practices, from forced tech transfers to protectionist market entry policies.

+ No image +

Image description: China says no promise 'fatigue' on opening its economy

+ +

Venezuela Gives El Salvador’s Diplomats 48 Hours to Head Home

+

Date: Sun, 03 Nov 2019 15:08:14 -0500

+ News link +

(Bloomberg) -- Venezuela gave El Salvadoran diplomats just 48 hours to leave the country after a similar move by El Salvador’s President Nayib Bukele.The meltdown in foreign relations came amid an ongoing power struggle between sitting Venezuelan President Nicolas Maduro and National Assembly leader Juan Guaido, who has declared himself president and says Maduro’s administration is illegitimate.El Salvador is awaiting new diplomatic representation from Guaido in the near future, according to a statement from the president’s office late Saturday. Bukele also gave Venezuelan diplomats 48 hours to leave.“The government of President Nayib Bukele recognizes the legitimacy of Interim President Juan Guaido, while free elections are held in accordance with the Venezuelan constitution,” the statement read. “El Salvador will always be in favor of democracy and will defend human rights.”Bukele responded to Venezuela’s announcement with a tweet on Sunday saying that he had forgotten to mention that his government had not named a single diplomat in Venezuela and that Maduro had kicked out the team named by his predecessor. He finished the tweet with an emoji crying with laughter.Seven countries have pulled their ambassadors from Venezuela since 2018, when Maduro organized presidential elections that were criticized by many as illegitimate.\--With assistance from Fabiola Zerpa.To contact the reporter on this story: Justin Villamil in Mexico City at jvillamil18@bloomberg.netTo contact the editors responsible for this story: Carolina Wilson at cwilson166@bloomberg.net, Kevin Miller, Mark NiquetteFor more articles like this, please visit us at bloomberg.com©2019 Bloomberg L.P.

+ No image +

Image description: Venezuela Gives El Salvador’s Diplomats 48 Hours to Head Home

+ +

Trump's Naval Dream Seems Sunk: America Can't Afford a 355 Ship Navy

+

Date: Sat, 02 Nov 2019 15:30:00 -0400

+ News link +

Like a Christmas wish list, the Navy wants a fleet of 355 ships. It just can’t afford it.

+ No image +

Image description: Trump's Naval Dream Seems Sunk: America Can't Afford a 355 Ship Navy

+ +

Teenage boy charged in Halloween shooting of seven-year-old girl in bumblebee costume

+

Date: Sat, 02 Nov 2019 13:00:01 -0400

+ News link +

A 15-year-old boy has been charged with attempted murder after a seven-year-old girl was shot while she was trick-or-treating in a bumblebee outfit in Chicago.The young girl, who was critically wounded while trick-or-treating for Halloween in the city’s West Side on Thursday, is believed to have been hit in the lower neck with a stray bullet.

+ No image +

Image description: Teenage boy charged in Halloween shooting of seven-year-old girl in bumblebee costume

+ +

#DeclassifiedDog: Twitter shares their 'declassified' dog pics after Trump tweet

+

Date: Mon, 04 Nov 2019 00:14:06 -0500

+ News link +

Since Trump's tweet, Twitter users have taken the opportunity to share photos and videos of dogs using DeclassifiedDog and Declassified.

+ No image +

Image description: #DeclassifiedDog: Twitter shares their 'declassified' dog pics after Trump tweet

+ +

Police station banned from displaying 'thin blue line' flag

+

Date: Mon, 04 Nov 2019 06:08:30 -0500

+ News link +

A Maryland County executive has banned a local police station from displaying the pro-law enforcement flag.

+ No image +

Image description: Police station banned from displaying 'thin blue line' flag

+ +

Airbnb bans 'party houses' after California shooting kills 5

+

Date: Sat, 02 Nov 2019 23:58:21 -0400

+ News link +

Airbnb's CEO said the company was taking actions against unauthorized parties in the wake of a deadly shooting at a Halloween party held at an Airbnb rental home in California. In a series of tweets, Brian Chesky said Saturday the San Francisco-based company is expanding manual screening of "high risk" reservations and will remove guests who fail to comply with policies banning parties at Airbnb rental homes. Five people died after a Thursday night shooting that sent some 100 terrified partygoers running for their lives in the San Francisco suburb of Orinda.

+ No image +

Image description: Airbnb bans 'party houses' after California shooting kills 5

+ +

As Iraq and Lebanon protests flare, Iran clings to hard-earned sway

+

Date: Sun, 03 Nov 2019 12:33:11 -0500

+ News link +

Iran has worked to turn sweeping anti-government protests in Iraq from a threat to its hard-earned influence over its neighbour into an opportunity for political gains, analysts say. In Lebanon too, where similar rallies against corruption and government inefficiency have broken out, Iran's main ally Hezbollah has managed to maintain its influence. "Very clearly, Iran in both Lebanon and Iraq wants to protect the system and not allow it to fall apart," said Renad Mansour, researcher at London-based Chatham House.

+ No image +

Image description: As Iraq and Lebanon protests flare, Iran clings to hard-earned sway

+ +

Hong Kong mall clash ends in bloody knife attack and bitten off ear

+

Date: Sat, 02 Nov 2019 22:17:15 -0400

+ News link +

Hong Kong anti-government protesters crowded a shopping mall in running clashes with police on Sunday during which a man with a knife slashed several people and apparently bit off part of a local politician's ear. A human chain in Cityplaza, in the eastern suburb of Taikoo Shing, turned into a face-to-face conflict with police, running up and down escalators where families with young children had been window shopping just minutes before and watching skating on the ice rink. Police said protesters had vandalized a restaurant in the mall after a peaceful chanting of slogans in the 22nd straight weekend of protests by Hong Kong people furious at perceived Chinese meddling in the former British colony which returned to Chinese rule in 1997.

+ No image +

Image description: Hong Kong mall clash ends in bloody knife attack and bitten off ear

+ +

Apple to donate $2.5 billion to combat California housing crisis

+

Date: Sun, 03 Nov 2019 23:18:50 -0500

+ News link +

"Affordable housing means stability and dignity, opportunity and pride. ... Apple is committed to being part of the solution," CEO Tim Cook says

+ No image +

Image description: Apple to donate $2.5 billion to combat California housing crisis

+ + + + \ No newline at end of file diff --git a/news_feed/news2.pdf b/news_feed/news2.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b6d82ac18d304f09053565ed74b1530f25c388d2 GIT binary patch literal 33447 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 ak@N8IM7nz(;U5Ztfg}LDyvjN%fd2#UvYQ(K literal 0 HcmV?d00001 diff --git a/news_feed/news_cash/20190712.csv b/news_feed/news_cash/20190712.csv new file mode 100644 index 0000000..c6436d6 --- /dev/null +++ b/news_feed/news_cash/20190712.csv @@ -0,0 +1,2 @@ +title,pubDate,link,description,imageLink,imageDescription +Miami's Little Haiti wasn't a target for developers. Until the seas started to rise,"Fri, 12 Jul 2019 15:14:00 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/pbQjkbD_bFk/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/pbQjkbD_bFk, diff --git a/news_feed/news_cash/20190918.csv b/news_feed/news_cash/20190918.csv new file mode 100644 index 0000000..aa97a33 --- /dev/null +++ b/news_feed/news_cash/20190918.csv @@ -0,0 +1,2 @@ +title,pubDate,link,description,imageLink,imageDescription +US cities are losing 36 million trees a year. Here's why it matters ,"Wed, 18 Sep 2019 16:44:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/KlnsnygiAw8/index.html,"If you're looking for a reason to care about tree loss, the nation's latest heat wave might be it. Trees can lower summer daytime temperatures by as much as 10 degrees Fahrenheit, according to a recent study.",http://feeds.feedburner.com/~r/rss/edition_world/~4/KlnsnygiAw8, diff --git a/news_feed/news_cash/20191030.csv b/news_feed/news_cash/20191030.csv new file mode 100644 index 0000000..23ed411 --- /dev/null +++ b/news_feed/news_cash/20191030.csv @@ -0,0 +1,2 @@ +title,pubDate,link,description,imageLink,imageDescription +They're recycling plastic milk bottles to build roads,"Wed, 30 Oct 2019 10:28:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/nkb1bSv3X-M/index.html,"Plastic milk bottles are being recycled to make roads in South Africa, with the hope of helping the country tackle its waste problem and improve the quality of its roads.",http://feeds.feedburner.com/~r/rss/edition_world/~4/nkb1bSv3X-M, diff --git a/news_feed/news_cash/20191103.csv b/news_feed/news_cash/20191103.csv new file mode 100644 index 0000000..c7e4486 --- /dev/null +++ b/news_feed/news_cash/20191103.csv @@ -0,0 +1,2 @@ +title,pubDate,link,description,imageLink,imageDescription +There could be trouble ahead for Saudi Arabia's economy,"Sun, 03 Nov 2019 16:08:05 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/UMS9gK5Mxyg/index.html,"The stars of the business world returned last week to Saudi Arabia's so-called Davos in the Desert, a conference formally known as the Future Investment Initiative (FII). Last year, several CEOs dropped out, afraid of associating publicly with a regime that has been accused of — and has consistently denied — being responsible for the murder of journalist Jamal Khashoggi. And while it's true that their return this year indicates the extent of Saudi Arabia's rapid rehabilitation, the kingdom will need more than a glitzy attendee list of business elites to mend its economic troubles.",http://feeds.feedburner.com/~r/rss/edition_world/~4/UMS9gK5Mxyg, diff --git a/news_feed/news_cash/20191104.csv b/news_feed/news_cash/20191104.csv new file mode 100644 index 0000000..6c95975 --- /dev/null +++ b/news_feed/news_cash/20191104.csv @@ -0,0 +1,17 @@ +title,pubDate,link,description,imageLink,imageDescription +New Delhi is choking on smog and there's no end in sight,"Mon, 04 Nov 2019 09:59:11 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/tbjRLXCRMIE/index.html,‱ Air pollution reaches 'unbearable' levels,http://feeds.feedburner.com/~r/rss/edition_world/~4/tbjRLXCRMIE, +World's most profitable company to IPO,"Mon, 04 Nov 2019 10:43:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/WdGBNzqr0Ko/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/WdGBNzqr0Ko, +China perfected fake meat centuries before the Impossible Burger,"Mon, 04 Nov 2019 09:19:17 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gb96p9WE7ow/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/gb96p9WE7ow, +Why US military aid is so crucial to Ukraine,"Mon, 04 Nov 2019 02:48:34 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/YxPYqk6S_S4/ukraine-troops-front-lines-russia-ward-pkg-vpx.cnn,"Following the now infamous phone call between President Trump and Ukrainian President Volodymyr Zelensky, the US temporarily suspended nearly $400 million in military and security aid to Ukraine. CNN's Clarissa Ward reports from the front lines of Ukraine's war with Russia, where forces say the need for military aid is dire.",http://feeds.feedburner.com/~r/rss/edition_world/~4/YxPYqk6S_S4, +China approves seaweed-based Alzheimer's drug. It's the first new one in 17 years,"Mon, 04 Nov 2019 07:55:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/egUv2keeyj8/index.html,"Authorities in China have approved a drug for the treatment of Alzheimer's disease, the first new medicine with the potential to treat the cognitive disorder in 17 years.",http://feeds.feedburner.com/~r/rss/edition_world/~4/egUv2keeyj8, +Microsoft tried a 4-day workweek in Japan. Productivity jumped 40%,"Mon, 04 Nov 2019 14:11:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Y8goQ8aTQlU/index.html,A growing number of smaller companies are adopting a four-day workweek. Now the results of a recent trial at Microsoft suggest it could work even for the biggest businesses.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Y8goQ8aTQlU, +World's most profitable company to IPO,"Mon, 04 Nov 2019 10:43:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/WdGBNzqr0Ko/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/WdGBNzqr0Ko, +China perfected fake meat centuries before the Impossible Burger,"Mon, 04 Nov 2019 09:19:17 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gb96p9WE7ow/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/gb96p9WE7ow, +Why US military aid is so crucial to Ukraine,"Mon, 04 Nov 2019 02:48:34 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/YxPYqk6S_S4/ukraine-troops-front-lines-russia-ward-pkg-vpx.cnn,"Following the now infamous phone call between President Trump and Ukrainian President Volodymyr Zelensky, the US temporarily suspended nearly $400 million in military and security aid to Ukraine. CNN's Clarissa Ward reports from the front lines of Ukraine's war with Russia, where forces say the need for military aid is dire.",http://feeds.feedburner.com/~r/rss/edition_world/~4/YxPYqk6S_S4, +China approves seaweed-based Alzheimer's drug. It's the first new one in 17 years,"Mon, 04 Nov 2019 07:55:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/egUv2keeyj8/index.html,"Authorities in China have approved a drug for the treatment of Alzheimer's disease, the first new medicine with the potential to treat the cognitive disorder in 17 years.",http://feeds.feedburner.com/~r/rss/edition_world/~4/egUv2keeyj8, +Microsoft tried a 4-day workweek in Japan. Productivity jumped 40%,"Mon, 04 Nov 2019 14:11:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Y8goQ8aTQlU/index.html,A growing number of smaller companies are adopting a four-day workweek. Now the results of a recent trial at Microsoft suggest it could work even for the biggest businesses.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Y8goQ8aTQlU, +World's most profitable company to IPO,"Mon, 04 Nov 2019 10:43:39 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/WdGBNzqr0Ko/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/WdGBNzqr0Ko, +China perfected fake meat centuries before the Impossible Burger,"Mon, 04 Nov 2019 09:19:17 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/gb96p9WE7ow/index.html,,http://feeds.feedburner.com/~r/rss/edition_world/~4/gb96p9WE7ow, +Why US military aid is so crucial to Ukraine,"Mon, 04 Nov 2019 02:48:34 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/YxPYqk6S_S4/ukraine-troops-front-lines-russia-ward-pkg-vpx.cnn,"Following the now infamous phone call between President Trump and Ukrainian President Volodymyr Zelensky, the US temporarily suspended nearly $400 million in military and security aid to Ukraine. CNN's Clarissa Ward reports from the front lines of Ukraine's war with Russia, where forces say the need for military aid is dire.",http://feeds.feedburner.com/~r/rss/edition_world/~4/YxPYqk6S_S4, +China approves seaweed-based Alzheimer's drug. It's the first new one in 17 years,"Mon, 04 Nov 2019 07:55:31 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/egUv2keeyj8/index.html,"Authorities in China have approved a drug for the treatment of Alzheimer's disease, the first new medicine with the potential to treat the cognitive disorder in 17 years.",http://feeds.feedburner.com/~r/rss/edition_world/~4/egUv2keeyj8, +Microsoft tried a 4-day workweek in Japan. Productivity jumped 40%,"Mon, 04 Nov 2019 14:11:32 GMT",http://rss.cnn.com/~r/rss/edition_world/~3/Y8goQ8aTQlU/index.html,A growing number of smaller companies are adopting a four-day workweek. Now the results of a recent trial at Microsoft suggest it could work even for the biggest businesses.,http://feeds.feedburner.com/~r/rss/edition_world/~4/Y8goQ8aTQlU, diff --git a/news_feed/rss_reader.py b/news_feed/rss_reader.py index ec70e2c..f834d58 100644 --- a/news_feed/rss_reader.py +++ b/news_feed/rss_reader.py @@ -1,3 +1,15 @@ +""" +Simple Rss reading module. Provides reading rss +by url. Cashing it into given directory. And reading +from file by date. + +You can use it like script with argparse. +Print +>> python rss_reader.py --help +into command line to find more information + +""" + import requests import os @@ -14,6 +26,9 @@ import argparse +from format_converter import PdfNewsConverter, HTMLNewsConverter + + PROJECT_VERSION = '1.0' PROJECT_DESCRIPTION = '' @@ -135,7 +150,6 @@ def _cash_news(news, dir='news_cash'): data = pd.DataFrame(columns=column_names) is_unique = data_temp.isin(data['title']).sum().sum() - print(is_unique) if not is_unique: data = data.append(data_temp) @@ -310,46 +324,67 @@ def to_json(self): return json_result -feed = NewsReader('http://rss.cnn.com/rss/edition_world.rss', limit=10, cashing=True) +# feed = NewsReader('http://rss.cnn.com/rss/edition_world.rss', limit=10, cashing=True) # items = feed.read_by_date('20190607') -feed.fancy_output(feed.items) - -# def main(): -# parser = argparse.ArgumentParser(description='Pure Python command-line RSS reader') -# -# parser.add_argument('source', type=str, help='RSS URL') -# -# parser.add_argument('--version', help='Print version info', action='store_true') -# parser.add_argument('--json', help='Print result as json in stdout', action='store_true') -# parser.add_argument('--verbose', help='Output verbose status messages', action='store_true') -# parser.add_argument('--cashing', help='Cash news if chosen', action='store_true') -# -# # TODO: add flags to output logs -# parser.add_argument('--limit', type=int, help='Limit news topics if this parameter provided') -# parser.add_argument('--date', type=str, help='Reads cashed news by date. And output them') -# -# args = parser.parse_args() -# print(args) -# -# if args.version: -# print(PROJECT_VERSION) -# print(PROJECT_DESCRIPTION) -# -# if args.json: -# news = NewsReader(args.source, args.limit, args.verbose) -# -# print(news.to_json()) -# elif args.date: -# news = NewsReader(args.source, args.limit, args.verbose) -# items = news.read_by_date(args.date) -# -# news.fancy_output(items) -# else: -# news = NewsReader(args.source, args.limit, args.verbose) -# -# news.fancy_output(news.items) -# -# -# if __name__ == '__main__': -# main() +# feed.fancy_output(feed.items) + + +def main(): + parser = argparse.ArgumentParser(description='Pure Python command-line RSS reader') + + parser.add_argument('source', type=str, help='RSS URL') + + parser.add_argument('--version', help='Print version info', action='store_true') + parser.add_argument('--json', help='Print result as json in stdout', action='store_true') + parser.add_argument('--verbose', help='Output verbose status messages', action='store_true') + parser.add_argument('--cashing', help='Cash news if chosen', action='store_true') + + # TODO: add flags to output logs + parser.add_argument('--limit', type=int, help='Limit news topics if this parameter provided') + parser.add_argument('--date', type=str, help='Reads cashed news by date. And output them') + + parser.add_argument('--to-pdf', type=str, + help='Read rss by url and write it into pdf. Print file name as input') + parser.add_argument('--to-html', type=str, + help='Read rss by url and write it into html. Print file name as input') + + args = parser.parse_args() + print(args) + + if args.version: + print(PROJECT_VERSION) + print(PROJECT_DESCRIPTION) + + if args.json: + news = NewsReader(args.source, args.limit, args.verbose) + + print(news.to_json()) + elif args.date: + news = NewsReader(args.source, args.limit, args.verbose) + items = news.read_by_date(args.date) + + news.fancy_output(items) + elif args.to_pdf: + news = NewsReader(args.source, args.limit, args.verbose) + it = news.items + + pdf = PdfNewsConverter(it) + pdf.add_all_news() + pdf.output(args.to_pdf, 'F') + elif args.to_html: + news = NewsReader(args.source, args.limit, args.verbose) + it = news.items + + print('WTF') + html_converter = HTMLNewsConverter(it) + print(args.to_html) + html_converter.output(args.to_html) + else: + news = NewsReader(args.source, args.limit, args.verbose) + + news.fancy_output(news.items) + + +if __name__ == '__main__': + main()