Yesterday I wrote about my pdf-overload and how I am coping with that. Today I will write about other sources information that I want to store or want to be alerted to. I use:
*) Evernote to store extracts from webpages with the accompanying link. Before using Evernote I used Google Notebook. But since there are rumours that Google stops supporting Notebook I switched to Evernote. I must say that I liked Notebook better. One of the reasons for that is that I also use Google Reader. I also would like to have the opportunity to work offline, but I did not yet find a solution for that.
*) Google Reader to read my RSS-feeds. Not so long ago I had over a thousand RSS-feeds but I removed them all and started all over again. Nowadays I have approx. 25 feeds I read. I also created RSS-feeds for Pubmed for deep brain stimulation and transcranial magnetic stimulation. Below you can find a video about creating a RSS-feed for a pubmed search term.
*) Twitter to obtain information before it is even published on one of the weblogs. Since google reader does not yet(?) support some kind of alert if a new message arrives, Twitter gives me alert if something new is posted. But I am not yet a fervent Twitterer.
*) I almost never use the favorites of my browser. Google Chrome automatically remembers the websites I visit the most. For other websites I just type the URL or I use google to find the url.
*) I installed Wordpress on my Asus EEEPC with linux. I also installed a webserver with mysql. This allows me to take notes during discussions in places where no (wireless) internet is available. These spots still exist in the Netherlands.
As you can see I still use several software packages to store my information. Ideally, I want to store all the information in one place.
[view academic citations]
[hide academic citations]
AMA citation:
Martens J. How do I get and store all my electronic information?. MedBlog.nl. 2009. Available at: http://medblog.nl/2009/02/24/how-do-i-get-and-store-all-my-electronic-information/. Accessed March 11, 2010.
APA citation:
Martens, Jan. (2009). How do I get and store all my electronic information?. Retrieved March 11, 2010, from MedBlog.nl Web site: http://medblog.nl/2009/02/24/how-do-i-get-and-store-all-my-electronic-information/
Chicago citation:
Martens, Jan. 2009. How do I get and store all my electronic information?. MedBlog.nl. http://medblog.nl/2009/02/24/how-do-i-get-and-store-all-my-electronic-information/ (accessed March 11, 2010).
Harvard citation:
Martens, J 2009, How do I get and store all my electronic information?, MedBlog.nl. Retrieved March 11, 2010, from <http://medblog.nl/2009/02/24/how-do-i-get-and-store-all-my-electronic-information/>
MLA citation:
Martens, Jan. "How do I get and store all my electronic information?." 24 Feb. 2009. MedBlog.nl. Accessed 11 Mar. 2010. <http://medblog.nl/2009/02/24/how-do-i-get-and-store-all-my-electronic-information/>
Dr Shock asked for this. I use five Greasemonkey scripts.
*) Pubmed redirect. First of all I redirect all pubmed pages (ncbi.nlm.nih.gov) to the pubmed page (ncbi.nlm.nih.gov.proxy.library.uu.nl) of my university
*) Automatically open UBU link. If the pubmed page consists of a direct (UBU) link this script automatically opens the link to the pages of for instance a journal.
*) Resize window. For some reason I do not know a library page opens in a small windows. This scripts makes sure that the window resizes to the full screen.
*) Automatically open PDF. If the pubmed page consists of links to pdf’s then this script automatically opens the pdf.
*) Redirect Springerlink. This is a redirect script for Springer pages.
You can find the scripts below. Any questions? Let me know.
//alert(document.location.href);
var str = document.location.href; // get the hyperlink of the current page and store it in the variable str
var matchpos = str.search(/proxy.library.uu.nl/); // see if proxy.library.uu.nl occurs in the variable str
var rep = “ncbi.nlm.nih.gov.proxy.library.uu.nl”; // store new hyperlink in variable rep
if (matchpos ==-1){ // if str does not contain proxy.library.uu.nl then substitute links
str = str.replace(/ncbi.nlm.nih.gov/g, rep); // substitute ncbi.nlm.nih.gov with variable rep
document.location.href= str;
}
———————————————————————–
—– Automatically open UBU Link —————————-
// ==UserScript==
// @name Automatically open UBU Link
// @namespace NLM.NIH.GOV.PROXY.LIBRARY.UU.NL
// @include http://*ncbi.nlm.nih.gov.proxy.library.uu.nl*
// ==/UserScript==
// an UBU link is characterized by one of the following links: sfx.library.uu.nl, pubmedcentral.nih.gov/articlerender or ncbi.nlm.nih.gov.proxy.library.uu.nl/entrez/utils/fref.fcgi?PrId
var links = document.getElementsByTagName(’a'); // get all hyperlinks and store them in variable links
for(var i = 0; i < links.length; i++) { // loop through the hyperlinks in variable links
var url = links[i].href; // store array variable in url
var matchpos = url.search(/sfx.library.uu.nl/) // see if sfx.library.uu.nl occurs in the variable url
if (matchpos !=-1){ // if url contains sfx.library.uu.nl open url in new tab
GM_openInTab(url);
}
var matchpos1 = url.search(/pubmedcentral.nih.gov\/articlerender/); // see if pubmedcentral.nih.gov/articlerender occurs in the variable url
if (matchpos1 !=-1){ // if url contains pubmedcentral.nih.gov/articlerender open url in new tab
document.location = url;
}
var matchpos2 = url.search(/ncbi.nlm.nih.gov.proxy.library.uu.nl\/entrez\/utils\/fref.fcgi\?PrId/); // see if ncbi.nlm.nih.gov.proxy.library.uu.nl/entrez/utils/fref.fcgi?PrId occurs in the variable url
if (matchpos2 !=-1){ // if url contains ncbi.nlm.nih.gov.proxy.library.uu.nl/entrez/utils/fref.fcgi?PrId open url in new tab
GM_openInTab(url);
// ==UserScript==
// @name Automatically open PDF
// @namespace Pubmedcentral
// @include http://www.pubmedcentral.nih.gov.proxy.library.uu.nl/articlerender.fcgi?tool=pubmed&pubmedid=*
// ==/UserScript==
// if a hyperlink on a http://www.pubmedcentral.nih.gov.proxy.library.uu.nl/articlerender.fcgi?tool=pubmed&pubmedid=* page contains blobtype=pdf then it refers to a pdf. So this scripts looks for such hyperlinks and opens them if it occurs.
var found = 0;
var links = document.getElementsByTagName(’a'); // get all hyperlinks and store them in variable links
for(var i = 0; i < links.length; i++) { // loop through the hyperlinks in variable links
var url = links[i].href;
var matchpos = url.search(/blobtype\=pdf/); // see if blobtype=pdf occurs in the variable url
if (matchpos !=-1 && found==0){ // if url contains blobtype=pdf open url in new window
window.location = url;
//alert(url);
found = 1; // to prevent opening more than one window the variable found is set to 1
var str = document.location.href;
var matchpos = str.search(/proxy.library.uu.nl/);
var rep = “www.springerlink.com.proxy.library.uu.nl”;
if (matchpos ==-1){
str = str.replace(/www.springerlink.com/g, rep);
document.location.href= str;
}
———————————————————————–
[view academic citations]
[hide academic citations]
AMA citation:
Martens J. Greasemonkey scripts for pubmed. MedBlog.nl. 2009. Available at: http://medblog.nl/2009/02/23/greasemonkey-scripts-for-pubmed/. Accessed March 11, 2010.
APA citation:
Martens, Jan. (2009). Greasemonkey scripts for pubmed. Retrieved March 11, 2010, from MedBlog.nl Web site: http://medblog.nl/2009/02/23/greasemonkey-scripts-for-pubmed/
Chicago citation:
Martens, Jan. 2009. Greasemonkey scripts for pubmed. MedBlog.nl. http://medblog.nl/2009/02/23/greasemonkey-scripts-for-pubmed/ (accessed March 11, 2010).
Harvard citation:
Martens, J 2009, Greasemonkey scripts for pubmed, MedBlog.nl. Retrieved March 11, 2010, from <http://medblog.nl/2009/02/23/greasemonkey-scripts-for-pubmed/>
MLA citation:
Martens, Jan. "Greasemonkey scripts for pubmed." 23 Feb. 2009. MedBlog.nl. Accessed 11 Mar. 2010. <http://medblog.nl/2009/02/23/greasemonkey-scripts-for-pubmed/>
As promised I will explain how I am strugling to keep an overview of all the references I collect during my historical research about brain stimulation in psychiatry. Ideally, with a web application I should be able to do all the things I want. But none does exactly what I want. Web applications as Mendeley or Labmeeting are great for sharing your pdf with other people and tagging your pdfs. So let’s start how I work.
*) I start using Endnote. I use the online search option in Endnote to find articles about for instance transcranial magnetic stimulation. The interesting ones I add to my Endnote library. I can use them later to create references in Word.
*) Next I export my references to a text file. This text file is imported in an Access database. I created this database especially for this research. I for instance want to know the last time I opened a pdf. I also want to store quotes from the original article together with the meta information.
*) I use Adobe Pro to annnotate the pdfs. You can highlight or underline text with Abobe Pro.The underlined or highlighted text can then be copied into my Access database. I do not have to retype all the text.
*) Another thing that annoyed me was the many mouse clicks I needed to arrive at the pdf. First I click on the link in my database. Then at home I have to login to the library. Then the Pubmed page opens and I have to click the logo of the journal (if it is electronically available). After clicking that logo I have to click again on a different page and then finally I have my pdf. This takes at least 6 clicks. To overcome this I use Greasemonkey. This is an add-on for Firefox. This add-on uses javascript and can automate things. I created several scripts and now if a pdf is available it will open automatically if I click on a Pubmed link.
*) I store my information on an external harddisk to be able to work at different places.
If you want more information about how I work or if you have ideas how I can improve my process please let me know in the comments.
Adobe Online SharingAcrobat.com is a set of online services — file sharing and storage, PDF converter, online word processor, and web conferencing — you can use to create and share documents, communicate in real time, and simplify working with others. It’s free, so sign up now.
Martens J. How do I cope with my pdf load?. MedBlog.nl. 2009. Available at: http://medblog.nl/2009/02/22/how-do-i-cope-with-my-pdf-load/. Accessed March 11, 2010.
APA citation:
Martens, Jan. (2009). How do I cope with my pdf load?. Retrieved March 11, 2010, from MedBlog.nl Web site: http://medblog.nl/2009/02/22/how-do-i-cope-with-my-pdf-load/
Chicago citation:
Martens, Jan. 2009. How do I cope with my pdf load?. MedBlog.nl. http://medblog.nl/2009/02/22/how-do-i-cope-with-my-pdf-load/ (accessed March 11, 2010).
Harvard citation:
Martens, J 2009, How do I cope with my pdf load?, MedBlog.nl. Retrieved March 11, 2010, from <http://medblog.nl/2009/02/22/how-do-i-cope-with-my-pdf-load/>
MLA citation:
Martens, Jan. "How do I cope with my pdf load?." 22 Feb. 2009. MedBlog.nl. Accessed 11 Mar. 2010. <http://medblog.nl/2009/02/22/how-do-i-cope-with-my-pdf-load/>
Belgian psychiatrist Damian Denys explains (in dutch) the use of DBS for OCD at Pauw en Witteman, a dutch talkshow. Below you can find an extensive video in which a patient treated for OCD is shown. Additional information should be found at Teleac in the course Wetenschap is beterschap, but unfortunatelly I could not find it.
The AMC, the medical centre Denys works, also interviewed him for the video series Fascinaties (Fascination).
[view academic citations]
[hide academic citations]
AMA citation:
Martens J. Deep Brain Stimulation for OCD. MedBlog.nl. 2009. Available at: http://medblog.nl/2009/02/21/deep-brain-stimulation-for-ocd/. Accessed March 11, 2010.
APA citation:
Martens, Jan. (2009). Deep Brain Stimulation for OCD. Retrieved March 11, 2010, from MedBlog.nl Web site: http://medblog.nl/2009/02/21/deep-brain-stimulation-for-ocd/
Chicago citation:
Martens, Jan. 2009. Deep Brain Stimulation for OCD. MedBlog.nl. http://medblog.nl/2009/02/21/deep-brain-stimulation-for-ocd/ (accessed March 11, 2010).
Harvard citation:
Martens, J 2009, Deep Brain Stimulation for OCD, MedBlog.nl. Retrieved March 11, 2010, from <http://medblog.nl/2009/02/21/deep-brain-stimulation-for-ocd/>
MLA citation:
Martens, Jan. "Deep Brain Stimulation for OCD." 21 Feb. 2009. MedBlog.nl. Accessed 11 Mar. 2010. <http://medblog.nl/2009/02/21/deep-brain-stimulation-for-ocd/>
After reading a lot of publications about brain stimulation I do not think you can really stimulate your brain with a 9V battery. But then again Wikipedia mentions that you only need 1-2 mA. And some people just try it. It is called transcranial direct current stimulation.
Martens J. Build your own brain stimulator?. MedBlog.nl. 2009. Available at: http://medblog.nl/2009/02/11/build-your-own-brain-stimulator/. Accessed March 11, 2010.
APA citation:
Martens, Jan. (2009). Build your own brain stimulator?. Retrieved March 11, 2010, from MedBlog.nl Web site: http://medblog.nl/2009/02/11/build-your-own-brain-stimulator/
Chicago citation:
Martens, Jan. 2009. Build your own brain stimulator?. MedBlog.nl. http://medblog.nl/2009/02/11/build-your-own-brain-stimulator/ (accessed March 11, 2010).
Harvard citation:
Martens, J 2009, Build your own brain stimulator?, MedBlog.nl. Retrieved March 11, 2010, from <http://medblog.nl/2009/02/11/build-your-own-brain-stimulator/>
MLA citation:
Martens, Jan. "Build your own brain stimulator?." 11 Feb. 2009. MedBlog.nl. Accessed 11 Mar. 2010. <http://medblog.nl/2009/02/11/build-your-own-brain-stimulator/>
Stanford University has her own video channel on YouTube. It also features a series of 7 videos on the future of human health. It is all about the brain and very interesting. Thanks to Scienceroll.
Martens J. Videos on the future of human health. MedBlog.nl. 2009. Available at: http://medblog.nl/2009/02/11/videos-on-the-future-of-human-health/. Accessed March 11, 2010.
APA citation:
Martens, Jan. (2009). Videos on the future of human health. Retrieved March 11, 2010, from MedBlog.nl Web site: http://medblog.nl/2009/02/11/videos-on-the-future-of-human-health/
Chicago citation:
Martens, Jan. 2009. Videos on the future of human health. MedBlog.nl. http://medblog.nl/2009/02/11/videos-on-the-future-of-human-health/ (accessed March 11, 2010).
Harvard citation:
Martens, J 2009, Videos on the future of human health, MedBlog.nl. Retrieved March 11, 2010, from <http://medblog.nl/2009/02/11/videos-on-the-future-of-human-health/>
MLA citation:
Martens, Jan. "Videos on the future of human health." 11 Feb. 2009. MedBlog.nl. Accessed 11 Mar. 2010. <http://medblog.nl/2009/02/11/videos-on-the-future-of-human-health/>
Since I will be busy finishing my thesis about on a history of brain stimulation in psychiatry with a focus on TMS, DBS and VNS, I will keep you updated about my achievements. This will mean that I will post less about web 2.0 and all that kind of stuff.
Later I will tell something about the way I work. How do I cope with loads of pdf (>100) and loads of references (>3000). But for now I just want to share some interesting videos about brain stimulation. Two are about TMS. The first one is a promotional video (thanks to Brain Stimulant). It tells us that Deep TMS was invented in 2001, but I am not really sure that is true. But I will find out during my research.
Martens J. Videos about TMS and Deep Brain Stimulation. MedBlog.nl. 2009. Available at: http://medblog.nl/2009/02/10/videos-about-tms-and-deep-brain-stimulation/. Accessed March 11, 2010.
APA citation:
Martens, Jan. (2009). Videos about TMS and Deep Brain Stimulation. Retrieved March 11, 2010, from MedBlog.nl Web site: http://medblog.nl/2009/02/10/videos-about-tms-and-deep-brain-stimulation/
Chicago citation:
Martens, Jan. 2009. Videos about TMS and Deep Brain Stimulation. MedBlog.nl. http://medblog.nl/2009/02/10/videos-about-tms-and-deep-brain-stimulation/ (accessed March 11, 2010).
Harvard citation:
Martens, J 2009, Videos about TMS and Deep Brain Stimulation, MedBlog.nl. Retrieved March 11, 2010, from <http://medblog.nl/2009/02/10/videos-about-tms-and-deep-brain-stimulation/>
MLA citation:
Martens, Jan. "Videos about TMS and Deep Brain Stimulation." 10 Feb. 2009. MedBlog.nl. Accessed 11 Mar. 2010. <http://medblog.nl/2009/02/10/videos-about-tms-and-deep-brain-stimulation/>
Google launches a new initiative: it plans to measure your blood pressure, sugar levels. When will they be able to measure all these thing directly without external devices. All these thing integrated in my keyboard and mouse. Wouldn’t that be nice?
[view academic citations]
[hide academic citations]
AMA citation:
Martens J. Google starts measuring your blood pressure. MedBlog.nl. 2009. Available at: http://medblog.nl/2009/02/06/google-start-measuring-your-bloodpressure/. Accessed March 11, 2010.
APA citation:
Martens, Jan. (2009). Google starts measuring your blood pressure. Retrieved March 11, 2010, from MedBlog.nl Web site: http://medblog.nl/2009/02/06/google-start-measuring-your-bloodpressure/
Chicago citation:
Martens, Jan. 2009. Google starts measuring your blood pressure. MedBlog.nl. http://medblog.nl/2009/02/06/google-start-measuring-your-bloodpressure/ (accessed March 11, 2010).
Harvard citation:
Martens, J 2009, Google starts measuring your blood pressure, MedBlog.nl. Retrieved March 11, 2010, from <http://medblog.nl/2009/02/06/google-start-measuring-your-bloodpressure/>
MLA citation:
Martens, Jan. "Google starts measuring your blood pressure." 6 Feb. 2009. MedBlog.nl. Accessed 11 Mar. 2010. <http://medblog.nl/2009/02/06/google-start-measuring-your-bloodpressure/>
The polls for the 2008 Medical Weblog Awards are opened. A quick look on the nominees revealed only one Dutch contender Laika’s MedLibLog. This weblog is nominated in the category Best New Medical Weblog. Please support her and vote for her. Unfortunately ShockMD did not make it to the shortlist.
[view academic citations]
[hide academic citations]
AMA citation:
Martens J. The 2008 Medical Weblog Awards. MedBlog.nl. 2009. Available at: http://medblog.nl/2009/01/06/the-2008-medical-weblog-awards/. Accessed March 11, 2010.
APA citation:
Martens, Jan. (2009). The 2008 Medical Weblog Awards. Retrieved March 11, 2010, from MedBlog.nl Web site: http://medblog.nl/2009/01/06/the-2008-medical-weblog-awards/
Chicago citation:
Martens, Jan. 2009. The 2008 Medical Weblog Awards. MedBlog.nl. http://medblog.nl/2009/01/06/the-2008-medical-weblog-awards/ (accessed March 11, 2010).
Harvard citation:
Martens, J 2009, The 2008 Medical Weblog Awards, MedBlog.nl. Retrieved March 11, 2010, from <http://medblog.nl/2009/01/06/the-2008-medical-weblog-awards/>
MLA citation:
Martens, Jan. "The 2008 Medical Weblog Awards." 6 Jan. 2009. MedBlog.nl. Accessed 11 Mar. 2010. <http://medblog.nl/2009/01/06/the-2008-medical-weblog-awards/>
Het Innovatielab Zorg 2.0 wordt exclusief ontwikkeld voor bestuurders, directeuren en professionals die werkzaam zijn in de CURE: ziekenhuizen en zelfstandige behandelcentra en de direct betrokkenen zoals de overheid, de koepel- kennis en adviesorganen, de verzekeraars, farmacie en nieuwe toetreders die deel (gaan) nemen aan het ‘ nieuwe zorgen’.
Martens J. Health 2.0 Innovation Lab. MedBlog.nl. 2009. Available at: http://medblog.nl/2009/01/05/health-20-innovation-lab/. Accessed March 11, 2010.
APA citation:
Martens, Jan. (2009). Health 2.0 Innovation Lab. Retrieved March 11, 2010, from MedBlog.nl Web site: http://medblog.nl/2009/01/05/health-20-innovation-lab/
Chicago citation:
Martens, Jan. 2009. Health 2.0 Innovation Lab. MedBlog.nl. http://medblog.nl/2009/01/05/health-20-innovation-lab/ (accessed March 11, 2010).
Harvard citation:
Martens, J 2009, Health 2.0 Innovation Lab, MedBlog.nl. Retrieved March 11, 2010, from <http://medblog.nl/2009/01/05/health-20-innovation-lab/>
Dean Guistini, blogger at UBC Academic Search - Google Scholar Blog, published a list of 75 medical 2.0 webservices. He categorizes the webservices in:
Let’s see if we can make MediGO feature the list next year.
[view academic citations]
[hide academic citations]
AMA citation:
Martens J. 75 Best Medical 2.0 webservices of 2008. MedBlog.nl. 2008. Available at: http://medblog.nl/2008/12/23/75-best-medical-20-webservices-of-2008/. Accessed March 11, 2010.
APA citation:
Martens, Jan. (2008). 75 Best Medical 2.0 webservices of 2008. Retrieved March 11, 2010, from MedBlog.nl Web site: http://medblog.nl/2008/12/23/75-best-medical-20-webservices-of-2008/
Chicago citation:
Martens, Jan. 2008. 75 Best Medical 2.0 webservices of 2008. MedBlog.nl. http://medblog.nl/2008/12/23/75-best-medical-20-webservices-of-2008/ (accessed March 11, 2010).
Harvard citation:
Martens, J 2008, 75 Best Medical 2.0 webservices of 2008, MedBlog.nl. Retrieved March 11, 2010, from <http://medblog.nl/2008/12/23/75-best-medical-20-webservices-of-2008/>
MLA citation:
Martens, Jan. "75 Best Medical 2.0 webservices of 2008." 23 Dec. 2008. MedBlog.nl. Accessed 11 Mar. 2010. <http://medblog.nl/2008/12/23/75-best-medical-20-webservices-of-2008/>
As some of you might know I am conducting a historical research about the use of electricity and magnetism in psychiatry. For now I am focussing on Transcranial Magnetic Stimulation. This morning I was looking at some videos on TED. This made me wonder if and what kind of videos are online available about TMS. I was hoping to find an old video no one ever heard that I could use for my reseach but unfortunatelly that did not happen. I tried Youtube with the search “transcranial magnetic stimulation” and only a handful of interesting modern videos were the result. No old videos about guinea pigs in a magnetic stimulator came up. Nevertheless I will present the videos below. So if you might come across interesting videos or other information about TMS please let me know in the comments.
Martens J. Transcranial Magnetic Stimulation Historical Research. MedBlog.nl. 2008. Available at: http://medblog.nl/2008/12/20/transcranial-magnetic-stimulation-historical-research/. Accessed March 11, 2010.
APA citation:
Martens, Jan. (2008). Transcranial Magnetic Stimulation Historical Research. Retrieved March 11, 2010, from MedBlog.nl Web site: http://medblog.nl/2008/12/20/transcranial-magnetic-stimulation-historical-research/
Chicago citation:
Martens, Jan. 2008. Transcranial Magnetic Stimulation Historical Research. MedBlog.nl. http://medblog.nl/2008/12/20/transcranial-magnetic-stimulation-historical-research/ (accessed March 11, 2010).
Harvard citation:
Martens, J 2008, Transcranial Magnetic Stimulation Historical Research, MedBlog.nl. Retrieved March 11, 2010, from <http://medblog.nl/2008/12/20/transcranial-magnetic-stimulation-historical-research/>
MLA citation:
Martens, Jan. "Transcranial Magnetic Stimulation Historical Research." 20 Dec. 2008. MedBlog.nl. Accessed 11 Mar. 2010. <http://medblog.nl/2008/12/20/transcranial-magnetic-stimulation-historical-research/>