• Welcome to Phoenix Rising!

    Created in 2008, Phoenix Rising is the largest and oldest forum dedicated to furthering the understanding of, and finding treatments for, complex chronic illnesses such as chronic fatigue syndrome (ME/CFS), fibromyalgia, long COVID, postural orthostatic tachycardia syndrome (POTS), mast cell activation syndrome (MCAS), and allied diseases.

    To become a member, simply click the Register button at the top right.

9 PubMed Ninja Skills (Nov 30): Tips showing various options on PubMed

jimells

Senior Member
Messages
2,009
Location
northern Maine
Thank you for the link. I look forward to reading the article. One reason I am a fan of Pubmed is that pages load fairly quickly even over a dialup internet connection. Apparently they actually have people who understand that not every one in the world has a fiber connection to their desktop.

I liked the photo of the old IBM mainframe. I worked on an IBM 360 Model 20 in 1974. It included the infamous (among computer operators, anyway) "Multi-Function Card Machine" with two feed hoppers, four or five output stackers, a punch unit, and a print unit.

The initials "MFCM" also stood for "M F Card Mangler" on an all-too-frequent occasions. I literally fed punch cards into the thing for eight hours a night most nights that I worked.
 

Hip

Senior Member
Messages
17,865
Thanks for the link to those PubMed search tips.

Most of the time when I want to search PubMed, though, I do it through Google, because it is easier on Google to find the info you are looking for, since Google provides those two text extract lines in each search result, which shows you the context.

To search PubMed through Google, just put:
Code:
site:www.ncbi.nlm.nih.gov
into your search query.

For example, here is Google PubMed search on CFS and rituximab:

chronic fatigue syndrome rituximab site:www.ncbi.nlm.nih.gov
 
Last edited:

Hip

Senior Member
Messages
17,865
In case it is of any use, I wrote a bookmarklet which you can put in your browser's favorites bar (bookmarks bar). A bookmarklet is similar to a regular bookmark, but does some funky extra things.

The bookmarklet I wrote allows you to select (highlight) any word or phrase on the webpage you are reading, and then when you click on this bookmarklet in your favorites bar, it will instantly perform a PubMed search (via Google) on that word or phrase.



The PubMed search bookmarklet is this:
Code:
javascript:(function(){if(document.activeElement.tagName!=="IFRAME"){query=document.activeElement.ownerDocument.getSelection();}else{query=document.getElementsByTagName("iframe")[0].contentWindow.document.getSelection();};query=query.toString().trim().replace(/\s/g,"+");window.open("https://www.google.com/search?q=site:www.ncbi.nlm.nih.gov+"+encodeURI(query));/**/})()

To install this bookmarklet, with your mouse, just select (highlight) all the text in the above blue box (make sure you select all of it), drag this text selection up to your browser's favorites bar, and then drop the text selection there. That will create a new bookmarklet in your favorites bar.

Then you can search PubMed in the way described above (ie, highlighting your search words, and then clicking the bookmarklet).



Also wrote a similar bookmarklet that searches the PR forum on your selected (highlighted) word or phrase:
Code:
javascript:(function(){if(document.activeElement.tagName!=="IFRAME"){query=document.activeElement.ownerDocument.getSelection();}else{query=document.getElementsByTagName("iframe")[0].contentWindow.document.getSelection();};query=query.toString().trim().replace(/\s/g,"+");if(query!=""){window.open("http://forums.phoenixrising.me/index.php?search/1&q="+encodeURI(query));}else{window.open("http://forums.phoenixrising.me/index.php?search");};/**/})()
 
Last edited: