A Less Distracting YouTube

YouTube’s homepage and recommended videos sidebar are the platform’s most distracting features for me. I remove them with a userscript. In Firefox, I use the Violentmonkey plugin (source code here). Similar plugins are available for Chrome.

Import the following script, and watch the homepage and sidebar disappear.

// ==UserScript==
// @name Youtube minimalism
// @namespace https://churchman.nl/
// @match https://*.youtube.com/*
// @grant none
// ==/UserScript==
function del(selectors) {
selectors.forEach((selector) => {
const ele = document.querySelector(selector);
if (ele) {
ele.parentNode.removeChild(ele);
}
});
}
setInterval(function() {
del([
'ytd-browse[page-subtype="home"]',
'.html5-endscreen',
'.ytp-ce-element',
'.ytp-ce-covering-overlay',
'.ytp-ce-element-shadow',
'.ytp-ce-covering-image',
'.ytp-ce-expanding-image',
'.ytp-ce-element.ytp-ce-video.ytp-ce-element-show',
'.ytp-ce-element.ytp-ce-channel.ytp-ce-channel-this',
'.ytp-pause-overlay',
'#secondary'
]);
}, 250);

The Future of Big Data in Healthcare

[bibshow file=futurebigdatahealthcare.bib sort=firstauthor order=asc]medical record
In the United States and other countries, healthcare service providers are rapidly adopting Electronic Health Records (EHRs). These records are real-time, digital versions of patients’ charts. They provide a variety of patient-centered information such as medical history, diagnoses, and medications. In 2014, 83% of physicians in the United States utilized EHRs, compared to just 42% in 2004 [bibcite key=heisey2015any]. A number of other countries already have better adoption of the technology, with over 90% of healthcare service providers in Australia, the Netherlands, New Zealand, Norway and the United Kingdom having adopted EHRs in 2012 [bibcite key=schoen2012survey].

Additionally, through progress in healthcare and technology, and the ensuing societal changes, people are becoming more conscious of their health and actively seek to better manage their health and lifestyle [bibcite key=lymberis2003smart]. With improvements in computer technology, mobile health monitoring devices are available; both through dedicated devices and through “apps” on personal mobile phones.

Most importantly, these developments are generating extensive datasets of previously unattainable proportions. As a result, hospital-centered healthcare is changing to patient-centered care. Where the goal formerly was to find general treatments for ailments, the goal is now shifting towards early detection of risks, prevention of further complications, and improvement of treatments through patient feedback. Though reducing costs should not be a primary motivator in healthcare, it has been estimated that usage of big data methods in healthcare could cause a 12% reduction of the baseline United States’ healthcare costs [bibcite key=kayyali2013big]. In this essay we will look at leading-edge developments related to big data in healthcare. Recognizing those developments, we will consider which near-future accomplishments can be expected and we will reflect on the desirability thereof.

Continue reading “The Future of Big Data in Healthcare”