Commit d47fb655 authored by Vasyl Bodnaruk's avatar Vasyl Bodnaruk

delete

parent 056ca5cc
/*----------------------------------------------------------------------------------------------------
General styling
----------------------------------------------------------------------------------------------------*/
@-webkit-keyframes fstAnimationEnter {
from {
opacity: 0;
-webkit-transform: translate3d(0, -1em, 0); }
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0); } }
@-moz-keyframes fstAnimationEnter {
from {
opacity: 0;
-moz-transform: translate3d(0, -1em, 0); }
to {
opacity: 1;
-moz-transform: translate3d(0, 0, 0); } }
@keyframes fstAnimationEnter {
from {
opacity: 0;
-webkit-transform: translate3d(0, -1em, 0);
-moz-transform: translate3d(0, -1em, 0);
-ms-transform: translate3d(0, -1em, 0);
-o-transform: translate3d(0, -1em, 0);
transform: translate3d(0, -1em, 0); }
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); } }
.fstElement {
position: relative;
border: 1px solid #D7D7D7;
border-radius: 5px;
box-sizing: border-box;
color: #232323;
background-color: #fff; }
.fstElement > select,
.fstElement > input {
position: absolute;
left: -999em; }
.fstToggleBtn {
display: block;
position: relative;
box-sizing: border-box;
padding: .5rem .75rem;
min-width: 14.28571em;
cursor: pointer; }
.fstToggleBtn:after {
position: absolute;
content: "";
right: 0.71429em;
top: 50%;
margin-top: -0.17857em;
border: 0.35714em solid transparent;
border-top-color: #cacaca; }
.fstQueryInput {
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
-o-appearance: none;
appearance: none;
outline: none;
box-sizing: border-box;
background: transparent;
border: 0; }
.fstResults {
position: absolute;
left: -1px;
top: 100%;
right: -1px;
max-height: 30em;
overflow-x: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
border: 1px solid #D7D7D7;
border-top: 0;
background-color: #FFF;
display: none; }
.fstResultItem {
display: block;
padding: 0.5em 0.71429em;
margin: 0;
cursor: pointer;
border-top: 1px solid #fff; }
.fstResultItem.fstUserOption {
color: #707070; }
.fstResultItem.fstFocused {
color: #fff;
background-color: #43A2F3;
border-color: #73baf6; }
.fstResultItem.fstSelected {
color: #fff;
background-color: #2694f1;
border-color: #73baf6; }
.fstGroupTitle {
display: block;
padding: 0.5em 0.71429em;
margin: 0;
font-weight: bold; }
.fstGroup {
padding-top: 1em; }
.fstGroup:first-child {
padding-top: 0; }
.fstNoResults {
display: block;
padding: 0.71429em 0.71429em;
margin: 0;
color: #999; }
/*----------------------------------------------------------------------------------------------------
Single Mode
----------------------------------------------------------------------------------------------------*/
.fstSingleMode .fstControls {
position: absolute;
left: -1px;
right: -1px;
top: 100%;
padding: 0.5em;
border: 1px solid #D7D7D7;
background-color: #fff;
display: none; }
.fstSingleMode .fstQueryInput {
display: block;
width: 100%;
padding: 0.5em 0.35714em;
color: #999;
border: 1px solid #D7D7D7; }
.fstSingleMode.fstActive {
z-index: 100; }
.fstSingleMode.fstActive.fstElement,
.fstSingleMode.fstActive .fstControls,
.fstSingleMode.fstActive .fstResults {
box-shadow: 0 0.2em 0.2em rgba(0, 0, 0, 0.1); }
.fstSingleMode.fstActive .fstControls {
display: block; }
.fstSingleMode.fstActive .fstResults {
display: block;
z-index: 10;
margin-top: -1px; }
/*----------------------------------------------------------------------------------------------------
Multiple mode
----------------------------------------------------------------------------------------------------*/
.fstChoiceItem {
display: inline-block;
position: relative;
margin: 0 0.41667em 0.41667em 0;
padding: 0em 0.33333em 0em 1.5em;
float: left;
border-radius: 0.25em;
border: 1px solid #43A2F3;
cursor: auto;
color: #fff;
background-color: #43A2F3;
-webkit-animation: fstAnimationEnter 0.2s;
-moz-animation: fstAnimationEnter 0.2s;
animation: fstAnimationEnter 0.2s; }
.fstChoiceItem.mod1 {
background-color: #F9F9F9;
border: 1px solid #D7D7D7;
color: #232323; }
.fstChoiceItem.mod1 > .fstChoiceRemove {
color: #a4a4a4; }
.fstChoiceRemove {
margin: 0;
padding: 0;
border: 0;
cursor: pointer;
background: none;
position: absolute;
left: 0;
top: 50%;
width: 1.28571em;
line-height: 1.28571em;
margin-top: -0.64286em;
text-align: center;
color: #fff; }
.fstChoiceRemove::-moz-focus-inner {
padding: 0;
border: 0; }
.fstMultipleMode .fstControls {
box-sizing: border-box;
padding: .5rem .75rem 0rem;
overflow: hidden;
cursor: text; }
.fstMultipleMode .fstQueryInput {
float: left;
margin: 0 0 0.45em 0;
width: 2em;
color: #999; }
.fstMultipleMode .fstQueryInputExpanded {
float: none;
width: 100%;
}
.fstMultipleMode.fstActive,
.fstMultipleMode.fstActive .fstResults {
box-shadow: 0 0.2em 0.2em rgba(0, 0, 0, 0.1); }
.fstMultipleMode.fstActive .fstResults {
display: block;
z-index: 10;
border-top: 1px solid #D7D7D7; }
/* Actions */
.actions {
display: flex;
}
.actions-form {
display: flex;
margin-left: 35px;
}
.actions-form > * {
margin: 0 5px;
}
.actions-select {
width: 150px;
}
/* Action block */
.divider {
opacity: 0.2;
}
.action-block {
padding-left: 17px;
}
.action-block-delete {
color: #d9534f;
}
.action-block-view {
color: #5bc0de;
}
.action-block-edit {
color: #0275d8;
}
.action-block-delete:hover {
color: #c9302c;
}
.action-block-view:hover {
color: #31b0d5;
}
.action-block-edit:hover {
color: #025aa5;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.6.4/css/bootstrap-datepicker3.min.css">
<link rel="stylesheet" href="css/fastselect.css">
<title>Document</title>
</head>
<body>
<main class="pt-5 pb-5">
<div class="container">
<form class="form">
<section class="mb-5">
<h2 class="offset-1 display-4 mb-5">Add new</h2>
<!-- Title -->
<div class="form-group row">
<label for="title" class="offset-1 col-2 col-form-label">Title</label>
<div class="col-6">
<input class="form-control" type="text" placeholder="Some title..." id="title" name="title">
</div>
</div>
<!-- Description -->
<div class="form-group row">
<label for="description" class="offset-1 col-2 col-form-label">Description</label>
<div class="col-6">
<textarea class="form-control" type="text" placeholder="Some description..." id="description" name="description"></textarea>
</div>
</div>
<!-- Url -->
<div class="form-group row">
<label for="url" class="offset-1 col-2 col-form-label">Url</label>
<div class="col-6">
<input class="form-control" type="text" placeholder="Some url..." id="url" name="url">
</div>
</div>
<!-- Entity -->
<div class="form-group row has-success">
<label for="entity" class="offset-1 col-2 col-form-label">Entity</label>
<div class="col-6">
<input class="form-control form-control-success" type="text" placeholder="Write entity..." id="entity" name="entity">
<div class="form-control-feedback">Additional message</div>
</div>
<!--<div class="col-3">
<button class="btn btn-primary">Add entity</button>
</div>-->
</div>
<!-- Radar -->
<div class="form-group row">
<label for="radar" class="offset-1 col-2 col-form-label">Radar</label>
<div class="col-6">
<input
type="text"
id="radar"
data-url="json/radar.json"
data-load-once="true"
class="multiselect"
name="radar"/>
</div>
</div>
<!-- Industry -->
<div class="form-group row">
<label for="industry" class="offset-1 col-2 col-form-label">Industry</label>
<div class="col-6">
<input
type="text"
id="industry"
class="multiselect"
data-url="json/industry.json"
data-load-once="true"
name="industry"/>
</div>
</div>
<!-- Function -->
<div class="form-group row">
<label for="function" class="offset-1 col-2 col-form-label">Function</label>
<div class="col-6">
<input
type="text"
id="function"
class="multiselect"
data-url="json/function.json"
data-load-once="true"
name="function"/>
</div>
</div>
<!-- Media -->
<div class="form-group row">
<label for="media" class="offset-1 col-2 col-form-label">Media</label>
<div class="col-6">
<div class="row">
<div class="col-12">
<input
type="text"
id="media"
class="multiselect"
data-url="json/media.json"
data-load-once="true"
name="media"/>
</div>
<!--<div class="col-3">
<button class="btn btn-primary">Add media</button>
</div>-->
</div>
</div>
</div>
<!-- Industry -->
<div class="form-group row">
<label for="technology" class="offset-1 col-2 col-form-label">Technology</label>
<div class="col-6">
<input
type="text"
id="technology"
class="multiselect"
data-url="json/technology.json"
data-load-once="true"
name="technology"/>
</div>
</div>
<!-- Type -->
<div class="form-group row">
<label for="type" class="offset-1 col-2 col-form-label">Type</label>
<div class="col-3">
<input
type="text"
id="type"
class="multiselect"
data-url="json/type.json"
data-load-once="true"
name="type"/>
</div>
</div>
<!-- Region -->
<div class="form-group row">
<label for="region" class="offset-1 col-2 col-form-label">Region</label>
<div class="col-3">
<input
type="text"
id="region"
class="multiselect"
data-url="json/region.json"
data-load-once="true"
name="region"/>
</div>
</div>
<!-- Publish Date -->
<div class="form-group row">
<label for="publish-date" class="offset-1 col-2 col-form-label">Publish Date</label>
<div class="col-3">
<input id="publish-date" type="text" class="form-control" placeholder="Choose a date" name="date">
</div>
</div>
<!-- Tag -->
<div class="form-group row">
<label for="tag" class="offset-1 col-2 col-form-label">Tag</label>
<div class="col-6">
<input
type="text"
multiple
id="tag"
class="multiselect"
data-url="json/tags.json"
data-load-once="true"
name="tags"/>
</div>
</div>
<!-- Submit -->
<div class="form-group row">
<div class="offset-7 col-2">
<button type="submit" class="form-control btn btn-primary">Add</button>
</div>
</div>
</section>
</form>
</div>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.6.4/js/bootstrap-datepicker.min.js"></script>
<script src="http://dbrekalo.github.io/fastselect/dist/fastselect.standalone.js"></script>
<script src="js/script.js"></script>
</body>
</html>
\ No newline at end of file
(function(factory) {
if (typeof define === 'function' && define.amd) {
define(['jquery'], factory);
} else if (typeof module === 'object' && module.exports) {
module.exports = factory(require('jquery'));
} else {
factory(jQuery);
}
}(function($) {
var $document = $(window.document),
instanceNum = 0,
eventStringRE = /\w\b/g,
keyMap = {
13: 'enter',
27: 'escape',
40: 'downArrow',
38: 'upArrow'
};
function Fastsearch(inputElement, options) {
this.init.apply(this, arguments);
}
$.extend(Fastsearch.prototype, {
init: function(inputElement, options) {
options = this.options = $.extend(true, {}, Fastsearch.defaults, options);
this.$input = $(inputElement);
this.$el = options.wrapSelector instanceof $ ? options.wrapSelector : this.$input.closest(options.wrapSelector);
Fastsearch.pickTo(options, this.$el.data(), [
'url', 'onItemSelect', 'noResultsText', 'inputIdName', 'apiInputName'
]);
options.url = options.url || this.$el.attr('action');
this.ens = '.fastsearch' + (++instanceNum);
this.itemSelector = Fastsearch.selectorFromClass(options.itemClass);
this.focusedItemSelector = Fastsearch.selectorFromClass(options.focusedItemClass);
this.events();
},
namespaceEvents: function(events) {
var eventNamespace = this.ens;
return events.replace(eventStringRE, function(match) {
return match + eventNamespace;
});
},
events: function() {
var self = this,
options = this.options;
this.$input.on(this.namespaceEvents('keyup focus click'), function(e) {
keyMap[e.keyCode] !== 'enter' && self.handleTyping();
}).on(this.namespaceEvents('keydown'), function(e) {
keyMap[e.keyCode] === 'enter' && options.preventSubmit && e.preventDefault();
if (self.hasResults && self.resultsOpened) {
switch (keyMap[e.keyCode]) {
case 'downArrow': e.preventDefault(); self.navigateItem('down'); break;
case 'upArrow': e.preventDefault(); self.navigateItem('up'); break;
case 'enter': self.onEnter(e); break;
}
}
});
this.$el.on(this.namespaceEvents('click'), this.itemSelector, function(e) {
e.preventDefault();
self.handleItemSelect($(this));
});
options.mouseEvents && this.$el.on(this.namespaceEvents('mouseleave'), this.itemSelector, function(e) {
$(this).removeClass(options.focusedItemClass);
}).on(this.namespaceEvents('mouseenter'), this.itemSelector, function(e) {
self.$resultItems.removeClass(options.focusedItemClass);
$(this).addClass(options.focusedItemClass);
});
},
handleTyping: function() {
var inputValue = $.trim(this.$input.val()),
self = this;
if (inputValue.length < this.options.minQueryLength) {
this.hideResults();
} else if (inputValue === this.query) {
this.showResults();
} else {
clearTimeout(this.keyupTimeout);
this.keyupTimeout = setTimeout(function() {
self.$el.addClass(self.options.loadingClass);
self.query = inputValue;
self.getResults(function(data) {
self.showResults(self.storeResponse(data).generateResults(data));
});
}, this.options.typeTimeout);
}
},
getResults: function(callback) {
var self = this,
options = this.options,
formValues = this.$el.find('input, textarea, select').serializeArray();
if (options.apiInputName) {
formValues.push({'name': options.apiInputName, 'value': this.$input.val()});
}
$.get(options.url, formValues, function(data) {
callback(options.parseResponse ? options.parseResponse.call(self, data, self) : data);
});
},
storeResponse: function(data) {
this.responseData = data;
this.hasResults = data.length !== 0;
return this;
},
generateResults: function(data) {
var $allResults = $('<div>'),
options = this.options;
if (options.template) {
return $(options.template(data, this));
}
if (data.length === 0) {
$allResults.html(
'<p class="' + options.noResultsClass + '">' +
(typeof options.noResultsText === 'function' ? options.noResultsText.call(this) : options.noResultsText) +
'</p>'
);
} else {
if (this.options.responseType === 'html') {
$allResults.html(data);
} else {
this['generate' + (data[0][options.responseFormat.groupItems] ? 'GroupedResults' : 'SimpleResults')](data, $allResults);
}
}
return $allResults.children();
},
generateSimpleResults: function(data, $cont) {
var self = this;
this.itemModels = data;
$.each(data, function(i, item) {
$cont.append(self.generateItem(item));
});
},
generateGroupedResults: function(data, $cont) {
var self = this,
options = this.options,
format = options.responseFormat;
this.itemModels = [];
$.each(data, function(i, groupData) {
var $group = $('<div class="' + options.groupClass + '">').appendTo($cont);
groupData[format.groupCaption] && $group.append(
'<h3 class="' + options.groupTitleClass + '">' + groupData[format.groupCaption] + '</h3>'
);
$.each(groupData.items, function(i, item) {
self.itemModels.push(item);
$group.append(self.generateItem(item));
});
options.onGroupCreate && options.onGroupCreate.call(self, $group, groupData, self);
});
},
generateItem: function(item) {
var options = this.options,
format = options.responseFormat,
url = item[format.url],
html = item[format.html] || item[format.label],
$tag = $('<' + (url ? 'a' : 'span') + '>').html(html).addClass(options.itemClass);
url && $tag.attr('href', url);
options.onItemCreate && options.onItemCreate.call(this, $tag, item, this);
return $tag;
},
showResults: function($content) {
if (!$content && this.resultsOpened) {
return;
}
this.$el.removeClass(this.options.loadingClass).addClass(this.options.resultsOpenedClass);
if (this.options.flipOnBottom) {
this.checkDropdownPosition();
}
this.$resultsCont = this.$resultsCont || $('<div>').addClass(this.options.resultsContClass).appendTo(this.$el);
if ($content) {
this.$resultsCont.html($content);
this.$resultItems = this.$resultsCont.find(this.itemSelector);
this.options.onResultsCreate && this.options.onResultsCreate.call(this, this.$resultsCont, this.responseData, this);
}
if (!this.resultsOpened) {
this.documentCancelEvents('on');
this.$input.trigger('openingResults');
}
if (this.options.focusFirstItem && this.$resultItems && this.$resultItems.length) {
this.navigateItem('down');
}
this.resultsOpened = true;
},
checkDropdownPosition: function() {
var flipOnBottom = this.options.flipOnBottom;
var offset = typeof flipOnBottom === 'boolean' && flipOnBottom ? 400 : flipOnBottom;
var isFlipped = this.$input.offset().top + offset > $document.height();
this.$el.toggleClass(this.options.resultsFlippedClass, isFlipped);
},
documentCancelEvents: function(setup, onCancel) {
var self = this;
if (setup === 'off' && this.closeEventsSetuped) {
$document.off(this.ens);
this.closeEventsSetuped = false;
return;
} else if (setup === 'on' && !this.closeEventsSetuped) {
$document.on(this.namespaceEvents('click keyup'), function(e) {
if (keyMap[e.keyCode] === 'escape' || (!$(e.target).is(self.$el) && !$.contains(self.$el.get(0), e.target) && $.contains(document.documentElement, e.target))) {
onCancel ? onCancel.call(self) : self.hideResults();
}
});
this.closeEventsSetuped = true;
}
},
navigateItem: function(direction) {
var $currentItem = this.$resultItems.filter(this.focusedItemSelector),
maxPosition = this.$resultItems.length - 1;
if ($currentItem.length === 0) {
this.$resultItems.eq(direction === 'up' ? maxPosition : 0).addClass(this.options.focusedItemClass);
return;
}
var currentPosition = this.$resultItems.index($currentItem),
nextPosition = direction === 'up' ? currentPosition - 1 : currentPosition + 1;
nextPosition > maxPosition && (nextPosition = 0);
nextPosition < 0 && (nextPosition = maxPosition);
$currentItem.removeClass(this.options.focusedItemClass);
this.$resultItems.eq(nextPosition).addClass(this.options.focusedItemClass);
},
navigateDown: function() {
this.navigateItem('down');
},
navigateUp: function() {
this.navigateItem('up');
},
onEnter: function(e) {
var $currentItem = this.$resultItems.filter(this.focusedItemSelector);
if ($currentItem.length) {
e.preventDefault();
this.handleItemSelect($currentItem);
}
},
handleItemSelect: function($item) {
var selectOption = this.options.onItemSelect,
model = this.itemModels.length ? this.itemModels[this.$resultItems.index($item)] : {};
this.$input.trigger('itemSelected');
if (selectOption === 'fillInput') {
this.fillInput(model);
} else if (selectOption === 'follow') {
window.location.href = $item.attr('href');
} else if (typeof selectOption === 'function') {
selectOption.call(this, $item, model, this);
}
},
fillInput: function(model) {
var options = this.options,
format = options.responseFormat;
this.query = model[format.label];
this.$input.val(model[format.label]).trigger('change');
if (options.fillInputId && model.id) {
if (!this.$inputId) {
var inputIdName = options.inputIdName || this.$input.attr('name') + '_id';
this.$inputId = this.$el.find('input[name="' + inputIdName + '"]');
if (!this.$inputId.length) {
this.$inputId = $('<input type="hidden" name="' + inputIdName + '" />').appendTo(this.$el);
}
}
this.$inputId.val(model.id).trigger('change');
}
this.hideResults();
},
hideResults: function() {
if (this.resultsOpened) {
this.resultsOpened = false;
this.$el.removeClass(this.options.resultsOpenedClass);
this.$input.trigger('closingResults');
this.documentCancelEvents('off');
}
return this;
},
clear: function() {
this.hideResults();
this.$input.val('').trigger('change');
return this;
},
destroy: function() {
$document.off(this.ens);
this.$input.off(this.ens);
this.$el.off(this.ens)
.removeClass(this.options.resultsOpenedClass)
.removeClass(this.options.loadingClass);
if (this.$resultsCont) {
this.$resultsCont.remove();
delete this.$resultsCont;
}
delete this.$el.data().fastsearch;
}
});
$.extend(Fastsearch, {
pickTo: function(dest, src, keys) {
$.each(keys, function(i, key) {
dest[key] = (src && src[key]) || dest[key];
});
return dest;
},
selectorFromClass: function(classes) {
return '.' + classes.replace(/\s/g, '.');
}
});
Fastsearch.defaults = {
wrapSelector: 'form', // fastsearch container defaults to closest form. Provide selector for something other
url: null, // plugin will get data from data-url propery, url option or container action attribute
responseType: 'JSON', // default expected server response type - can be set to html if that is what server returns
preventSubmit: false, // prevent submit of form with enter keypress
resultsContClass: 'fs_results', // html classes
resultsOpenedClass: 'fsr_opened',
resultsFlippedClass: 'fsr_flipped',
groupClass: 'fs_group',
itemClass: 'fs_result_item',
groupTitleClass: 'fs_group_title',
loadingClass: 'loading',
noResultsClass: 'fs_no_results',
focusedItemClass: 'focused',
typeTimeout: 140, // try not to hammer server with request for each keystroke if possible
minQueryLength: 2, // minimal number of characters needed for plugin to send request to server
template: null, // provide your template function if you need one - function(data, fastsearchApi)
mouseEvents: !('ontouchstart' in window || navigator.maxTouchPoints > 0 || navigator.msMaxTouchPoints > 0), // detect if client is touch enabled so plugin can decide if mouse specific events should be set.
focusFirstItem: false,
flipOnBottom: false,
responseFormat: { // Adjust where plugin looks for data in your JSON server response
url: 'url',
html: 'html',
label: 'label',
groupCaption: 'caption',
groupItems: 'items'
},
fillInputId: true, // on item select plugin will try to write selected id from item data model to input
inputIdName: null, // on item select plugin will try to write selected id from item data model to input with this name
apiInputName: null, // by default plugin will post input name as query parameter - you can provide custom one here
noResultsText: 'No results found',
onItemSelect: 'follow', // by default plugin follows selected link - other options available are "fillInput" and custom callback - function($item, model, fastsearchApi)
parseResponse: null, // parse server response with your handler and return processed data - function(response, fastsearchApi)
onResultsCreate: null, // adjust results element - function($allResults, data, fastsearchApi)
onGroupCreate: null, // adjust group element when created - function($group, groupModel, fastsearchApi)
onItemCreate: null // adjust item element when created - function($item, model, fastsearchApi)
};
$.fastsearch = Fastsearch;
$.fn.fastsearch = function(options) {
return this.each(function() {
if (!$.data(this, 'fastsearch')) {
$.data(this, 'fastsearch', new Fastsearch(this, options));
}
});
};
return $;
}));
\ No newline at end of file
// Table page
$(document).ready(function() {
// ------------------------------
// Settings
// ------------------------------
var AJAX_URL = 'https://localhost:3002';
var selectAllChk = '#select-all';
var chk = '.checkbox';
var counter = '.actions-delete-counter';
var deleteBtn = '.js-delete-items';
// Action block
var actionView = '.action-block-view';
var actionEdit = '.action-block-edit';
var actionDelete = '.action-block-delete';
function actionData(element) {
var id = $(element).closest('tr').find('.checkbox').prop('id');
var type = $(element).data().type;
var elementDetails = {
id: id,
type: type
};
return elementDetails;
}
function updateCounter() {
var count = 0;
var presentSelected = $('.checkbox:checked').length > 0 ? false : true;
var selectedLength = $('.checkbox').each(function(index, item) {
$(item).prop('checked') === true
? count++
: ''
});
$(counter).text(count);
$(deleteBtn).prop('disabled', presentSelected);
}
function deleteData() {
var items = {
id: [],
type: 'deleteAll'
};
var selectedLength = $('.checkbox').each(function(index, item) {
$(item).prop('checked') === true
? items.id.push($(item).prop('id'))
: ''
});
return items;
}
function ajaxPost(url, data) {
$.ajax({
type: "POST", //rest Type
dataType: 'jsonp', //mispelled
data: JSON.stringify(data),
url: url,
async: false,
contentType: "application/json; charset=utf-8",
success: function (msg) {
console.log(msg);
}
})
}
updateCounter();
$(selectAllChk).click(function () {
$(chk).prop('checked', $(this).prop('checked'));
updateCounter();
});
$(chk).on('click', updateCounter);
$(deleteBtn).on('click', function() {
var data = deleteData();
ajaxPost(AJAX_URL, data);
});
$(actionView).on('click', function(e) {
e.preventDefault();
var data = actionData(this);
ajaxPost(AJAX_URL, data);
});
$(actionEdit).on('click', function(e) {
e.preventDefault();
var data = actionData(this);
ajaxPost(AJAX_URL, data);
});
$(actionDelete).on('click', function(e) {
e.preventDefault();
var data = actionData(this);
ajaxPost(AJAX_URL, data);
});
});
// Index Page
$(document).ready(function() {
$('.multiselect').fastselect();
$('#publish-date').datepicker();
});
\ No newline at end of file
[
{"text": "Func1", "value" : "Func1"},
{"text": "Func2", "value" : "Func2"},
{"text": "Func3", "value" : "Func3"},
{"text": "Func4", "value" : "Func4"},
{"text": "Func5", "value" : "Func5"}
]
\ No newline at end of file
[
{"text": "Algeria", "value" : "Algeria"},
{"text": "Angola", "value" : "Angola"},
{"text": "Angola", "value" : "as"},
{"text": "Angola", "value" : "dsda"},
{"text": "Angola", "value" : "aasdadsd"}
]
\ No newline at end of file
[
{"text": "Algeria", "value" : "Algeria"},
{"text": "Angola", "value" : "Angola"},
{"text": "Angola", "value" : "as"},
{"text": "Angola", "value" : "dsda"},
{"text": "Angola", "value" : "aasdadsd"}
]
\ No newline at end of file
[
{"text": "Algeria", "value" : "Algeria"},
{"text": "Angola", "value" : "Angola"},
{"text": "Angola", "value" : "as"},
{"text": "Angola", "value" : "dsda"},
{"text": "Angola", "value" : "aasdadsd"}
]
\ No newline at end of file
[
{"text": "Algeria", "value" : "Algeria"},
{"text": "Angola", "value" : "Angola"},
{"text": "Angola", "value" : "as"},
{"text": "Angola", "value" : "dsda"},
{"text": "Angola", "value" : "aasdadsd"}
]
\ No newline at end of file
[
{"text": "Algeria", "value" : "Algeria"},
{"text": "Angola", "value" : "Angola"},
{"text": "Angola", "value" : "as"},
{"text": "Angola", "value" : "dsda"},
{"text": "Angola", "value" : "aasdadsd"}
]
\ No newline at end of file
[
{"text": "Algeria", "value" : "Algeria"},
{"text": "Angola", "value" : "Angola"},
{"text": "Angola", "value" : "as"},
{"text": "Angola", "value" : "dsda"},
{"text": "Angola", "value" : "aasdadsd"}
]
\ No newline at end of file
[
{"text": "Algeria", "value" : "Algeria"},
{"text": "Angola", "value" : "Angola"},
{"text": "Angola", "value" : "as"},
{"text": "Angola", "value" : "dsda"},
{"text": "Angola", "value" : "aasdadsd"}
]
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<title>Document</title>
</head>
<body>
<div class="container mt-5">
<h1>Bla-bla-bla. La-la-la. Blu-lu-lu. A-a-a. Opa-cha-opa-cha.</h1>
<a href="#" class="btn btn-primary mt-3">Edit</a>
<div class="new-content mt-5">
<div class="new-content-field mb-4">
<h5 class="new-content-title">- NY</h5>
</div>
<div class="new-content-field mb-4">
<h5 class="new-content-title">EntityURL</h5>
<div class="new-content-description">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Molestias quia aliquid praesentium ratione at eos ut earum quam, distinctio hic voluptatum tempora porro eligendi, blanditiis illum modi debitis, eum culpa.</div>
</div>
<div class="new-content-field mb-4">
<h5 class="new-content-title">Media</h5>
<div class="new-content-description">
<div>TechCrunch</div>
<a href="#">http://techcrunch.com</a>
</div>
</div>
</div>
</div>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<title>Document</title>
</head>
<body>
<nav class="navbar navbar-toggleable-md navbar-light bg-faded">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo01" aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo01">
<div class="actions mr-auto">
<button class="js-delete-items btn btn-danger">
<span>Delete items (</span><span class="actions-delete-counter">0</span><span>)</span>
</button>
<form class="actions-form">
<select class="form-control actions-select">
<option>Default</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
<select class="form-control actions-select">
<option>Default</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
<button type="submit" class="btn btn-success">Filter</button>
</form>
</div>
<a href="/" class="btn btn-primary">Add News</a>
</div>
</nav>
<form class="form">
<table class="table table-hover">
<thead class="thead-inverse">
<tr>
<th>
<span><input id="select-all" type="checkbox"></span>
<span>Title</span>
</th>
<th>Media</th>
<th>Type</th>
<th>Region</th>
<th>Publish date</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span><input id="chk-1" class="checkbox" type="checkbox"></span>
<span><a href="index.html">Mark</a></span>
<div class="action-block">
<a href="#" data-type="view" class="action-block-view"><strong>View</strong></a>
<span class="divider">|</span>
<a href="#" data-type="edit" class="action-block-edit"><strong>Edit</strong></a>
<span class="divider">|</span>
<a href="#" data-type="delete" class="action-block-delete"><strong>Delete</strong></a>
</div>
</td>
<td>TechCrunch</td>
<td>Startup</td>
<td>NA</td>
<td>2016-08-25 00:00:00</td>
</tr>
<tr>
<td>
<span><input id="chk-2" class="checkbox" type="checkbox"></span>
<span><a href="index.html">Mark</a></span>
<div class="action-block">
<a href="#" data-type="view" class="action-block-view"><strong>View</strong></a>
<span class="divider">|</span>
<a href="#" data-type="edit" class="action-block-edit"><strong>Edit</strong></a>
<span class="divider">|</span>
<a href="#" data-type="delete" class="action-block-delete"><strong>Delete</strong></a>
</div>
</td>
<td>TechCrunch</td>
<td>Startup</td>
<td>NA</td>
<td>2016-08-25 00:00:00</td>
</tr>
</tbody>
</table>
</form>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/js/bootstrap.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
-- phpMyAdmin SQL Dump
-- version 4.2.12deb2+deb8u2
-- http://www.phpmyadmin.net
--
-- Хост: localhost
-- Час створення: Трв 25 2017 р., 11:17
-- Версія сервера: 5.5.54-0+deb8u1
-- Версія PHP: 5.6.29-0+deb8u1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- База даних: `esi`
--
-- --------------------------------------------------------
--
-- Структура таблиці `wp_esi_entity`
--
CREATE TABLE IF NOT EXISTS `wp_esi_entity` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`description` text NOT NULL,
`url` varchar(2083) NOT NULL,
`is_investor` tinyint(1) NOT NULL,
`country` varchar(2) NOT NULL,
`city` varchar(255) NOT NULL,
`entity_type_id` int(11) NOT NULL,
`founded_in` date NOT NULL DEFAULT '0000-00-00',
`employees` int(11) NOT NULL DEFAULT '0',
`acquired_by` int(11) DEFAULT NULL,
`acquired_at` date NOT NULL DEFAULT '0000-00-00',
`acquired_amount` int(11) DEFAULT NULL,
`total_raised` int(11) DEFAULT NULL,
`latest_round_type` int(11) DEFAULT NULL,
`facebook_link` text NOT NULL,
`twitter_link` text NOT NULL,
`linkedin_link` text NOT NULL,
`status` smallint(1) NOT NULL DEFAULT '1'
) ENGINE=InnoDB AUTO_INCREMENT=15957 DEFAULT CHARSET=utf8;
--
-- Індекси збережених таблиць
--
--
-- Індекси таблиці `wp_esi_entity`
--
ALTER TABLE `wp_esi_entity`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT для збережених таблиць
--
--
-- AUTO_INCREMENT для таблиці `wp_esi_entity`
--
ALTER TABLE `wp_esi_entity`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=15957;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- phpMyAdmin SQL Dump
-- version 4.2.12deb2+deb8u2
-- http://www.phpmyadmin.net
--
-- Хост: localhost
-- Час створення: Трв 24 2017 р., 17:04
-- Версія сервера: 5.5.54-0+deb8u1
-- Версія PHP: 5.6.29-0+deb8u1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- База даних: `esi`
--
--
-- Дамп даних таблиці `wp_esi_news_accept`
--
INSERT INTO `wp_esi_news_accept` (`id`, `title`, `url`, `description`, `media_id`, `type_id`, `region_id`, `post_id`, `publish_date`, `record_date`, `company_id`, `is_accepted`) VALUES
(1, 'Blue Cross Blue Shield Association taps Lyft for nationwide ride-sharing program', 'http://www.mobihealthnews.com/content/blue-cross-blue-shield-association-taps-lyft-nationwide-ride-sharing-program', 'From cost and coverage to time and convenience, there are many factors that can hinder healthcare access. And for an estimated 3.6 million Americans, the main obstacle in getting to their medical appointments involves an engine and a set of wheels. In effort to reduce the number of missed or delayed doctor’s appointments that are attributed to a lack of dependable transportation options, Blue...', 43, 2, 2, 0, '2017-05-10 00:00:00', '2017-05-23 00:00:00', 3, 0),
(2, 'Digital health news briefs for 3/7/2017', 'http://www.mobihealthnews.com/content/digital-health-news-briefs-372017', 'Uber has made digital health news several times for partnering with healthcare organizations to provide transportation for patients. In fact, they announced a partnership with an NHS trust along those lines just yesterday. But in Saudi Arabia, Jordan, and Egypt, the company has a different kind of digital health partnership. The company has partnered with mobile medical app AlTibbi to make...', 43, 2, 2, 0, '2017-03-07 00:00:00', '2017-05-23 00:00:00', 3, 0),
(3, 'Uber tapped by NHS for on-demand caregiver/patient transportation, and more digital health deals', 'http://www.mobihealthnews.com/content/uber-tapped-nhs-demand-caregiverpatient-transportation-and-more-digital-health-deals', 'By way of a contract with UK-based healthcare startup Cera, Uber will help facilitate faster patient care to those in England''s National Health Service system by providing on-demand transportation for caregivers and patients between hospitals and homes. Cera originally launched the caregiver-patient matching service in November with a few smaller clinical organizations, and Uber acts as the...', 43, 2, 2, 0, '2017-03-06 00:00:00', '2017-05-23 00:00:00', 3, 0),
(4, 'Following MedStar partnership, Uber hires new team to work with providers', 'http://www.mobihealthnews.com/content/following-medstar-partnership-uber-hires-new-team-work-providers', 'Uber continues to see healthcare as a major area for growth, according to Lindsay Elin, head of Federal and Community Affairs at Uber. At a panel at the Connected Health Conference in Washington, DC today, Elin spoke about a partnership with health system MedStar (whose director of consumer health initiatives, Pete Celano, also attended), a new team of employees dedicated to health, and the...', 43, 2, 2, 0, '2016-12-12 00:00:00', '2017-05-23 00:00:00', 3, 0),
(5, 'Circulation, a startup that helps hospitals use Uber for medical transportation, gets seed investment', 'http://www.mobihealthnews.com/content/circulation-startup-helps-hospitals-use-uber-medical-transportation-gets-seed-investment', 'Circulation, a startup using Uber''s technology to facilitate non-emergency medical transportation, has secured an undisclosed seed investment from Flare Capital. Last month the startup, whose founding team includes Boston Children''s Hospital CIO John Brownstein, announced its partnership with Uber as the ridesharing company''s "preferred healthcare partner." In addition to Brownstein, the company''...', 43, 2, 2, 0, '2016-10-13 00:00:00', '2017-05-23 00:00:00', 3, 0),
(6, 'Uber, Lyft gear up to help get patients clinical trial sites', 'http://www.mobihealthnews.com/content/uber-lyft-gear-help-get-patients-clinical-trial-sites', 'If you were to make a list of companies you''d expect to see at a clinical trial-focused health technology conference like DPharm Disruptive Innovation US, you probably wouldn''t include ridesharing companies Uber and Lyft. But they were both in attendance in Boston today, presenting remarkably similar visions for using their software platforms to solve transportation problems in healthcare. "Why...', 43, 2, 2, 0, '2016-09-20 00:00:00', '2017-05-23 00:00:00', 3, 0),
(7, 'Accenture''s top five digital health trends for 2016', 'http://www.mobihealthnews.com/content/accentures-top-five-digital-health-trends-2016', 'Accenture held a webcast today diving into five trends the consulting firm has identified as major driving forces right now in digital health. Report author and Senior Global Managing Director for Accenture Health Dr. Kaveh Safavi was joined by health economist and blogger Jane Sarasohn-Kahn to discuss the five trends. The first trend, "Intelligent Automation", covers a range of tools that...', 43, 2, 2, 0, '2016-06-28 00:00:00', '2017-05-23 00:00:00', 3, 0),
(8, 'With slew of partnerships, Uber rolls up to healthcare space', 'http://www.mobihealthnews.com/48727/with-slew-of-partnerships-uber-rolls-up-to-healthcare-space', 'With every new innovator in digital health, it seems like there''s a temptation to crown an "Uber for Health" that will disrupt the industry in a radical consumer-facing way. But lately, it looks like Uber itself might be interested in that title. Over the last week, Uber has collaborated with three different digital health companies and named Boston Children''s Hospital''s John Brownstein its first...', 43, 2, 2, 0, '2015-11-20 00:00:00', '2017-05-23 00:00:00', 3, 0),
(9, 'What does it mean to own your health data?', 'http://www.mobihealthnews.com/46638/what-does-it-mean-to-own-your-health-data', ' In Topol and Kish''s formulation, individual health data will feed into big data breakthroughs. "Give me my damn data" has been a refrain among e-patients for many years. But what does it really mean to own data? That''s a much larger question that Scripps Health Chief Academic Officer Dr. Eric Topol and Leonard Kish, Topol''s co-founder at unpatient.org, have tackled the question in an op-ed...', 43, 2, 2, 0, '2015-09-09 00:00:00', '2017-05-23 00:00:00', 3, 0),
(10, 'Why what works for Uber may not work for medical apps', 'http://www.mobihealthnews.com/45826/why-what-works-for-uber-may-not-work-for-medical-apps', 'By Bradley Merrill Thompson Healthcare in America needs disrupting. The media has widely reported on the high cost of, and poor outcomes produced by, the US health care system. Fortunately, attracted by possible profit in a market that currently constitutes over 17 percent of GDP, quite a few startups are anxious to do the needed disrupting. Indeed, innovators from many places outside of...', 43, 2, 2, 0, '2015-08-05 00:00:00', '2017-05-23 00:00:00', 3, 0),
(11, 'AARP study, White House panel weigh in on how to make tech accessible for seniors', 'http://www.mobihealthnews.com/45308/aarp-study-white-house-panel-weigh-in-on-how-to-make-tech-accessible-for-seniors', ' President Obama addresses the White House Conference on Aging. Yesterday, celebrating 50 years of Medicare and 80 years of Social Security, the White House hosted its Conference on Aging. At a panel during the summit, experts discussed how to make technology accessible to seniors. A study on that same topic was released by AARP today. "We choose to do big things here in America," President...', 43, 2, 2, 0, '2015-07-14 00:00:00', '2017-05-23 00:00:00', 3, 0),
(12, 'Five ways a Boston Children''s Hospital spin-off is using social media for public health', 'http://www.mobihealthnews.com/42072/five-ways-a-boston-childrens-hospital-spin-off-is-using-social-media-for-public-health', 'John Brownstein''s Computational Epidemiology Group at Boston Children’s Hospital has received attention in the past for its efforts to use data streams from social media, along with publicly available data from the government, to predict outbreaks of disease. Under Brownstein''s directorship, the team has mined Yelp for the foods most likely to cause food poisoning, helped aggregate data about the...', 43, 2, 2, 0, '2015-04-02 00:00:00', '2017-05-23 00:00:00', 3, 0),
(13, 'Pager gets $10.4M to take its house call app out of New York', 'http://www.mobihealthnews.com/41227/pager-gets-10-4m-to-take-its-house-call-app-out-of-new-york', 'Pager, which offers an app consumers can use to request in-person physician house calls, has raised $10.4 million according to VentureBeat. The round was put up by existing seed investors Lux Capital and Montage Ventures, and new investors Goodwater Capital and Summation Health Ventures. New York City-based Pager, which launched last May, is one of many startups to have called itself an “Uber for...', 43, 2, 2, 0, '2015-03-10 00:00:00', '2017-05-23 00:00:00', 3, 0),
(14, 'Blue Cross Blue Shield Association taps Lyft for nationwide ride-sharing program', 'http://www.mobihealthnews.com/content/blue-cross-blue-shield-association-taps-lyft-nationwide-ride-sharing-program', 'From cost and coverage to time and convenience, there are many factors that can hinder healthcare access. And for an estimated 3.6 million Americans, the main obstacle in getting to their medical appointments involves an engine and a set of wheels. In effort to reduce the number of missed or delayed doctor’s appointments that are attributed to a lack of dependable transportation options, Blue...', 43, 2, 2, 0, '2017-05-10 00:00:00', '2017-05-24 00:00:00', 3, 0),
(15, 'Digital health news briefs for 3/7/2017', 'http://www.mobihealthnews.com/content/digital-health-news-briefs-372017', 'Uber has made digital health news several times for partnering with healthcare organizations to provide transportation for patients. In fact, they announced a partnership with an NHS trust along those lines just yesterday. But in Saudi Arabia, Jordan, and Egypt, the company has a different kind of digital health partnership. The company has partnered with mobile medical app AlTibbi to make...', 43, 2, 2, 0, '2017-03-07 00:00:00', '2017-05-24 00:00:00', 3, 0),
(16, 'Uber tapped by NHS for on-demand caregiver/patient transportation, and more digital health deals', 'http://www.mobihealthnews.com/content/uber-tapped-nhs-demand-caregiverpatient-transportation-and-more-digital-health-deals', 'By way of a contract with UK-based healthcare startup Cera, Uber will help facilitate faster patient care to those in England''s National Health Service system by providing on-demand transportation for caregivers and patients between hospitals and homes. Cera originally launched the caregiver-patient matching service in November with a few smaller clinical organizations, and Uber acts as the...', 43, 2, 2, 0, '2017-03-06 00:00:00', '2017-05-24 00:00:00', 3, 0),
(17, 'Following MedStar partnership, Uber hires new team to work with providers', 'http://www.mobihealthnews.com/content/following-medstar-partnership-uber-hires-new-team-work-providers', 'Uber continues to see healthcare as a major area for growth, according to Lindsay Elin, head of Federal and Community Affairs at Uber. At a panel at the Connected Health Conference in Washington, DC today, Elin spoke about a partnership with health system MedStar (whose director of consumer health initiatives, Pete Celano, also attended), a new team of employees dedicated to health, and the...', 43, 2, 2, 0, '2016-12-12 00:00:00', '2017-05-24 00:00:00', 3, 0),
(18, 'Circulation, a startup that helps hospitals use Uber for medical transportation, gets seed investment', 'http://www.mobihealthnews.com/content/circulation-startup-helps-hospitals-use-uber-medical-transportation-gets-seed-investment', 'Circulation, a startup using Uber''s technology to facilitate non-emergency medical transportation, has secured an undisclosed seed investment from Flare Capital. Last month the startup, whose founding team includes Boston Children''s Hospital CIO John Brownstein, announced its partnership with Uber as the ridesharing company''s "preferred healthcare partner." In addition to Brownstein, the company''...', 43, 2, 2, 0, '2016-10-13 00:00:00', '2017-05-24 00:00:00', 3, 0),
(19, 'Uber, Lyft gear up to help get patients clinical trial sites', 'http://www.mobihealthnews.com/content/uber-lyft-gear-help-get-patients-clinical-trial-sites', 'If you were to make a list of companies you''d expect to see at a clinical trial-focused health technology conference like DPharm Disruptive Innovation US, you probably wouldn''t include ridesharing companies Uber and Lyft. But they were both in attendance in Boston today, presenting remarkably similar visions for using their software platforms to solve transportation problems in healthcare. "Why...', 43, 2, 2, 0, '2016-09-20 00:00:00', '2017-05-24 00:00:00', 3, 0),
(20, 'Accenture''s top five digital health trends for 2016', 'http://www.mobihealthnews.com/content/accentures-top-five-digital-health-trends-2016', 'Accenture held a webcast today diving into five trends the consulting firm has identified as major driving forces right now in digital health. Report author and Senior Global Managing Director for Accenture Health Dr. Kaveh Safavi was joined by health economist and blogger Jane Sarasohn-Kahn to discuss the five trends. The first trend, "Intelligent Automation", covers a range of tools that...', 43, 2, 2, 0, '2016-06-28 00:00:00', '2017-05-24 00:00:00', 3, 0),
(21, 'With slew of partnerships, Uber rolls up to healthcare space', 'http://www.mobihealthnews.com/48727/with-slew-of-partnerships-uber-rolls-up-to-healthcare-space', 'With every new innovator in digital health, it seems like there''s a temptation to crown an "Uber for Health" that will disrupt the industry in a radical consumer-facing way. But lately, it looks like Uber itself might be interested in that title. Over the last week, Uber has collaborated with three different digital health companies and named Boston Children''s Hospital''s John Brownstein its first...', 43, 2, 2, 0, '2015-11-20 00:00:00', '2017-05-24 00:00:00', 3, 0),
(22, 'What does it mean to own your health data?', 'http://www.mobihealthnews.com/46638/what-does-it-mean-to-own-your-health-data', ' In Topol and Kish''s formulation, individual health data will feed into big data breakthroughs. "Give me my damn data" has been a refrain among e-patients for many years. But what does it really mean to own data? That''s a much larger question that Scripps Health Chief Academic Officer Dr. Eric Topol and Leonard Kish, Topol''s co-founder at unpatient.org, have tackled the question in an op-ed...', 43, 2, 2, 0, '2015-09-09 00:00:00', '2017-05-24 00:00:00', 3, 0),
(23, 'Why what works for Uber may not work for medical apps', 'http://www.mobihealthnews.com/45826/why-what-works-for-uber-may-not-work-for-medical-apps', 'By Bradley Merrill Thompson Healthcare in America needs disrupting. The media has widely reported on the high cost of, and poor outcomes produced by, the US health care system. Fortunately, attracted by possible profit in a market that currently constitutes over 17 percent of GDP, quite a few startups are anxious to do the needed disrupting. Indeed, innovators from many places outside of...', 43, 2, 2, 0, '2015-08-05 00:00:00', '2017-05-24 00:00:00', 3, 0),
(24, 'AARP study, White House panel weigh in on how to make tech accessible for seniors', 'http://www.mobihealthnews.com/45308/aarp-study-white-house-panel-weigh-in-on-how-to-make-tech-accessible-for-seniors', ' President Obama addresses the White House Conference on Aging. Yesterday, celebrating 50 years of Medicare and 80 years of Social Security, the White House hosted its Conference on Aging. At a panel during the summit, experts discussed how to make technology accessible to seniors. A study on that same topic was released by AARP today. "We choose to do big things here in America," President...', 43, 2, 2, 0, '2015-07-14 00:00:00', '2017-05-24 00:00:00', 3, 0),
(25, 'Five ways a Boston Children''s Hospital spin-off is using social media for public health', 'http://www.mobihealthnews.com/42072/five-ways-a-boston-childrens-hospital-spin-off-is-using-social-media-for-public-health', 'John Brownstein''s Computational Epidemiology Group at Boston Children’s Hospital has received attention in the past for its efforts to use data streams from social media, along with publicly available data from the government, to predict outbreaks of disease. Under Brownstein''s directorship, the team has mined Yelp for the foods most likely to cause food poisoning, helped aggregate data about the...', 43, 2, 2, 0, '2015-04-02 00:00:00', '2017-05-24 00:00:00', 3, 0),
(26, 'Pager gets $10.4M to take its house call app out of New York', 'http://www.mobihealthnews.com/41227/pager-gets-10-4m-to-take-its-house-call-app-out-of-new-york', 'Pager, which offers an app consumers can use to request in-person physician house calls, has raised $10.4 million according to VentureBeat. The round was put up by existing seed investors Lux Capital and Montage Ventures, and new investors Goodwater Capital and Summation Health Ventures. New York City-based Pager, which launched last May, is one of many startups to have called itself an “Uber for...', 43, 2, 2, 0, '2015-03-10 00:00:00', '2017-05-24 00:00:00', 3, 0),
(27, 'Blue Cross Blue Shield Association taps Lyft for nationwide ride-sharing program', 'http://www.mobihealthnews.com/content/blue-cross-blue-shield-association-taps-lyft-nationwide-ride-sharing-program', 'From cost and coverage to time and convenience, there are many factors that can hinder healthcare access. And for an estimated 3.6 million Americans, the main obstacle in getting to their medical appointments involves an engine and a set of wheels. In effort to reduce the number of missed or delayed doctor’s appointments that are attributed to a lack of dependable transportation options, Blue...', 43, 2, 2, 0, '2017-05-10 00:00:00', '2017-05-24 00:00:00', 3, 0),
(28, 'Digital health news briefs for 3/7/2017', 'http://www.mobihealthnews.com/content/digital-health-news-briefs-372017', 'Uber has made digital health news several times for partnering with healthcare organizations to provide transportation for patients. In fact, they announced a partnership with an NHS trust along those lines just yesterday. But in Saudi Arabia, Jordan, and Egypt, the company has a different kind of digital health partnership. The company has partnered with mobile medical app AlTibbi to make...', 43, 2, 2, 0, '2017-03-07 00:00:00', '2017-05-24 00:00:00', 3, 0),
(29, 'Uber tapped by NHS for on-demand caregiver/patient transportation, and more digital health deals', 'http://www.mobihealthnews.com/content/uber-tapped-nhs-demand-caregiverpatient-transportation-and-more-digital-health-deals', 'By way of a contract with UK-based healthcare startup Cera, Uber will help facilitate faster patient care to those in England''s National Health Service system by providing on-demand transportation for caregivers and patients between hospitals and homes. Cera originally launched the caregiver-patient matching service in November with a few smaller clinical organizations, and Uber acts as the...', 43, 2, 2, 0, '2017-03-06 00:00:00', '2017-05-24 00:00:00', 3, 0),
(30, 'Following MedStar partnership, Uber hires new team to work with providers', 'http://www.mobihealthnews.com/content/following-medstar-partnership-uber-hires-new-team-work-providers', 'Uber continues to see healthcare as a major area for growth, according to Lindsay Elin, head of Federal and Community Affairs at Uber. At a panel at the Connected Health Conference in Washington, DC today, Elin spoke about a partnership with health system MedStar (whose director of consumer health initiatives, Pete Celano, also attended), a new team of employees dedicated to health, and the...', 43, 2, 2, 0, '2016-12-12 00:00:00', '2017-05-24 00:00:00', 3, 0),
(31, 'Circulation, a startup that helps hospitals use Uber for medical transportation, gets seed investment', 'http://www.mobihealthnews.com/content/circulation-startup-helps-hospitals-use-uber-medical-transportation-gets-seed-investment', 'Circulation, a startup using Uber''s technology to facilitate non-emergency medical transportation, has secured an undisclosed seed investment from Flare Capital. Last month the startup, whose founding team includes Boston Children''s Hospital CIO John Brownstein, announced its partnership with Uber as the ridesharing company''s "preferred healthcare partner." In addition to Brownstein, the company''...', 43, 2, 2, 0, '2016-10-13 00:00:00', '2017-05-24 00:00:00', 3, 0),
(32, 'Uber, Lyft gear up to help get patients clinical trial sites', 'http://www.mobihealthnews.com/content/uber-lyft-gear-help-get-patients-clinical-trial-sites', 'If you were to make a list of companies you''d expect to see at a clinical trial-focused health technology conference like DPharm Disruptive Innovation US, you probably wouldn''t include ridesharing companies Uber and Lyft. But they were both in attendance in Boston today, presenting remarkably similar visions for using their software platforms to solve transportation problems in healthcare. "Why...', 43, 2, 2, 0, '2016-09-20 00:00:00', '2017-05-24 00:00:00', 3, 0),
(33, 'Accenture''s top five digital health trends for 2016', 'http://www.mobihealthnews.com/content/accentures-top-five-digital-health-trends-2016', 'Accenture held a webcast today diving into five trends the consulting firm has identified as major driving forces right now in digital health. Report author and Senior Global Managing Director for Accenture Health Dr. Kaveh Safavi was joined by health economist and blogger Jane Sarasohn-Kahn to discuss the five trends. The first trend, "Intelligent Automation", covers a range of tools that...', 43, 2, 2, 0, '2016-06-28 00:00:00', '2017-05-24 00:00:00', 3, 0),
(34, 'With slew of partnerships, Uber rolls up to healthcare space', 'http://www.mobihealthnews.com/48727/with-slew-of-partnerships-uber-rolls-up-to-healthcare-space', 'With every new innovator in digital health, it seems like there''s a temptation to crown an "Uber for Health" that will disrupt the industry in a radical consumer-facing way. But lately, it looks like Uber itself might be interested in that title. Over the last week, Uber has collaborated with three different digital health companies and named Boston Children''s Hospital''s John Brownstein its first...', 43, 2, 2, 0, '2015-11-20 00:00:00', '2017-05-24 00:00:00', 3, 0),
(35, 'What does it mean to own your health data?', 'http://www.mobihealthnews.com/46638/what-does-it-mean-to-own-your-health-data', ' In Topol and Kish''s formulation, individual health data will feed into big data breakthroughs. "Give me my damn data" has been a refrain among e-patients for many years. But what does it really mean to own data? That''s a much larger question that Scripps Health Chief Academic Officer Dr. Eric Topol and Leonard Kish, Topol''s co-founder at unpatient.org, have tackled the question in an op-ed...', 43, 2, 2, 0, '2015-09-09 00:00:00', '2017-05-24 00:00:00', 3, 0),
(36, 'Why what works for Uber may not work for medical apps', 'http://www.mobihealthnews.com/45826/why-what-works-for-uber-may-not-work-for-medical-apps', 'By Bradley Merrill Thompson Healthcare in America needs disrupting. The media has widely reported on the high cost of, and poor outcomes produced by, the US health care system. Fortunately, attracted by possible profit in a market that currently constitutes over 17 percent of GDP, quite a few startups are anxious to do the needed disrupting. Indeed, innovators from many places outside of...', 43, 2, 2, 0, '2015-08-05 00:00:00', '2017-05-24 00:00:00', 3, 0),
(37, 'AARP study, White House panel weigh in on how to make tech accessible for seniors', 'http://www.mobihealthnews.com/45308/aarp-study-white-house-panel-weigh-in-on-how-to-make-tech-accessible-for-seniors', ' President Obama addresses the White House Conference on Aging. Yesterday, celebrating 50 years of Medicare and 80 years of Social Security, the White House hosted its Conference on Aging. At a panel during the summit, experts discussed how to make technology accessible to seniors. A study on that same topic was released by AARP today. "We choose to do big things here in America," President...', 43, 2, 2, 0, '2015-07-14 00:00:00', '2017-05-24 00:00:00', 3, 0),
(38, 'Five ways a Boston Children''s Hospital spin-off is using social media for public health', 'http://www.mobihealthnews.com/42072/five-ways-a-boston-childrens-hospital-spin-off-is-using-social-media-for-public-health', 'John Brownstein''s Computational Epidemiology Group at Boston Children’s Hospital has received attention in the past for its efforts to use data streams from social media, along with publicly available data from the government, to predict outbreaks of disease. Under Brownstein''s directorship, the team has mined Yelp for the foods most likely to cause food poisoning, helped aggregate data about the...', 43, 2, 2, 0, '2015-04-02 00:00:00', '2017-05-24 00:00:00', 3, 0),
(39, 'Pager gets $10.4M to take its house call app out of New York', 'http://www.mobihealthnews.com/41227/pager-gets-10-4m-to-take-its-house-call-app-out-of-new-york', 'Pager, which offers an app consumers can use to request in-person physician house calls, has raised $10.4 million according to VentureBeat. The round was put up by existing seed investors Lux Capital and Montage Ventures, and new investors Goodwater Capital and Summation Health Ventures. New York City-based Pager, which launched last May, is one of many startups to have called itself an “Uber for...', 43, 2, 2, 0, '2015-03-10 00:00:00', '2017-05-24 00:00:00', 3, 0),
(40, 'Blue Cross Blue Shield Association taps Lyft for nationwide ride-sharing program', 'http://www.mobihealthnews.com/content/blue-cross-blue-shield-association-taps-lyft-nationwide-ride-sharing-program', 'From cost and coverage to time and convenience, there are many factors that can hinder healthcare access. And for an estimated 3.6 million Americans, the main obstacle in getting to their medical appointments involves an engine and a set of wheels. In effort to reduce the number of missed or delayed doctor’s appointments that are attributed to a lack of dependable transportation options, Blue...', 43, 2, 2, 0, '2017-05-10 00:00:00', '2017-05-24 00:00:00', 3, 0),
(41, 'Digital health news briefs for 3/7/2017', 'http://www.mobihealthnews.com/content/digital-health-news-briefs-372017', 'Uber has made digital health news several times for partnering with healthcare organizations to provide transportation for patients. In fact, they announced a partnership with an NHS trust along those lines just yesterday. But in Saudi Arabia, Jordan, and Egypt, the company has a different kind of digital health partnership. The company has partnered with mobile medical app AlTibbi to make...', 43, 2, 2, 0, '2017-03-07 00:00:00', '2017-05-24 00:00:00', 3, 0),
(42, 'Uber tapped by NHS for on-demand caregiver/patient transportation, and more digital health deals', 'http://www.mobihealthnews.com/content/uber-tapped-nhs-demand-caregiverpatient-transportation-and-more-digital-health-deals', 'By way of a contract with UK-based healthcare startup Cera, Uber will help facilitate faster patient care to those in England''s National Health Service system by providing on-demand transportation for caregivers and patients between hospitals and homes. Cera originally launched the caregiver-patient matching service in November with a few smaller clinical organizations, and Uber acts as the...', 43, 2, 2, 0, '2017-03-06 00:00:00', '2017-05-24 00:00:00', 3, 0),
(43, 'Following MedStar partnership, Uber hires new team to work with providers', 'http://www.mobihealthnews.com/content/following-medstar-partnership-uber-hires-new-team-work-providers', 'Uber continues to see healthcare as a major area for growth, according to Lindsay Elin, head of Federal and Community Affairs at Uber. At a panel at the Connected Health Conference in Washington, DC today, Elin spoke about a partnership with health system MedStar (whose director of consumer health initiatives, Pete Celano, also attended), a new team of employees dedicated to health, and the...', 43, 2, 2, 0, '2016-12-12 00:00:00', '2017-05-24 00:00:00', 3, 0),
(44, 'Circulation, a startup that helps hospitals use Uber for medical transportation, gets seed investment', 'http://www.mobihealthnews.com/content/circulation-startup-helps-hospitals-use-uber-medical-transportation-gets-seed-investment', 'Circulation, a startup using Uber''s technology to facilitate non-emergency medical transportation, has secured an undisclosed seed investment from Flare Capital. Last month the startup, whose founding team includes Boston Children''s Hospital CIO John Brownstein, announced its partnership with Uber as the ridesharing company''s "preferred healthcare partner." In addition to Brownstein, the company''...', 43, 2, 2, 0, '2016-10-13 00:00:00', '2017-05-24 00:00:00', 3, 0),
(45, 'Uber, Lyft gear up to help get patients clinical trial sites', 'http://www.mobihealthnews.com/content/uber-lyft-gear-help-get-patients-clinical-trial-sites', 'If you were to make a list of companies you''d expect to see at a clinical trial-focused health technology conference like DPharm Disruptive Innovation US, you probably wouldn''t include ridesharing companies Uber and Lyft. But they were both in attendance in Boston today, presenting remarkably similar visions for using their software platforms to solve transportation problems in healthcare. "Why...', 43, 2, 2, 0, '2016-09-20 00:00:00', '2017-05-24 00:00:00', 3, 0),
(46, 'Accenture''s top five digital health trends for 2016', 'http://www.mobihealthnews.com/content/accentures-top-five-digital-health-trends-2016', 'Accenture held a webcast today diving into five trends the consulting firm has identified as major driving forces right now in digital health. Report author and Senior Global Managing Director for Accenture Health Dr. Kaveh Safavi was joined by health economist and blogger Jane Sarasohn-Kahn to discuss the five trends. The first trend, "Intelligent Automation", covers a range of tools that...', 43, 2, 2, 0, '2016-06-28 00:00:00', '2017-05-24 00:00:00', 3, 0),
(47, 'With slew of partnerships, Uber rolls up to healthcare space', 'http://www.mobihealthnews.com/48727/with-slew-of-partnerships-uber-rolls-up-to-healthcare-space', 'With every new innovator in digital health, it seems like there''s a temptation to crown an "Uber for Health" that will disrupt the industry in a radical consumer-facing way. But lately, it looks like Uber itself might be interested in that title. Over the last week, Uber has collaborated with three different digital health companies and named Boston Children''s Hospital''s John Brownstein its first...', 43, 2, 2, 0, '2015-11-20 00:00:00', '2017-05-24 00:00:00', 3, 0),
(48, 'What does it mean to own your health data?', 'http://www.mobihealthnews.com/46638/what-does-it-mean-to-own-your-health-data', ' In Topol and Kish''s formulation, individual health data will feed into big data breakthroughs. "Give me my damn data" has been a refrain among e-patients for many years. But what does it really mean to own data? That''s a much larger question that Scripps Health Chief Academic Officer Dr. Eric Topol and Leonard Kish, Topol''s co-founder at unpatient.org, have tackled the question in an op-ed...', 43, 2, 2, 0, '2015-09-09 00:00:00', '2017-05-24 00:00:00', 3, 0),
(49, 'Why what works for Uber may not work for medical apps', 'http://www.mobihealthnews.com/45826/why-what-works-for-uber-may-not-work-for-medical-apps', 'By Bradley Merrill Thompson Healthcare in America needs disrupting. The media has widely reported on the high cost of, and poor outcomes produced by, the US health care system. Fortunately, attracted by possible profit in a market that currently constitutes over 17 percent of GDP, quite a few startups are anxious to do the needed disrupting. Indeed, innovators from many places outside of...', 43, 2, 2, 0, '2015-08-05 00:00:00', '2017-05-24 00:00:00', 3, 0),
(50, 'AARP study, White House panel weigh in on how to make tech accessible for seniors', 'http://www.mobihealthnews.com/45308/aarp-study-white-house-panel-weigh-in-on-how-to-make-tech-accessible-for-seniors', ' President Obama addresses the White House Conference on Aging. Yesterday, celebrating 50 years of Medicare and 80 years of Social Security, the White House hosted its Conference on Aging. At a panel during the summit, experts discussed how to make technology accessible to seniors. A study on that same topic was released by AARP today. "We choose to do big things here in America," President...', 43, 2, 2, 0, '2015-07-14 00:00:00', '2017-05-24 00:00:00', 3, 0),
(51, 'Five ways a Boston Children''s Hospital spin-off is using social media for public health', 'http://www.mobihealthnews.com/42072/five-ways-a-boston-childrens-hospital-spin-off-is-using-social-media-for-public-health', 'John Brownstein''s Computational Epidemiology Group at Boston Children’s Hospital has received attention in the past for its efforts to use data streams from social media, along with publicly available data from the government, to predict outbreaks of disease. Under Brownstein''s directorship, the team has mined Yelp for the foods most likely to cause food poisoning, helped aggregate data about the...', 43, 2, 2, 0, '2015-04-02 00:00:00', '2017-05-24 00:00:00', 3, 0),
(52, 'Pager gets $10.4M to take its house call app out of New York', 'http://www.mobihealthnews.com/41227/pager-gets-10-4m-to-take-its-house-call-app-out-of-new-york', 'Pager, which offers an app consumers can use to request in-person physician house calls, has raised $10.4 million according to VentureBeat. The round was put up by existing seed investors Lux Capital and Montage Ventures, and new investors Goodwater Capital and Summation Health Ventures. New York City-based Pager, which launched last May, is one of many startups to have called itself an “Uber for...', 43, 2, 2, 0, '2015-03-10 00:00:00', '2017-05-24 00:00:00', 3, 0),
(53, 'Blue Cross Blue Shield Association taps Lyft for nationwide ride-sharing program', 'http://www.mobihealthnews.com/content/blue-cross-blue-shield-association-taps-lyft-nationwide-ride-sharing-program', 'From cost and coverage to time and convenience, there are many factors that can hinder healthcare access. And for an estimated 3.6 million Americans, the main obstacle in getting to their medical appointments involves an engine and a set of wheels. In effort to reduce the number of missed or delayed doctor’s appointments that are attributed to a lack of dependable transportation options, Blue...', 43, 2, 2, 0, '2017-05-10 00:00:00', '2017-05-24 00:00:00', 3, 0),
(54, 'Digital health news briefs for 3/7/2017', 'http://www.mobihealthnews.com/content/digital-health-news-briefs-372017', 'Uber has made digital health news several times for partnering with healthcare organizations to provide transportation for patients. In fact, they announced a partnership with an NHS trust along those lines just yesterday. But in Saudi Arabia, Jordan, and Egypt, the company has a different kind of digital health partnership. The company has partnered with mobile medical app AlTibbi to make...', 43, 2, 2, 0, '2017-03-07 00:00:00', '2017-05-24 00:00:00', 3, 0),
(55, 'Uber tapped by NHS for on-demand caregiver/patient transportation, and more digital health deals', 'http://www.mobihealthnews.com/content/uber-tapped-nhs-demand-caregiverpatient-transportation-and-more-digital-health-deals', 'By way of a contract with UK-based healthcare startup Cera, Uber will help facilitate faster patient care to those in England''s National Health Service system by providing on-demand transportation for caregivers and patients between hospitals and homes. Cera originally launched the caregiver-patient matching service in November with a few smaller clinical organizations, and Uber acts as the...', 43, 2, 2, 0, '2017-03-06 00:00:00', '2017-05-24 00:00:00', 3, 0),
(56, 'Following MedStar partnership, Uber hires new team to work with providers', 'http://www.mobihealthnews.com/content/following-medstar-partnership-uber-hires-new-team-work-providers', 'Uber continues to see healthcare as a major area for growth, according to Lindsay Elin, head of Federal and Community Affairs at Uber. At a panel at the Connected Health Conference in Washington, DC today, Elin spoke about a partnership with health system MedStar (whose director of consumer health initiatives, Pete Celano, also attended), a new team of employees dedicated to health, and the...', 43, 2, 2, 0, '2016-12-12 00:00:00', '2017-05-24 00:00:00', 3, 0),
(57, 'Circulation, a startup that helps hospitals use Uber for medical transportation, gets seed investment', 'http://www.mobihealthnews.com/content/circulation-startup-helps-hospitals-use-uber-medical-transportation-gets-seed-investment', 'Circulation, a startup using Uber''s technology to facilitate non-emergency medical transportation, has secured an undisclosed seed investment from Flare Capital. Last month the startup, whose founding team includes Boston Children''s Hospital CIO John Brownstein, announced its partnership with Uber as the ridesharing company''s "preferred healthcare partner." In addition to Brownstein, the company''...', 43, 2, 2, 0, '2016-10-13 00:00:00', '2017-05-24 00:00:00', 3, 0),
(58, 'Uber, Lyft gear up to help get patients clinical trial sites', 'http://www.mobihealthnews.com/content/uber-lyft-gear-help-get-patients-clinical-trial-sites', 'If you were to make a list of companies you''d expect to see at a clinical trial-focused health technology conference like DPharm Disruptive Innovation US, you probably wouldn''t include ridesharing companies Uber and Lyft. But they were both in attendance in Boston today, presenting remarkably similar visions for using their software platforms to solve transportation problems in healthcare. "Why...', 43, 2, 2, 0, '2016-09-20 00:00:00', '2017-05-24 00:00:00', 3, 0),
(59, 'Accenture''s top five digital health trends for 2016', 'http://www.mobihealthnews.com/content/accentures-top-five-digital-health-trends-2016', 'Accenture held a webcast today diving into five trends the consulting firm has identified as major driving forces right now in digital health. Report author and Senior Global Managing Director for Accenture Health Dr. Kaveh Safavi was joined by health economist and blogger Jane Sarasohn-Kahn to discuss the five trends. The first trend, "Intelligent Automation", covers a range of tools that...', 43, 2, 2, 0, '2016-06-28 00:00:00', '2017-05-24 00:00:00', 3, 0),
(60, 'With slew of partnerships, Uber rolls up to healthcare space', 'http://www.mobihealthnews.com/48727/with-slew-of-partnerships-uber-rolls-up-to-healthcare-space', 'With every new innovator in digital health, it seems like there''s a temptation to crown an "Uber for Health" that will disrupt the industry in a radical consumer-facing way. But lately, it looks like Uber itself might be interested in that title. Over the last week, Uber has collaborated with three different digital health companies and named Boston Children''s Hospital''s John Brownstein its first...', 43, 2, 2, 0, '2015-11-20 00:00:00', '2017-05-24 00:00:00', 3, 0),
(61, 'What does it mean to own your health data?', 'http://www.mobihealthnews.com/46638/what-does-it-mean-to-own-your-health-data', ' In Topol and Kish''s formulation, individual health data will feed into big data breakthroughs. "Give me my damn data" has been a refrain among e-patients for many years. But what does it really mean to own data? That''s a much larger question that Scripps Health Chief Academic Officer Dr. Eric Topol and Leonard Kish, Topol''s co-founder at unpatient.org, have tackled the question in an op-ed...', 43, 2, 2, 0, '2015-09-09 00:00:00', '2017-05-24 00:00:00', 3, 0),
(62, 'Why what works for Uber may not work for medical apps', 'http://www.mobihealthnews.com/45826/why-what-works-for-uber-may-not-work-for-medical-apps', 'By Bradley Merrill Thompson Healthcare in America needs disrupting. The media has widely reported on the high cost of, and poor outcomes produced by, the US health care system. Fortunately, attracted by possible profit in a market that currently constitutes over 17 percent of GDP, quite a few startups are anxious to do the needed disrupting. Indeed, innovators from many places outside of...', 43, 2, 2, 0, '2015-08-05 00:00:00', '2017-05-24 00:00:00', 3, 0),
(63, 'AARP study, White House panel weigh in on how to make tech accessible for seniors', 'http://www.mobihealthnews.com/45308/aarp-study-white-house-panel-weigh-in-on-how-to-make-tech-accessible-for-seniors', ' President Obama addresses the White House Conference on Aging. Yesterday, celebrating 50 years of Medicare and 80 years of Social Security, the White House hosted its Conference on Aging. At a panel during the summit, experts discussed how to make technology accessible to seniors. A study on that same topic was released by AARP today. "We choose to do big things here in America," President...', 43, 2, 2, 0, '2015-07-14 00:00:00', '2017-05-24 00:00:00', 3, 0),
(64, 'Five ways a Boston Children''s Hospital spin-off is using social media for public health', 'http://www.mobihealthnews.com/42072/five-ways-a-boston-childrens-hospital-spin-off-is-using-social-media-for-public-health', 'John Brownstein''s Computational Epidemiology Group at Boston Children’s Hospital has received attention in the past for its efforts to use data streams from social media, along with publicly available data from the government, to predict outbreaks of disease. Under Brownstein''s directorship, the team has mined Yelp for the foods most likely to cause food poisoning, helped aggregate data about the...', 43, 2, 2, 0, '2015-04-02 00:00:00', '2017-05-24 00:00:00', 3, 0),
(65, 'Pager gets $10.4M to take its house call app out of New York', 'http://www.mobihealthnews.com/41227/pager-gets-10-4m-to-take-its-house-call-app-out-of-new-york', 'Pager, which offers an app consumers can use to request in-person physician house calls, has raised $10.4 million according to VentureBeat. The round was put up by existing seed investors Lux Capital and Montage Ventures, and new investors Goodwater Capital and Summation Health Ventures. New York City-based Pager, which launched last May, is one of many startups to have called itself an “Uber for...', 43, 2, 2, 0, '2015-03-10 00:00:00', '2017-05-24 00:00:00', 3, 0),
(66, 'Blue Cross Blue Shield Association taps Lyft for nationwide ride-sharing program', 'http://www.mobihealthnews.com/content/blue-cross-blue-shield-association-taps-lyft-nationwide-ride-sharing-program', 'From cost and coverage to time and convenience, there are many factors that can hinder healthcare access. And for an estimated 3.6 million Americans, the main obstacle in getting to their medical appointments involves an engine and a set of wheels. In effort to reduce the number of missed or delayed doctor’s appointments that are attributed to a lack of dependable transportation options, Blue...', 43, 2, 2, 0, '2017-05-10 00:00:00', '2017-05-24 00:00:00', 3, 0),
(67, 'Digital health news briefs for 3/7/2017', 'http://www.mobihealthnews.com/content/digital-health-news-briefs-372017', 'Uber has made digital health news several times for partnering with healthcare organizations to provide transportation for patients. In fact, they announced a partnership with an NHS trust along those lines just yesterday. But in Saudi Arabia, Jordan, and Egypt, the company has a different kind of digital health partnership. The company has partnered with mobile medical app AlTibbi to make...', 43, 2, 2, 0, '2017-03-07 00:00:00', '2017-05-24 00:00:00', 3, 0),
(68, 'Uber tapped by NHS for on-demand caregiver/patient transportation, and more digital health deals', 'http://www.mobihealthnews.com/content/uber-tapped-nhs-demand-caregiverpatient-transportation-and-more-digital-health-deals', 'By way of a contract with UK-based healthcare startup Cera, Uber will help facilitate faster patient care to those in England''s National Health Service system by providing on-demand transportation for caregivers and patients between hospitals and homes. Cera originally launched the caregiver-patient matching service in November with a few smaller clinical organizations, and Uber acts as the...', 43, 2, 2, 0, '2017-03-06 00:00:00', '2017-05-24 00:00:00', 3, 0),
(69, 'Following MedStar partnership, Uber hires new team to work with providers', 'http://www.mobihealthnews.com/content/following-medstar-partnership-uber-hires-new-team-work-providers', 'Uber continues to see healthcare as a major area for growth, according to Lindsay Elin, head of Federal and Community Affairs at Uber. At a panel at the Connected Health Conference in Washington, DC today, Elin spoke about a partnership with health system MedStar (whose director of consumer health initiatives, Pete Celano, also attended), a new team of employees dedicated to health, and the...', 43, 2, 2, 0, '2016-12-12 00:00:00', '2017-05-24 00:00:00', 3, 0),
(70, 'Circulation, a startup that helps hospitals use Uber for medical transportation, gets seed investment', 'http://www.mobihealthnews.com/content/circulation-startup-helps-hospitals-use-uber-medical-transportation-gets-seed-investment', 'Circulation, a startup using Uber''s technology to facilitate non-emergency medical transportation, has secured an undisclosed seed investment from Flare Capital. Last month the startup, whose founding team includes Boston Children''s Hospital CIO John Brownstein, announced its partnership with Uber as the ridesharing company''s "preferred healthcare partner." In addition to Brownstein, the company''...', 43, 2, 2, 0, '2016-10-13 00:00:00', '2017-05-24 00:00:00', 3, 0),
(71, 'Uber, Lyft gear up to help get patients clinical trial sites', 'http://www.mobihealthnews.com/content/uber-lyft-gear-help-get-patients-clinical-trial-sites', 'If you were to make a list of companies you''d expect to see at a clinical trial-focused health technology conference like DPharm Disruptive Innovation US, you probably wouldn''t include ridesharing companies Uber and Lyft. But they were both in attendance in Boston today, presenting remarkably similar visions for using their software platforms to solve transportation problems in healthcare. "Why...', 43, 2, 2, 0, '2016-09-20 00:00:00', '2017-05-24 00:00:00', 3, 0),
(72, 'Accenture''s top five digital health trends for 2016', 'http://www.mobihealthnews.com/content/accentures-top-five-digital-health-trends-2016', 'Accenture held a webcast today diving into five trends the consulting firm has identified as major driving forces right now in digital health. Report author and Senior Global Managing Director for Accenture Health Dr. Kaveh Safavi was joined by health economist and blogger Jane Sarasohn-Kahn to discuss the five trends. The first trend, "Intelligent Automation", covers a range of tools that...', 43, 2, 2, 0, '2016-06-28 00:00:00', '2017-05-24 00:00:00', 3, 0),
(73, 'With slew of partnerships, Uber rolls up to healthcare space', 'http://www.mobihealthnews.com/48727/with-slew-of-partnerships-uber-rolls-up-to-healthcare-space', 'With every new innovator in digital health, it seems like there''s a temptation to crown an "Uber for Health" that will disrupt the industry in a radical consumer-facing way. But lately, it looks like Uber itself might be interested in that title. Over the last week, Uber has collaborated with three different digital health companies and named Boston Children''s Hospital''s John Brownstein its first...', 43, 2, 2, 0, '2015-11-20 00:00:00', '2017-05-24 00:00:00', 3, 0),
(74, 'What does it mean to own your health data?', 'http://www.mobihealthnews.com/46638/what-does-it-mean-to-own-your-health-data', ' In Topol and Kish''s formulation, individual health data will feed into big data breakthroughs. "Give me my damn data" has been a refrain among e-patients for many years. But what does it really mean to own data? That''s a much larger question that Scripps Health Chief Academic Officer Dr. Eric Topol and Leonard Kish, Topol''s co-founder at unpatient.org, have tackled the question in an op-ed...', 43, 2, 2, 0, '2015-09-09 00:00:00', '2017-05-24 00:00:00', 3, 0),
(75, 'Why what works for Uber may not work for medical apps', 'http://www.mobihealthnews.com/45826/why-what-works-for-uber-may-not-work-for-medical-apps', 'By Bradley Merrill Thompson Healthcare in America needs disrupting. The media has widely reported on the high cost of, and poor outcomes produced by, the US health care system. Fortunately, attracted by possible profit in a market that currently constitutes over 17 percent of GDP, quite a few startups are anxious to do the needed disrupting. Indeed, innovators from many places outside of...', 43, 2, 2, 0, '2015-08-05 00:00:00', '2017-05-24 00:00:00', 3, 0),
(76, 'AARP study, White House panel weigh in on how to make tech accessible for seniors', 'http://www.mobihealthnews.com/45308/aarp-study-white-house-panel-weigh-in-on-how-to-make-tech-accessible-for-seniors', ' President Obama addresses the White House Conference on Aging. Yesterday, celebrating 50 years of Medicare and 80 years of Social Security, the White House hosted its Conference on Aging. At a panel during the summit, experts discussed how to make technology accessible to seniors. A study on that same topic was released by AARP today. "We choose to do big things here in America," President...', 43, 2, 2, 0, '2015-07-14 00:00:00', '2017-05-24 00:00:00', 3, 0);
INSERT INTO `wp_esi_news_accept` (`id`, `title`, `url`, `description`, `media_id`, `type_id`, `region_id`, `post_id`, `publish_date`, `record_date`, `company_id`, `is_accepted`) VALUES
(77, 'Five ways a Boston Children''s Hospital spin-off is using social media for public health', 'http://www.mobihealthnews.com/42072/five-ways-a-boston-childrens-hospital-spin-off-is-using-social-media-for-public-health', 'John Brownstein''s Computational Epidemiology Group at Boston Children’s Hospital has received attention in the past for its efforts to use data streams from social media, along with publicly available data from the government, to predict outbreaks of disease. Under Brownstein''s directorship, the team has mined Yelp for the foods most likely to cause food poisoning, helped aggregate data about the...', 43, 2, 2, 0, '2015-04-02 00:00:00', '2017-05-24 00:00:00', 3, 0),
(78, 'Pager gets $10.4M to take its house call app out of New York', 'http://www.mobihealthnews.com/41227/pager-gets-10-4m-to-take-its-house-call-app-out-of-new-york', 'Pager, which offers an app consumers can use to request in-person physician house calls, has raised $10.4 million according to VentureBeat. The round was put up by existing seed investors Lux Capital and Montage Ventures, and new investors Goodwater Capital and Summation Health Ventures. New York City-based Pager, which launched last May, is one of many startups to have called itself an “Uber for...', 43, 2, 2, 0, '2015-03-10 00:00:00', '2017-05-24 00:00:00', 3, 0),
(79, 'Blue Cross Blue Shield Association taps Lyft for nationwide ride-sharing program', 'http://www.mobihealthnews.com/content/blue-cross-blue-shield-association-taps-lyft-nationwide-ride-sharing-program', 'From cost and coverage to time and convenience, there are many factors that can hinder healthcare access. And for an estimated 3.6 million Americans, the main obstacle in getting to their medical appointments involves an engine and a set of wheels. In effort to reduce the number of missed or delayed doctor’s appointments that are attributed to a lack of dependable transportation options, Blue...', 43, 2, 2, 0, '2017-05-10 00:00:00', '2017-05-24 00:00:00', 3, 0),
(80, 'Digital health news briefs for 3/7/2017', 'http://www.mobihealthnews.com/content/digital-health-news-briefs-372017', 'Uber has made digital health news several times for partnering with healthcare organizations to provide transportation for patients. In fact, they announced a partnership with an NHS trust along those lines just yesterday. But in Saudi Arabia, Jordan, and Egypt, the company has a different kind of digital health partnership. The company has partnered with mobile medical app AlTibbi to make...', 43, 2, 2, 0, '2017-03-07 00:00:00', '2017-05-24 00:00:00', 3, 0),
(81, 'Uber tapped by NHS for on-demand caregiver/patient transportation, and more digital health deals', 'http://www.mobihealthnews.com/content/uber-tapped-nhs-demand-caregiverpatient-transportation-and-more-digital-health-deals', 'By way of a contract with UK-based healthcare startup Cera, Uber will help facilitate faster patient care to those in England''s National Health Service system by providing on-demand transportation for caregivers and patients between hospitals and homes. Cera originally launched the caregiver-patient matching service in November with a few smaller clinical organizations, and Uber acts as the...', 43, 2, 2, 0, '2017-03-06 00:00:00', '2017-05-24 00:00:00', 3, 0),
(82, 'Following MedStar partnership, Uber hires new team to work with providers', 'http://www.mobihealthnews.com/content/following-medstar-partnership-uber-hires-new-team-work-providers', 'Uber continues to see healthcare as a major area for growth, according to Lindsay Elin, head of Federal and Community Affairs at Uber. At a panel at the Connected Health Conference in Washington, DC today, Elin spoke about a partnership with health system MedStar (whose director of consumer health initiatives, Pete Celano, also attended), a new team of employees dedicated to health, and the...', 43, 2, 2, 0, '2016-12-12 00:00:00', '2017-05-24 00:00:00', 3, 0),
(83, 'Circulation, a startup that helps hospitals use Uber for medical transportation, gets seed investment', 'http://www.mobihealthnews.com/content/circulation-startup-helps-hospitals-use-uber-medical-transportation-gets-seed-investment', 'Circulation, a startup using Uber''s technology to facilitate non-emergency medical transportation, has secured an undisclosed seed investment from Flare Capital. Last month the startup, whose founding team includes Boston Children''s Hospital CIO John Brownstein, announced its partnership with Uber as the ridesharing company''s "preferred healthcare partner." In addition to Brownstein, the company''...', 43, 2, 2, 0, '2016-10-13 00:00:00', '2017-05-24 00:00:00', 3, 0),
(84, 'Uber, Lyft gear up to help get patients clinical trial sites', 'http://www.mobihealthnews.com/content/uber-lyft-gear-help-get-patients-clinical-trial-sites', 'If you were to make a list of companies you''d expect to see at a clinical trial-focused health technology conference like DPharm Disruptive Innovation US, you probably wouldn''t include ridesharing companies Uber and Lyft. But they were both in attendance in Boston today, presenting remarkably similar visions for using their software platforms to solve transportation problems in healthcare. "Why...', 43, 2, 2, 0, '2016-09-20 00:00:00', '2017-05-24 00:00:00', 3, 0),
(85, 'Accenture''s top five digital health trends for 2016', 'http://www.mobihealthnews.com/content/accentures-top-five-digital-health-trends-2016', 'Accenture held a webcast today diving into five trends the consulting firm has identified as major driving forces right now in digital health. Report author and Senior Global Managing Director for Accenture Health Dr. Kaveh Safavi was joined by health economist and blogger Jane Sarasohn-Kahn to discuss the five trends. The first trend, "Intelligent Automation", covers a range of tools that...', 43, 2, 2, 0, '2016-06-28 00:00:00', '2017-05-24 00:00:00', 3, 0),
(86, 'With slew of partnerships, Uber rolls up to healthcare space', 'http://www.mobihealthnews.com/48727/with-slew-of-partnerships-uber-rolls-up-to-healthcare-space', 'With every new innovator in digital health, it seems like there''s a temptation to crown an "Uber for Health" that will disrupt the industry in a radical consumer-facing way. But lately, it looks like Uber itself might be interested in that title. Over the last week, Uber has collaborated with three different digital health companies and named Boston Children''s Hospital''s John Brownstein its first...', 43, 2, 2, 0, '2015-11-20 00:00:00', '2017-05-24 00:00:00', 3, 0),
(87, 'What does it mean to own your health data?', 'http://www.mobihealthnews.com/46638/what-does-it-mean-to-own-your-health-data', ' In Topol and Kish''s formulation, individual health data will feed into big data breakthroughs. "Give me my damn data" has been a refrain among e-patients for many years. But what does it really mean to own data? That''s a much larger question that Scripps Health Chief Academic Officer Dr. Eric Topol and Leonard Kish, Topol''s co-founder at unpatient.org, have tackled the question in an op-ed...', 43, 2, 2, 0, '2015-09-09 00:00:00', '2017-05-24 00:00:00', 3, 0),
(88, 'Why what works for Uber may not work for medical apps', 'http://www.mobihealthnews.com/45826/why-what-works-for-uber-may-not-work-for-medical-apps', 'By Bradley Merrill Thompson Healthcare in America needs disrupting. The media has widely reported on the high cost of, and poor outcomes produced by, the US health care system. Fortunately, attracted by possible profit in a market that currently constitutes over 17 percent of GDP, quite a few startups are anxious to do the needed disrupting. Indeed, innovators from many places outside of...', 43, 2, 2, 0, '2015-08-05 00:00:00', '2017-05-24 00:00:00', 3, 0),
(89, 'AARP study, White House panel weigh in on how to make tech accessible for seniors', 'http://www.mobihealthnews.com/45308/aarp-study-white-house-panel-weigh-in-on-how-to-make-tech-accessible-for-seniors', ' President Obama addresses the White House Conference on Aging. Yesterday, celebrating 50 years of Medicare and 80 years of Social Security, the White House hosted its Conference on Aging. At a panel during the summit, experts discussed how to make technology accessible to seniors. A study on that same topic was released by AARP today. "We choose to do big things here in America," President...', 43, 2, 2, 0, '2015-07-14 00:00:00', '2017-05-24 00:00:00', 3, 0),
(90, 'Five ways a Boston Children''s Hospital spin-off is using social media for public health', 'http://www.mobihealthnews.com/42072/five-ways-a-boston-childrens-hospital-spin-off-is-using-social-media-for-public-health', 'John Brownstein''s Computational Epidemiology Group at Boston Children’s Hospital has received attention in the past for its efforts to use data streams from social media, along with publicly available data from the government, to predict outbreaks of disease. Under Brownstein''s directorship, the team has mined Yelp for the foods most likely to cause food poisoning, helped aggregate data about the...', 43, 2, 2, 0, '2015-04-02 00:00:00', '2017-05-24 00:00:00', 3, 0),
(91, 'Pager gets $10.4M to take its house call app out of New York', 'http://www.mobihealthnews.com/41227/pager-gets-10-4m-to-take-its-house-call-app-out-of-new-york', 'Pager, which offers an app consumers can use to request in-person physician house calls, has raised $10.4 million according to VentureBeat. The round was put up by existing seed investors Lux Capital and Montage Ventures, and new investors Goodwater Capital and Summation Health Ventures. New York City-based Pager, which launched last May, is one of many startups to have called itself an “Uber for...', 43, 2, 2, 0, '2015-03-10 00:00:00', '2017-05-24 00:00:00', 3, 0),
(92, 'Blue Cross Blue Shield Association taps Lyft for nationwide ride-sharing program', 'http://www.mobihealthnews.com/content/blue-cross-blue-shield-association-taps-lyft-nationwide-ride-sharing-program', 'From cost and coverage to time and convenience, there are many factors that can hinder healthcare access. And for an estimated 3.6 million Americans, the main obstacle in getting to their medical appointments involves an engine and a set of wheels. In effort to reduce the number of missed or delayed doctor’s appointments that are attributed to a lack of dependable transportation options, Blue...', 43, 2, 2, 0, '2017-05-10 00:00:00', '2017-05-24 00:00:00', 3, 0),
(93, 'Digital health news briefs for 3/7/2017', 'http://www.mobihealthnews.com/content/digital-health-news-briefs-372017', 'Uber has made digital health news several times for partnering with healthcare organizations to provide transportation for patients. In fact, they announced a partnership with an NHS trust along those lines just yesterday. But in Saudi Arabia, Jordan, and Egypt, the company has a different kind of digital health partnership. The company has partnered with mobile medical app AlTibbi to make...', 43, 2, 2, 0, '2017-03-07 00:00:00', '2017-05-24 00:00:00', 3, 0),
(94, 'Uber tapped by NHS for on-demand caregiver/patient transportation, and more digital health deals', 'http://www.mobihealthnews.com/content/uber-tapped-nhs-demand-caregiverpatient-transportation-and-more-digital-health-deals', 'By way of a contract with UK-based healthcare startup Cera, Uber will help facilitate faster patient care to those in England''s National Health Service system by providing on-demand transportation for caregivers and patients between hospitals and homes. Cera originally launched the caregiver-patient matching service in November with a few smaller clinical organizations, and Uber acts as the...', 43, 2, 2, 0, '2017-03-06 00:00:00', '2017-05-24 00:00:00', 3, 0),
(95, 'Following MedStar partnership, Uber hires new team to work with providers', 'http://www.mobihealthnews.com/content/following-medstar-partnership-uber-hires-new-team-work-providers', 'Uber continues to see healthcare as a major area for growth, according to Lindsay Elin, head of Federal and Community Affairs at Uber. At a panel at the Connected Health Conference in Washington, DC today, Elin spoke about a partnership with health system MedStar (whose director of consumer health initiatives, Pete Celano, also attended), a new team of employees dedicated to health, and the...', 43, 2, 2, 0, '2016-12-12 00:00:00', '2017-05-24 00:00:00', 3, 0),
(96, 'Circulation, a startup that helps hospitals use Uber for medical transportation, gets seed investment', 'http://www.mobihealthnews.com/content/circulation-startup-helps-hospitals-use-uber-medical-transportation-gets-seed-investment', 'Circulation, a startup using Uber''s technology to facilitate non-emergency medical transportation, has secured an undisclosed seed investment from Flare Capital. Last month the startup, whose founding team includes Boston Children''s Hospital CIO John Brownstein, announced its partnership with Uber as the ridesharing company''s "preferred healthcare partner." In addition to Brownstein, the company''...', 43, 2, 2, 0, '2016-10-13 00:00:00', '2017-05-24 00:00:00', 3, 0),
(97, 'Uber, Lyft gear up to help get patients clinical trial sites', 'http://www.mobihealthnews.com/content/uber-lyft-gear-help-get-patients-clinical-trial-sites', 'If you were to make a list of companies you''d expect to see at a clinical trial-focused health technology conference like DPharm Disruptive Innovation US, you probably wouldn''t include ridesharing companies Uber and Lyft. But they were both in attendance in Boston today, presenting remarkably similar visions for using their software platforms to solve transportation problems in healthcare. "Why...', 43, 2, 2, 0, '2016-09-20 00:00:00', '2017-05-24 00:00:00', 3, 0),
(98, 'Accenture''s top five digital health trends for 2016', 'http://www.mobihealthnews.com/content/accentures-top-five-digital-health-trends-2016', 'Accenture held a webcast today diving into five trends the consulting firm has identified as major driving forces right now in digital health. Report author and Senior Global Managing Director for Accenture Health Dr. Kaveh Safavi was joined by health economist and blogger Jane Sarasohn-Kahn to discuss the five trends. The first trend, "Intelligent Automation", covers a range of tools that...', 43, 2, 2, 0, '2016-06-28 00:00:00', '2017-05-24 00:00:00', 3, 0),
(99, 'With slew of partnerships, Uber rolls up to healthcare space', 'http://www.mobihealthnews.com/48727/with-slew-of-partnerships-uber-rolls-up-to-healthcare-space', 'With every new innovator in digital health, it seems like there''s a temptation to crown an "Uber for Health" that will disrupt the industry in a radical consumer-facing way. But lately, it looks like Uber itself might be interested in that title. Over the last week, Uber has collaborated with three different digital health companies and named Boston Children''s Hospital''s John Brownstein its first...', 43, 2, 2, 0, '2015-11-20 00:00:00', '2017-05-24 00:00:00', 3, 0),
(100, 'What does it mean to own your health data?', 'http://www.mobihealthnews.com/46638/what-does-it-mean-to-own-your-health-data', ' In Topol and Kish''s formulation, individual health data will feed into big data breakthroughs. "Give me my damn data" has been a refrain among e-patients for many years. But what does it really mean to own data? That''s a much larger question that Scripps Health Chief Academic Officer Dr. Eric Topol and Leonard Kish, Topol''s co-founder at unpatient.org, have tackled the question in an op-ed...', 43, 2, 2, 0, '2015-09-09 00:00:00', '2017-05-24 00:00:00', 3, 0),
(101, 'Why what works for Uber may not work for medical apps', 'http://www.mobihealthnews.com/45826/why-what-works-for-uber-may-not-work-for-medical-apps', 'By Bradley Merrill Thompson Healthcare in America needs disrupting. The media has widely reported on the high cost of, and poor outcomes produced by, the US health care system. Fortunately, attracted by possible profit in a market that currently constitutes over 17 percent of GDP, quite a few startups are anxious to do the needed disrupting. Indeed, innovators from many places outside of...', 43, 2, 2, 0, '2015-08-05 00:00:00', '2017-05-24 00:00:00', 3, 0),
(102, 'AARP study, White House panel weigh in on how to make tech accessible for seniors', 'http://www.mobihealthnews.com/45308/aarp-study-white-house-panel-weigh-in-on-how-to-make-tech-accessible-for-seniors', ' President Obama addresses the White House Conference on Aging. Yesterday, celebrating 50 years of Medicare and 80 years of Social Security, the White House hosted its Conference on Aging. At a panel during the summit, experts discussed how to make technology accessible to seniors. A study on that same topic was released by AARP today. "We choose to do big things here in America," President...', 43, 2, 2, 0, '2015-07-14 00:00:00', '2017-05-24 00:00:00', 3, 0),
(103, 'Five ways a Boston Children''s Hospital spin-off is using social media for public health', 'http://www.mobihealthnews.com/42072/five-ways-a-boston-childrens-hospital-spin-off-is-using-social-media-for-public-health', 'John Brownstein''s Computational Epidemiology Group at Boston Children’s Hospital has received attention in the past for its efforts to use data streams from social media, along with publicly available data from the government, to predict outbreaks of disease. Under Brownstein''s directorship, the team has mined Yelp for the foods most likely to cause food poisoning, helped aggregate data about the...', 43, 2, 2, 0, '2015-04-02 00:00:00', '2017-05-24 00:00:00', 3, 0),
(104, 'Pager gets $10.4M to take its house call app out of New York', 'http://www.mobihealthnews.com/41227/pager-gets-10-4m-to-take-its-house-call-app-out-of-new-york', 'Pager, which offers an app consumers can use to request in-person physician house calls, has raised $10.4 million according to VentureBeat. The round was put up by existing seed investors Lux Capital and Montage Ventures, and new investors Goodwater Capital and Summation Health Ventures. New York City-based Pager, which launched last May, is one of many startups to have called itself an “Uber for...', 43, 2, 2, 0, '2015-03-10 00:00:00', '2017-05-24 00:00:00', 3, 0);
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment