I hereby claim:
- I am unifex on github.
- I am unifex (https://keybase.io/unifex) on keybase.
- I have a public key whose fingerprint is F1D4 3D57 CB3F C6AF AF0A 7B2C E086 029D 4F37 645D
To claim this, I am signing this object:
<div class="well well-lg" data-well-bg="path/to/image"> | |
Content and stuff. | |
</div> |
I hereby claim:
To claim this, I am signing this object:
Response to homeopathynatho
Homeopathic remedies (potencies) aim to minimise the risk of adverse effects. There are different types that may be used for asthma, such as classical homeopathy (tailored to an individual’s symptoms) or isopathy (for example using a dilution of an agent that causes an allergy, such as pollen). The review of trials found that the type of homeopathy varied between the studies, that the study designs used in the trials were varied and that no strong evidence existed that usual forms of homeopathy for asthma are effective. There has been only a limited attempt to measure a ‘package of care’ effect (i.e., the effect of the medication as well as the consultation, which is considered a vital part of individualised homeopathic practice). **Until stronger evidence exists for the use of homeopathy in the treatment o
Response to homeopathynatho
Dementia is a distressing illness that has major implications for individuals with the disease and their carers. Homeopathy is a popular type of complementary medicine. It is however controversial because although there is some evidence that it is not just a placebo, no one understands how it could work. The researchers did not find any good quality trials and so cannot say whether it is or is not effective for treating this condition. As no information is available on how much homeopathy is used for dementia, it is difficult to say whether it is important to conduct more trials.
Response to homeopathynatho
This review aimed to assess the evidence for homeopathy as an intervention for attention deficit/hyperactivity disorder. Four trials were retrieved and assessed with mixed results. Overall the results of this review found no evidence of effectiveness for homeopathy for the global symptoms, core symptoms or related outcomes of attention deficit/hyperactivity disorder.
Response to homeopathynatho
This review looked at whether these [homeopathic] medicines could help patients with problems caused by cancer treatments […] Two studies with low risk of bias demonstrated benefit: one with 254 participants demonstrated benefits from calendula ointment in the prevention of radiotherapy-induced dermatitis, and another with 32 participants demonstrated benefits from Traumeel S (a complex homeopathic medicine) […] These trials need replicating. Two other studies reported positive results, although the risk of bias was unclear, and four further studies reported negative results. […].
Response to homeopathynatho
The review of trials found there was not enough evidence to show the effect of a homoeopathy as a method of induction. More research is needed.
/** | |
* Helper funtion to get an array of menu items and children. | |
* | |
* This returns an array of menu items with child menu items added to the | |
* 'children' key. | |
* | |
* @param int $mlid | |
* The menu link ID we are looking at. | |
* @param int $depth | |
* How deep do you want to go? |
drush ev ' | |
$query = new EntityFieldQuery; | |
print_r($query); | |
$result = $query->entityCondition("entity_type", "node") | |
->propertyCondition("type", "morning_message") | |
->execute(); | |
print_r($result); | |
foreach ($result['node'] as $row) { | |
print_r($row); | |
$node = node_load($row->nid); |
<?php | |
/** | |
* Implements hook_preprocess_node(). | |
*/ | |
function my_module_preprocess_node(&$variables) { | |
$node = $variables['node']; | |
// First published. | |
// This query uses workbench moderation to determine the first moderation | |
// transition that resulted in a published node and takes the timestamp | |
// from that record. |