Search
1000 results for “href”
-
I'm going to do some reflecting here on #haidra
https://hachyderm.io/@nivenly/110890692128244044
Because I have tried to write a perspective more appropriate for the private discussion and I keep failing because I get angry, so I am going to start here.
First, as a pet peeve, let me say:
I am autistic. I have ADHD. I have NVLD.
I strongly dislike when people say things like "As a neurodivergent, I will readily admit that I do not react well to such comments and for that I’d like to apologize and try again."
1/
-
@hrefna you're so deeply right in this thread. this essentially defines the early and formative years of #RDF and #RDFS around some key decisions. There is so much worry about errors from mishandling, but the very possibility of expressing something that could be wrong. There is so much here it's hard to even know where to start but from the very start of the rdf-core and especially rdf-logic mailing lists the emphasis on correctness of expression vs. agency of interpretation is heated. This is a pretty unsubtle example: https://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0423.html
"Summary: RDF is not just a data model. The RDF specs should define a semantics so that an RDF statement on the web is interpreted as an assertion of that statement such that its author would be responsible in law as if it had been published in, say, a newspaper."
affirmed by this text: https://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Jun/0180.html
"The RDFCore WG takes the view that RDF/XML documents, ie. encodings of
RDF graphs, are represenations of claims or assertions about the world. [...] we note that RDF graphs are the kind of things that can be true or false (rather than 'mere bytes'). For each linear syntax of RDF, there will be conventions (social, legal) for indicating which chunks of data are encodings of RDF graphs in that syntax, and thus of propositional content."So ya very very early they had decided that RDF was intended to be platonic representation of the world - it is a method of making propositions that must directly bear on the world, there is no ambiguity, there are only true or false things. (There's a lot of subtlety in that but yno.)
Another thing that comes to mind is the discussion of monotonicity that happens throughout, that's also tied up with the discussion of closed worldedness, containers, and whether or not things belong in sets for the purpose of local meaning or need to belong to the One Great Uniform Graph. It must be impossible for adding new triples into the reasoner to make it less certain of some outcome (ie. if it was possible for ambiguity to be introduced eg. by tangled type hierarchies etc.). This thread is all very illustrative but this message is super spicy and also touches on what you're talking about re using the level of granularity you care about: https://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2001Nov/0363.html
this quote from D bricks is also pretty telling of the epistemological commitments:
"RDF Schema is not about policing the content of specific descriptions
'what is said'; it's about policing what is sensibly sayable." -
Someone scanned “An Atlas of Insect Morphology” by Steinmann and Zombori — a book that is rare and expensive. you can find it here. #books #reference #insects #drawing #ants #antArt #resources #share
https://href.li/?https://drive.google.com/file/d/1dzL4bULHRQO3hv1_0PevYkDJGVaPiS8C/view?usp=sharing
-
Someone scanned “An Atlas of Insect Morphology” by Steinmann and Zombori — a book that is rare and expensive. you can find it here. #books #reference #insects #drawing #ants #antArt #resources #share
https://href.li/?https://drive.google.com/file/d/1dzL4bULHRQO3hv1_0PevYkDJGVaPiS8C/view?usp=sharing
-
Someone scanned “An Atlas of Insect Morphology” by Steinmann and Zombori — a book that is rare and expensive. you can find it here. #books #reference #insects #drawing #ants #antArt #resources #share
https://href.li/?https://drive.google.com/file/d/1dzL4bULHRQO3hv1_0PevYkDJGVaPiS8C/view?usp=sharing
-
Someone scanned “An Atlas of Insect Morphology” by Steinmann and Zombori — a book that is rare and expensive. you can find it here. #books #reference #insects #drawing #ants #antArt #resources #share
https://href.li/?https://drive.google.com/file/d/1dzL4bULHRQO3hv1_0PevYkDJGVaPiS8C/view?usp=sharing
-
Someone scanned “An Atlas of Insect Morphology” by Steinmann and Zombori — a book that is rare and expensive. you can find it here. #books #reference #insects #drawing #ants #antArt #resources #share
https://href.li/?https://drive.google.com/file/d/1dzL4bULHRQO3hv1_0PevYkDJGVaPiS8C/view?usp=sharing
-
Conservationists are facing significant emotional and psychological stresses, as highlighted by <a href='https://news.mongabay.com/2026/03/the-emotional-price-of-conservation-work' target='_blank'>Jeremy Hance</a> and <a href='https://news.mongabay.com/2026/03/emotional-and-psychological-stresses-beleaguer-conservation-professionals' target='_blank'>Vik Mohan and Nerissa Chao</a>. This underscores the need for mental health support in our field. #ConservationMentalHealth #PsychologicalStress #ConservationScience #ConservationEconomics
-
@hrefna The aspect I find most surprising about it is that it didn't happen earlier. #boilingfrogs -
Maximally Semantic Structure for a Blog Post
https://shkspr.mobi/blog/2026/01/maximally-semantic-structure-for-a-blog-post/Yes, I know the cliché that bloggers are always blogging about blogging!
I like semantics. It tickles that part of my delicious meaty brain that longs for structure. Semantics are good for computers and humans. Computers can easily understand the structure of the data, humans can use tools like screen-readers to extract the data they're interested in.
In HTML, there are three main ways to impose semantics - elements, attributes, and hierarchical microdata.
Elements are easy to understand. Rather than using a generic element like
<div>you can use something like<nav>to show an element's contents are for navigation. Or<address>to show that the contents are an address. Or<article><section>to show that the section is part of a parent article.Attributes are also common. You can use relational attributes to show how a link relates to the page it is on. For example
<a rel=author href=https://example.com>shows that the link is to the author of the current page. Or, to see that a link goes to the previous page in a series<a rel=prev href=/page5>.Finally, we enter the complex and frightening world of microdata.
Using the Schema.org vocabulary it's possible to add semantic metadata within an HTML element. For example,
<body itemtype=https://schema.org/Blog itemscope>says that the body of this page is a Blog. Or, to say how many words a piece has,<span itemprop=wordCount content=1100>1,100 words</span>.There are many properties you can use. Here's the outline structure of a single blog post with a code sample, a footnote, and a comment. You can check its structured data and verify that it is conformant HTML.
Feel free to reuse.
<!doctype html> <html lang=en-gb> <head><title>My Blog</title></head> <body itemtype=https://schema.org/Blog itemscope> <header itemprop=headline> <a rel=home href=https://example.com>My Blog</a> </header> <main itemtype=https://schema.org/BlogPosting itemprop=blogPost itemscope> <article> <header> <time itemprop=https://schema.org/datePublished datetime=2025-12-01T12:34:39+01:00> 1st January, 2025 </time> <h1 itemprop=headline> <a rel=bookmark href=https://example.com/page>Post Title</a> </h1> <span itemtype=https://schema.org/Person itemprop=author itemscope> <a itemprop=url href=https://example.org/> By <span itemprop=name>Author Name</span> </a> <img itemprop=image src=/photo.jpg alt> </span> <p> <a itemprop=keywords content=HTML rel=tag href=/tag/html/>HTML</a> <a itemprop=keywords content=semantics rel=tag href=/tag/semantics/>semantics</a> <a itemprop=commentCount content=6 href=#comments>6 comments</a> <span itemprop=wordCount content=1100>1,100 words</span> <span itemtype=https://schema.org/InteractionCounter itemprop=interactionStatistic itemscope> <meta content=https://schema.org/ReadAction itemprop=interactionType> <span itemprop=userInteractionCount content=5150> Viewed ~5,150 times </span> </span> </p> </header> <div itemprop=articleBody> <img itemprop=image src=/hero.png alt> <p>Text of the post.</p> <p>Text with a footnote<sup id=fnref><a role=doc-noteref href=#fn>0</a></sup>.</p> <pre itemtype=https://schema.org/SoftwareSourceCode itemscope translate=no> <span itemprop=programmingLanguage>PHP</span> <code itemprop=text>&lt;?php echo $postID ?&gt;</code> </pre> <section role=doc-endnotes> <h2>Footnotes</h2> <ol> <li id=fn> <p>Footnote text. <a role=doc-backlink href=#fnref>↩︎</a></p> </li> </ol> </section> </div> </article> <section id=comments> <h2>Comments</h2> <article itemtype=https://schema.org/Comment itemscope id="comment-123465"> <time itemprop=dateCreated datetime=2025-09-11T13:24:54+01:00> <a itemprop=url href=#comment-123465>2025-09-11 13:24</a> </time> <div itemtype=https://schema.org/Person itemprop=author itemscope> <img itemprop=image src="/avatar.jpg" alt> <h3> <span itemprop=name>Alice</span> says: </h3> </div> <div itemprop=text> <p>Comment text</p> </div> </article> </section> </main> </body> </html>This blog post is entitled "maximally" but, of course, there is lots more that you can add if you really want to.
Remember, none of this is necessary. Computers and humans are pretty good at extracting meaning from unstructured text. But making things easier for others is always time well spent.
#blogging #HTML #schemaOrg #semanticWeb -
Adding Semantic Reviews / Rich Snippets to your WordPress Site
https://shkspr.mobi/blog/2020/07/adding-semantic-reviews-rich-snippets-to-your-wordpress-site/
This is a real "scratch my own itch" post. I want to add Schema.org semantic metadata to the book reviews I write on my blog. This will enable "rich snippets" in search engines.
There are loads of WordPress plugins which do this. But where's the fun in that?! So here's how I quickly built it into my open source blog theme.
Screen options
First, let's add some screen options to the WordPress editor screen.
This is what it will look like when done:
This is how to add a custom metabox to the editor screen:
// Place this in functions.php// Display the boxfunction edent_add_review_custom_box(){ $screens = ['post']; foreach ($screens as $screen) { add_meta_box( 'edent_review_box_id', // Unique ID 'Book Review Metadata', // Box title 'edent_review_box_html',// Content callback, must be of type callable $screen // Post type ); }}add_action('add_meta_boxes', 'edent_add_review_custom_box');The contents of the box are bog standard HTML
// Place this in functions.php// HTML for the boxfunction edent_review_box_html($post){ $review_data = get_post_meta(get_the_ID(), "_edent_book_review_meta_key", true); echo "<table>"; $checked = ""; if ($review_data["review"] == "true") { $checked = "checked"; } echo "<tr><td><label for='edent_book_review'>Embed Book Review:</label></td><td><input type=checkbox id=edent_book_review name=edent_book_review[review] value=true {$checked}></tr>"; echo "<tr><td><label for='edent_rating'>Rating:</label></td><td><input type=range id=edent_rating name=edent_book_review[rating] min=0 max=5 step=0.5 value='". esc_html($review_data["rating"]) ."'></tr>"; echo "<tr><td><label for=edent_isbn >ISBN:</label></td><td><input name=edent_book_review[isbn] id=edent_isbn type=text value='" . esc_html($review_data["isbn"]) . "' autocomplete=off></tr>"; echo "</table>";}Done! We now have a box for metadata. That data will be
POSTed every time the blogpost is saved. But where do the data go?Saving data
This function is added every time the blogpost is saved. If the checkbox has been ticked, the metadata are saved to the database. If the checkbox is unticked, the metadata are deleted.
// Place this in functions.php// Save the boxfunction edent_review_save_postdata($post_id){ if (array_key_exists('edent_book_review', $_POST)) { if ($_POST['edent_book_review']["review"] == "true") { update_post_meta( $post_id, '_edent_book_review_meta_key', $_POST['edent_book_review'] ); } else { delete_post_meta( $post_id, '_edent_book_review_meta_key' ); } }}add_action('save_post', 'edent_review_save_postdata');Nice! But how do we get the data back out again?
Retrieving the data
We can use the
get_post_meta()function to get all the metadata associated with a blog entry. We can then turn it into a Schema.org structured metadata entry.function edent_book_review_display($post_id){ // https://developer.wordpress.org/reference/functions/the_meta/ $review_data = get_post_meta($post_id, "_edent_book_review_meta_key", true); if ($review_data["review"] == "true") { $blog_author_data = get_the_author_meta(); $schema_review = array ( '@context' => 'https://schema.org', '@type' => 'Review', 'author' => array ( '@type' => 'Person', 'name' => get_the_author_meta("user_firstname") . " " . get_the_author_meta("user_lastname"), 'sameAs' => array ( 0 => get_the_author_meta("user_url"), ), ), 'url' => get_permalink(), 'datePublished' => get_the_date('c'), 'publisher' => array ( '@type' => 'Organization', 'name' => get_bloginfo("name"), 'sameAs' => get_bloginfo("url"), ), 'description' => mb_substr(get_the_excerpt(), 0, 198), 'inLanguage' => get_bloginfo("language"), 'itemReviewed' => array ( '@type' => 'Book', 'name' => $review_data["title"], 'isbn' => $review_data["isbn"], 'sameAs' => $review_data["book_url"], 'author' => array ( '@type' => 'Person', 'name' => $review_data["author"], 'sameAs' => $review_data["author_url"], ), 'datePublished' => $review_data["book_date"], ), 'reviewRating' => array ( '@type' => 'Rating', 'worstRating' => 0, 'bestRating' => 5, 'ratingValue' => $review_data["rating"], ), 'thumbnailUrl' => get_the_post_thumbnail_url(), ); echo '<script type="application/ld+json">' . json_encode($schema_review) . '</script>'; echo "<div class='edent-review' style='clear:both;'>"; if (isset($review_data["rating"])) { echo "<span class='edent-rating-stars' style='font-size:2em;color:yellow;background-color:#13131380;'>"; $full = floor($review_data["rating"]); $half = 0; if ($review_data["rating"] - $full == 0.5) { $half = 1; } $empty = 5 - $half - $full; for ($i=0; $i < $full ; $i++) { echo "★"; } if ($half == 1) { echo "⯪"; } for ($i=0; $i < $empty ; $i++) { echo "☆"; } echo "</span>"; } echo "<ul>"; if ($review_data["amazon_url"] != "") { echo "<li><a href='{$review_data["amazon_url"]}'>Buy it on Amazon</a></li>"; } if ($review_data["author_url"] != "") { echo "<li><a href='{$review_data["author_url"]}'>Author's homepage</a></li>"; } if ($review_data["book_url"] != "") { echo "<li><a href='{$review_data["book_url"]}'>Publisher's details</a></li>"; } echo "</ul>"; } echo "</div>";}In
index.php, afterthe_content();add:edent_book_review_display(get_the_ID());Then, on the website, it will look something like this:
Note the use of the Unicode Half Star for the ratings.
The source code of the site shows the output of the JSON LD:
When run through a Structured Data Testing Tool, it shows as a valid review:
And this means, when search engines access your blog, they will display rich snippets based on the semantic metadata.
You can see the final blog post to see how it works.
ToDo
My code is horrible and hasn't been tested, validated, or sanitised. It's only for my own blog, and I'm unlikely to hack myself, but that needs fixing.
I want to add review metadata for movies, games, and gadgets. That will either require multiple boxes, or a clever way to only show the necessary fields.
-
I don't remember why, but apparently i scripted `/shrug` in my #irssi client to run `curl -s shrug.io`.
Someone did not renew that domain and now redirecting to the godaddy landing page.
I'm currently spamming people with "<!DOCTYPE html><html><head><script>window.onload=function(){window.location.href="/lander"}</script></head></html>".
-
Recently there was an article on HackerNews about CSS Print styles. Here's mine; included in the page with `<link rel="stylesheet" href="/print.css" media="print" />` so it won't slow down the page when not printing.
-
Private, vetted email list for mental health professionals: https://www.clinicians-exchange.org
Open LEMMY instance for all mental health workers: https://lem.clinicians-exchange.org
.
Please BLOCK this robot if the LARGE VOLUME of psychology & health research-related posts irritates you.
.
DATE:
August 26, 2023 at 12:57PM
.
TITLE:
The effects of small class sizes on students’ academic achievement, socioemotional development and well-being in special education
.
URL:
https://ifp.nyu.edu/2023/meta-analyses-systematic-reviews/effects-of-small-class-sizes-in-special-education-html/<p><a href="https://www.campbellcollaboration.org/better-evidence/effects-of-small-class-sizes-in-special-education.html" target="_blank" rel="noopener">Read the full article ›</a></p>
<p>The post <a rel="nofollow" href="https://ifp.nyu.edu/2023/meta-analyses-systematic-reviews/effects-of-small-class-sizes-in-special-education-html/">The effects of small class sizes on students’ academic achievement, socioemotional development and well-being in special education</a> was curated by <a rel="nofollow" href="https://ifp.nyu.edu">information for practice</a>.</p>.
.
See also our Psychology News Robot for other stories from multiple sources at https://mastodon.clinicians-exchange.org/@psychbot
.
EMAIL DAILY DIGEST OF RSS FEEDS -- SUBSCRIBE:
http://subscribe-article-digests.clinicians-exchange.org
.
READ ONLINE: http://read-the-rss-mega-archive.clinicians-exchange.org
It's primitive... but it works... mostly...
.
#psychology #counseling #socialwork #psychotherapy @psychotherapist @psychotherapists @psychology @socialpsych @socialwork @psychiatry #mentalhealth #psychiatry #healthcare #depression #psychotherapist #research #academia #university #scholarship #journal #journalarticle #professor -
Private, vetted email list for mental health professionals: https://www.clinicians-exchange.org
Open LEMMY instance for all mental health workers: https://lem.clinicians-exchange.org
.
Please BLOCK this robot if the LARGE VOLUME of psychology & health research-related posts irritates you.
.
DATE:
August 26, 2023 at 12:41PM
.
TITLE:
The Feasibility, Acceptability, and Efficacy of Positive Search Training for Irritable Youth: A Single-Case Experimental Design
.
URL:
https://ifp.nyu.edu/2023/journal-article-abstracts/bec-2022-16/<div class="abstract" data-abstract-type="normal">
<p>Although irritability is common in youth, research on treatment is in its infancy. Threat biases are more pronounced in irritable compared to low irritable youth, similar to evidence found in anxious youth. Therefore, interventions targeting these biases may be promising for reducing irritability. This study utilised a multiple baseline case series design to determine the feasibility, acceptability, and efficacy of positive search training (PST) for irritable children. Three children were included who met criteria for a principal diagnosis of Disruptive Mood Dysregulation Disorder (DMDD), and a secondary diagnosis of Attention Deficit Hyperactivity Disorder (ADHD) or Major Depressive Disorder (MDD). PST was feasible with two of the three participants; one child refused to continue after one session. For the two participants who completed PST, acceptability was stable with moderate-to-high ratings of engagement and enjoyment, and high and stable treatment-relevant verbalisations of the key strategies. Both cases showed declines in DMDD severity across treatment and no longer met criteria at post-treatment. Both participants met criteria for Oppositional Defiant Disorder (ODD) at post-treatment (considered less severe for irritability than DMDD). Declines in parent-reported irritability occurred for both cases, however some returns to baseline were observed. Overall, PST for irritable youth shows promise as an acceptable and feasible intervention. Further studies are needed combining PST with strategies for secondary diagnoses, given its high comorbidity with disruptive behaviour disorders.</p>
</div>
<p><a href="https://www.cambridge.org/core/journals/behaviour-change/article/feasibility-acceptability-and-efficacy-of-positive-search-training-for-irritable-youth-a-singlecase-experimental-design/5A6F1FB41854D69CDD4072AB7B0E92A2" target="_blank" rel="noopener">Read the full article ›</a></p>
<p>The post <a rel="nofollow" href="https://ifp.nyu.edu/2023/journal-article-abstracts/bec-2022-16/">The Feasibility, Acceptability, and Efficacy of Positive Search Training for Irritable Youth: A Single-Case Experimental Design</a> was curated by <a rel="nofollow" href="https://ifp.nyu.edu">information for practice</a>.</p>.
.
See also our Psychology News Robot for other stories from multiple sources at https://mastodon.clinicians-exchange.org/@psychbot
.
EMAIL DAILY DIGEST OF RSS FEEDS -- SUBSCRIBE:
http://subscribe-article-digests.clinicians-exchange.org
.
READ ONLINE: http://read-the-rss-mega-archive.clinicians-exchange.org
It's primitive... but it works... mostly...
.
#psychology #counseling #socialwork #psychotherapy @psychotherapist @psychotherapists @psychology @socialpsych @socialwork @psychiatry #mentalhealth #psychiatry #healthcare #depression #psychotherapist #research #academia #university #scholarship #journal #journalarticle #professor -
Private, vetted email list for mental health professionals: https://www.clinicians-exchange.org
Open LEMMY instance for all mental health workers: https://lem.clinicians-exchange.org
.
Please BLOCK this robot if the LARGE VOLUME of psychology & health research-related posts irritates you.
.
DATE:
August 26, 2023 at 12:28PM
.
TITLE:
Advancing Progress in Cancer Prevention and Risk Reduction: Proceedings of a Workshop
.
URL:
https://ifp.nyu.edu/2023/monographs-edited-collections/advancing-progress-in-cancer-prevention-and-risk-reduction-proceedings-of-a-workshop/<p>The post <a rel="nofollow" href="https://ifp.nyu.edu/2023/monographs-edited-collections/advancing-progress-in-cancer-prevention-and-risk-reduction-proceedings-of-a-workshop/">Advancing Progress in Cancer Prevention and Risk Reduction: Proceedings of a Workshop</a> was curated by <a rel="nofollow" href="https://ifp.nyu.edu">information for practice</a>.</p>
.
.
See also our Psychology News Robot for other stories from multiple sources at https://mastodon.clinicians-exchange.org/@psychbot
.
EMAIL DAILY DIGEST OF RSS FEEDS -- SUBSCRIBE:
http://subscribe-article-digests.clinicians-exchange.org
.
READ ONLINE: http://read-the-rss-mega-archive.clinicians-exchange.org
It's primitive... but it works... mostly...
.
#psychology #counseling #socialwork #psychotherapy @psychotherapist @psychotherapists @psychology @socialpsych @socialwork @psychiatry #mentalhealth #psychiatry #healthcare #depression #psychotherapist #research #academia #university #scholarship #journal #journalarticle #professor -
Private, vetted email list for mental health professionals: https://www.clinicians-exchange.org
Open LEMMY instance for all mental health workers: https://lem.clinicians-exchange.org
.
Please BLOCK this robot if the LARGE VOLUME of psychology & health research-related posts irritates you.
.
DATE:
August 26, 2023 at 12:29PM
.
TITLE:
Coping with the COVID-19 pandemic: A cross-sectional study to investigate how mental health, lifestyle, and socio-demographic factors shape students’ quality of life
.
URL:
https://ifp.nyu.edu/2023/open-access-journal-articles/coping-with-the-covid-19-pandemic-a-cross-sectional-study-to-investigate-how-mental-health-lifestyle-and-socio-demographic-factors-shape-students-quality-of-life/<p>The post <a rel="nofollow" href="https://ifp.nyu.edu/2023/open-access-journal-articles/coping-with-the-covid-19-pandemic-a-cross-sectional-study-to-investigate-how-mental-health-lifestyle-and-socio-demographic-factors-shape-students-quality-of-life/">Coping with the COVID-19 pandemic: A cross-sectional study to investigate how mental health, lifestyle, and socio-demographic factors shape students’ quality of life</a> was curated by <a rel="nofollow" href="https://ifp.nyu.edu">information for practice</a>.</p>
.
.
See also our Psychology News Robot for other stories from multiple sources at https://mastodon.clinicians-exchange.org/@psychbot
.
EMAIL DAILY DIGEST OF RSS FEEDS -- SUBSCRIBE:
http://subscribe-article-digests.clinicians-exchange.org
.
READ ONLINE: http://read-the-rss-mega-archive.clinicians-exchange.org
It's primitive... but it works... mostly...
.
#psychology #counseling #socialwork #psychotherapy @psychotherapist @psychotherapists @psychology @socialpsych @socialwork @psychiatry #mentalhealth #psychiatry #healthcare #depression #psychotherapist #research #academia #university #scholarship #journal #journalarticle #professor -
Private, vetted email list for mental health professionals: https://www.clinicians-exchange.org
Open LEMMY instance for all mental health workers: https://lem.clinicians-exchange.org
.
Please BLOCK this robot if the LARGE VOLUME of psychology & health research-related posts irritates you.
.
DATE:
August 26, 2023 at 12:17PM
.
TITLE:
The Impact of High Housing Costs on Retirement
.
URL:
https://ifp.nyu.edu/2023/grey-literature/the-impact-of-high-housing-costs-on-retirement/<p>The post <a rel="nofollow" href="https://ifp.nyu.edu/2023/grey-literature/the-impact-of-high-housing-costs-on-retirement/">The Impact of High Housing Costs on Retirement</a> was curated by <a rel="nofollow" href="https://ifp.nyu.edu">information for practice</a>.</p>
.
.
See also our Psychology News Robot for other stories from multiple sources at https://mastodon.clinicians-exchange.org/@psychbot
.
EMAIL DAILY DIGEST OF RSS FEEDS -- SUBSCRIBE:
http://subscribe-article-digests.clinicians-exchange.org
.
READ ONLINE: http://read-the-rss-mega-archive.clinicians-exchange.org
It's primitive... but it works... mostly...
.
#psychology #counseling #socialwork #psychotherapy @psychotherapist @psychotherapists @psychology @socialpsych @socialwork @psychiatry #mentalhealth #psychiatry #healthcare #depression #psychotherapist #research #academia #university #scholarship #journal #journalarticle #professor -
Private, vetted email list for mental health professionals: https://www.clinicians-exchange.org
Open LEMMY instance for all mental health workers: https://lem.clinicians-exchange.org
.
Please BLOCK this robot if the LARGE VOLUME of psychology & health research-related posts irritates you.
.
DATE:
August 26, 2023 at 12:12PM
.
TITLE:
A translational approach to the mind–brain–body connection.
.
URL:
https://ifp.nyu.edu/2023/journal-article-abstracts/tps0000374/<p>Translational Issues in Psychological Science, Vol 9(2), Jun 2023, 103-106; doi:10.1037/tps0000374</p>
<p>Mental and physical health are closely tied, and a deeper understanding of how the mind, brain, and body are connected has the potential to substantially improve health outcomes. In particular, a translational approach that integrates research on mind–brain–body connections at multiple levels of analysis (e.g., basic science, patient-oriented, and intervention science perspectives) can contribute toward the development, targeting, and implementation of mechanistically informed and effective interventions to improve mental and physical health. The three articles in this special issue elucidate a range of biological and behavioral mechanisms within the mind, brain, and body that contribute to health. The varying levels of analysis examined in each article complement each other to arrive at deeper insights than any one article would alone. Taken together, their research highlights the added value of moving from separate mental and physical health care models toward holistic care, and of considering how context may inform “for whom” a given intervention is most effective. (PsycInfo Database Record (c) 2023 APA, all rights reserved)</p>
<p><a href="https://ifp.nyu.edu/?internalerror=true" target="_blank" rel="noopener">Read the full article ›</a></p>
<p>The post <a rel="nofollow" href="https://ifp.nyu.edu/2023/journal-article-abstracts/tps0000374/">A translational approach to the mind–brain–body connection.</a> was curated by <a rel="nofollow" href="https://ifp.nyu.edu">information for practice</a>.</p>.
.
See also our Psychology News Robot for other stories from multiple sources at https://mastodon.clinicians-exchange.org/@psychbot
.
EMAIL DAILY DIGEST OF RSS FEEDS -- SUBSCRIBE:
http://subscribe-article-digests.clinicians-exchange.org
.
READ ONLINE: http://read-the-rss-mega-archive.clinicians-exchange.org
It's primitive... but it works... mostly...
.
#psychology #counseling #socialwork #psychotherapy @psychotherapist @psychotherapists @psychology @socialpsych @socialwork @psychiatry #mentalhealth #psychiatry #healthcare #depression #psychotherapist #research #academia #university #scholarship #journal #journalarticle #professor -
Private, vetted email list for mental health professionals: https://www.clinicians-exchange.org
Open LEMMY instance for all mental health workers: https://lem.clinicians-exchange.org
.
Please BLOCK this robot if the LARGE VOLUME of psychology & health research-related posts irritates you.
.
DATE:
August 26, 2023 at 11:11AM
.
TITLE:
Association between cigarette sales in the USA and FDAs announcement of its intention to prohibit menthol as a characterising flavour in cigarettes
.
URL:
https://ifp.nyu.edu/2023/journal-article-abstracts/tc-2023-057941v1/<p><sec><st>Introduction</st></p>
<p>On 29 April 2021, the US Food and Drug Administration (FDA) announced its intention to prohibit menthol as a characterising flavour in cigarettes.</p>
<p></sec><sec><st>Methods</st></p>
<p>We assessed the changes in cigarette sales associated with the FDA’s announcement using interrupted time series analysis based on monthly retail point-of-sale data on cigarettes from the NielsenIQ Local Trade Area (LTA) data from September 2019 to April 2022. Main outcome variables included LTA-level monthly menthol and non-menthol cigarette sales per 1000-persons.</p>
<p></sec><sec><st>Results</st></p>
<p>Monthly cigarette sales were declining before the FDA’s announcement (menthol vs non-menthol: –1.68 (95% CI –1.92, –1.45) vs –3.14 (95% CI –3.33, –2.96) packs per 1000-persons). Monthly menthol cigarette sales increased immediately in May 2021 after the FDA’s announcement by 6.44 packs per 1000-persons (95% CI 3.83, 9.05). Analysis stratified by LTA-level racial/ethnic compositions showed that LTAs with a relatively higher proportion of non-Hispanic Black population (>8.94%) experienced higher spike in menthol cigarette sales in May 2021 immediately after the announcement and higher post-announcement 12-month menthol cigarette sales than expected.</p>
<p></sec><sec><st>Conclusions</st></p>
<p>Areas with a relatively higher proportion of non-Hispanic Black population are potentially at risk of experiencing increased burden of menthol cigarette consumption. Targeted community level cessation support in non-Hispanic Black majority areas may help mitigate the growing burden of menthol cigarette smoking and improve health equity. The findings of this study also suggest that FDA’s prompt finalisation and enforcement of such ban may help avoid extending the increased burden of menthol cigarette consumptions in non-Hispanic Black majority areas.</p>
<p></sec></p>
<p><a href="https://tobaccocontrol.bmj.com/content/early/2023/07/23/tc-2023-057941?rss=1" target="_blank" rel="noopener">Read the full article ›</a></p>
<p>The post <a rel="nofollow" href="https://ifp.nyu.edu/2023/journal-article-abstracts/tc-2023-057941v1/">Association between cigarette sales in the USA and FDAs announcement of its intention to prohibit menthol as a characterising flavour in cigarettes</a> was curated by <a rel="nofollow" href="https://ifp.nyu.edu">information for practice</a>.</p>.
.
See also our Psychology News Robot for other stories from multiple sources at https://mastodon.clinicians-exchange.org/@psychbot
.
EMAIL DAILY DIGEST OF RSS FEEDS -- SUBSCRIBE:
http://subscribe-article-digests.clinicians-exchange.org
.
READ ONLINE: http://read-the-rss-mega-archive.clinicians-exchange.org
It's primitive... but it works... mostly...
.
#psychology #counseling #socialwork #psychotherapy @psychotherapist @psychotherapists @psychology @socialpsych @socialwork @psychiatry #mentalhealth #psychiatry #healthcare #depression #psychotherapist #research #academia #university #scholarship #journal #journalarticle #professor -
Private, vetted email list for mental health professionals: https://www.clinicians-exchange.org
Open LEMMY instance for all mental health workers: https://lem.clinicians-exchange.org
.
Please BLOCK this robot if the LARGE VOLUME of psychology & health research-related posts irritates you.
.
DATE:
August 26, 2023 at 03:33AM
.
TITLE:
Benevolent and Hostile Sexism in Endorsement of Heterosexist Marriage Traditions Among Adolescents and Adults
.
URL:
https://ifp.nyu.edu/2023/journal-article-abstracts/s11199-023-01399-1/<h3 class="a-plus-plus">Abstract</h3>
<p class="a-plus-plus">Within most western countries, gendered proposal, surname, and wedding traditions remain widely endorsed. A previous study indicated that endorsement of proposal and surname traditions is associated with higher levels of benevolent sexism (BS) in university students in the USA. Three studies (N = 367) extended research to adolescents (dating age) and 30-year-olds (typical first-time marriage age). For the first time, these studies examined gendered wedding traditions (e.g., father walking a bride down the aisle). Different combinations of ambivalent sexism predicted participants’ opinions about surname change after marriage and the choice of children’s surnames. In younger adolescents (11–18 years; 56 boys, 88 girls, 68.1% White), hostile sexism (HS) predicted endorsement of surname change, whereas benevolent sexism predicted endorsement in 16- to 18-year-olds (58 boys, 84 girls, 76.8% White) and 30-year-olds (37 men, 44 women, 74.1% White). In adolescent samples, both BS and HS predicted endorsement of patronymic traditions for children, whereas only BS did in the adult sample. The findings suggest that different types of sexism predict traditional beliefs in specific age groups.
</p>
<p><a href="https://link.springer.com/article/10.1007/s11199-023-01399-1?error=cookies_not_supported&code=fb7f0097-4a63-48cd-aed4-8f1ea4cbd233" target="_blank" rel="noopener">Read the full article ›</a></p>
<p>The post <a rel="nofollow" href="https://ifp.nyu.edu/2023/journal-article-abstracts/s11199-023-01399-1/">Benevolent and Hostile Sexism in Endorsement of Heterosexist Marriage Traditions Among Adolescents and Adults</a> was curated by <a rel="nofollow" href="https://ifp.nyu.edu">information for practice</a>.</p>.
.
See also our Psychology News Robot for other stories from multiple sources at https://mastodon.clinicians-exchange.org/@psychbot
.
EMAIL DAILY DIGEST OF RSS FEEDS -- SUBSCRIBE:
http://subscribe-article-digests.clinicians-exchange.org
.
READ ONLINE: http://read-the-rss-mega-archive.clinicians-exchange.org
It's primitive... but it works... mostly...
.
#psychology #counseling #socialwork #psychotherapy @psychotherapist @psychotherapists @psychology @socialpsych @socialwork @psychiatry #mentalhealth #psychiatry #healthcare #depression #psychotherapist #research #academia #university #scholarship #journal #journalarticle #professor -
Private, vetted email list for mental health professionals: https://www.clinicians-exchange.org
Open LEMMY instance for all mental health workers: https://lem.clinicians-exchange.org
.
Please BLOCK this robot if the LARGE VOLUME of psychology & health research-related posts irritates you.
.
DATE:
August 26, 2023 at 03:03AM
.
TITLE:
Gender differences in physical morbidity in opioid agonist treatment patients: population-based cohort studies from the Czech Republic and Norway
.
URL:
https://ifp.nyu.edu/2023/open-access-journal-articles/s13011-023-00557-8-2/<p>Physical diseases represent a significant burden for opioid agonist treatment (OAT) patients. This study described physical morbidity in two national cohorts of OAT patients focusing on gender differences.</p>
<p><a href="https://substanceabusepolicy.biomedcentral.com/articles/10.1186/s13011-023-00557-8" target="_blank" rel="noopener">Read the full article ›</a></p>
<p>The post <a rel="nofollow" href="https://ifp.nyu.edu/2023/open-access-journal-articles/s13011-023-00557-8-2/">Gender differences in physical morbidity in opioid agonist treatment patients: population-based cohort studies from the Czech Republic and Norway</a> was curated by <a rel="nofollow" href="https://ifp.nyu.edu">information for practice</a>.</p>.
.
See also our Psychology News Robot for other stories from multiple sources at https://mastodon.clinicians-exchange.org/@psychbot
.
EMAIL DAILY DIGEST OF RSS FEEDS -- SUBSCRIBE:
http://subscribe-article-digests.clinicians-exchange.org
.
READ ONLINE: http://read-the-rss-mega-archive.clinicians-exchange.org
It's primitive... but it works... mostly...
.
#psychology #counseling #socialwork #psychotherapy @psychotherapist @psychotherapists @psychology @socialpsych @socialwork @psychiatry #mentalhealth #psychiatry #healthcare #depression #psychotherapist #research #academia #university #scholarship #journal #journalarticle #professor -
Private, vetted email list for mental health professionals: https://www.clinicians-exchange.org
Open LEMMY instance for all mental health workers: https://lem.clinicians-exchange.org
.
Please BLOCK this robot if the LARGE VOLUME of psychology & health research-related posts irritates you.
.
DATE:
August 26, 2023 at 03:02AM
.
TITLE:
The selective child welfare funnel. Children’s exposure to violence and CWS investigations in Sweden
.
URL:
https://ifp.nyu.edu/2023/journal-article-abstracts/s0145213423003447/<p>Publication date: October 2023</p>
<p><b>Source:</b> Child Abuse & Neglect, Volume 144</p>
<p>Author(s): Anders Kassman, Filip Wollter, Maria Eriksson</p>
<p><a href="https://www.sciencedirect.com/science/article/pii/S0145213423003447?dgcid=rss_sd_all" target="_blank" rel="noopener">Read the full article ›</a></p>
<p>The post <a rel="nofollow" href="https://ifp.nyu.edu/2023/journal-article-abstracts/s0145213423003447/">The selective child welfare funnel. Children’s exposure to violence and CWS investigations in Sweden</a> was curated by <a rel="nofollow" href="https://ifp.nyu.edu">information for practice</a>.</p>.
.
See also our Psychology News Robot for other stories from multiple sources at https://mastodon.clinicians-exchange.org/@psychbot
.
EMAIL DAILY DIGEST OF RSS FEEDS -- SUBSCRIBE:
http://subscribe-article-digests.clinicians-exchange.org
.
READ ONLINE: http://read-the-rss-mega-archive.clinicians-exchange.org
It's primitive... but it works... mostly...
.
#psychology #counseling #socialwork #psychotherapy @psychotherapist @psychotherapists @psychology @socialpsych @socialwork @psychiatry #mentalhealth #psychiatry #healthcare #depression #psychotherapist #research #academia #university #scholarship #journal #journalarticle #professor -
Private, vetted email list for mental health professionals: https://www.clinicians-exchange.org
Open LEMMY instance for all mental health workers: https://lem.clinicians-exchange.org
.
Please BLOCK this robot if the LARGE VOLUME of psychology & health research-related posts irritates you.
.
DATE:
August 26, 2023 at 02:34AM
.
TITLE:
The IBER study: a feasibility randomised controlled trial of imagery based emotion regulation for the treatment of anxiety in bipolar disorder
.
URL:
https://ifp.nyu.edu/2023/open-access-journal-articles/s40345-023-00305-8/<p>Intrusive mental imagery is associated with anxiety and mood instability within bipolar disorder and therefore represents a novel treatment target. Imagery Based Emotion Regulation (IBER) is a brief structured…</p>
<p><a href="https://journalbipolardisorders.springeropen.com/articles/10.1186/s40345-023-00305-8" target="_blank" rel="noopener">Read the full article ›</a></p>
<p>The post <a rel="nofollow" href="https://ifp.nyu.edu/2023/open-access-journal-articles/s40345-023-00305-8/">The IBER study: a feasibility randomised controlled trial of imagery based emotion regulation for the treatment of anxiety in bipolar disorder</a> was curated by <a rel="nofollow" href="https://ifp.nyu.edu">information for practice</a>.</p>.
.
See also our Psychology News Robot for other stories from multiple sources at https://mastodon.clinicians-exchange.org/@psychbot
.
EMAIL DAILY DIGEST OF RSS FEEDS -- SUBSCRIBE:
http://subscribe-article-digests.clinicians-exchange.org
.
READ ONLINE: http://read-the-rss-mega-archive.clinicians-exchange.org
It's primitive... but it works... mostly...
.
#psychology #counseling #socialwork #psychotherapy @psychotherapist @psychotherapists @psychology @socialpsych @socialwork @psychiatry #mentalhealth #psychiatry #healthcare #depression #psychotherapist #research #academia #university #scholarship #journal #journalarticle #professor -
Private, vetted email list for mental health professionals: https://www.clinicians-exchange.org
Open LEMMY instance for all mental health workers: https://lem.clinicians-exchange.org
.
Please BLOCK this robot if the LARGE VOLUME of psychology & health research-related posts irritates you.
.
DATE:
August 26, 2023 at 02:02AM
.
TITLE:
Mental health-related limitations and political leadership in Germany: A multidisciplinary analysis of legal, psychiatric, and ethical frameworks
.
URL:
https://ifp.nyu.edu/2023/journal-article-abstracts/s0160252723000511/<p>Publication date: July–August 2023</p>
<p><b>Source:</b> International Journal of Law and Psychiatry, Volume 89</p>
<p>Author(s): Alexander Smith, Stefan Theil, Stephen D. Hart, Michael Liebrenz</p>
<p><a href="https://www.sciencedirect.com/science/article/pii/S0160252723000511?dgcid=rss_sd_all" target="_blank" rel="noopener">Read the full article ›</a></p>
<p>The post <a rel="nofollow" href="https://ifp.nyu.edu/2023/journal-article-abstracts/s0160252723000511/">Mental health-related limitations and political leadership in Germany: A multidisciplinary analysis of legal, psychiatric, and ethical frameworks</a> was curated by <a rel="nofollow" href="https://ifp.nyu.edu">information for practice</a>.</p>.
.
See also our Psychology News Robot for other stories from multiple sources at https://mastodon.clinicians-exchange.org/@psychbot
.
EMAIL DAILY DIGEST OF RSS FEEDS -- SUBSCRIBE:
http://subscribe-article-digests.clinicians-exchange.org
.
READ ONLINE: http://read-the-rss-mega-archive.clinicians-exchange.org
It's primitive... but it works... mostly...
.
#psychology #counseling #socialwork #psychotherapy @psychotherapist @psychotherapists @psychology @socialpsych @socialwork @psychiatry #mentalhealth #psychiatry #healthcare #depression #psychotherapist #research #academia #university #scholarship #journal #journalarticle #professor -
Private, vetted email list for mental health professionals: https://www.clinicians-exchange.org
Open LEMMY instance for all mental health workers: https://lem.clinicians-exchange.org
.
Please BLOCK this robot if the LARGE VOLUME of psychology & health research-related posts irritates you.
.
DATE:
August 25, 2023 at 11:59PM
.
TITLE:
HSE Annual Report and Financial Statements 2022
.
URL:
https://ifp.nyu.edu/2023/grey-literature/hse-annual-report-and-financial-statements-2022-pdf-2/<p><a href="https://www.hse.ie/eng/services/publications/corporate/hse-annual-report-and-financial-statements-2022.pdf" target="_blank" rel="noopener">Read the full article ›</a></p>
<p>The post <a rel="nofollow" href="https://ifp.nyu.edu/2023/grey-literature/hse-annual-report-and-financial-statements-2022-pdf-2/">HSE Annual Report and Financial Statements 2022</a> was curated by <a rel="nofollow" href="https://ifp.nyu.edu">information for practice</a>.</p>.
.
See also our Psychology News Robot for other stories from multiple sources at https://mastodon.clinicians-exchange.org/@psychbot
.
EMAIL DAILY DIGEST OF RSS FEEDS -- SUBSCRIBE:
http://subscribe-article-digests.clinicians-exchange.org
.
READ ONLINE: http://read-the-rss-mega-archive.clinicians-exchange.org
It's primitive... but it works... mostly...
.
#psychology #counseling #socialwork #psychotherapy @psychotherapist @psychotherapists @psychology @socialpsych @socialwork @psychiatry #mentalhealth #psychiatry #healthcare #depression #psychotherapist #research #academia #university #scholarship #journal #journalarticle #professor -
Private, vetted email list for mental health professionals: https://www.clinicians-exchange.org
Open LEMMY instance for all mental health workers: https://lem.clinicians-exchange.org
.
Please BLOCK this robot if the LARGE VOLUME of psychology & health research-related posts irritates you.
.
DATE:
August 26, 2023 at 01:21AM
.
TITLE:
Mothers’ perceptions and experiences of caring for sick newborns in Newborn Care Units in public hospitals in Eastern Uganda: a qualitative study
.
URL:
https://ifp.nyu.edu/2023/journal-article-abstracts/s12978-023-01649-1/<h3 class="a-plus-plus">Abstract</h3>
<p> <span class="a-plus-plus abstract-section id-a-sec1"></p>
<h3 class="a-plus-plus">Introduction</h3>
<p class="a-plus-plus">Mothers’ participation in the care of their sick newborns in Newborn Care Units (NCUs) has been linked to several advantages including earlier discharge, fewer complications, better mother–baby bonding, and an easier transition to home after discharge. This study aimed to understand mothers’ perceptions and experiences while participating in the care of their sick newborns in the NCUs to inform interventions promoting mothers’ participation in public health facilities in Uganda.</p>
<p> </span><br />
<span class="a-plus-plus abstract-section id-a-sec2"></p>
<h3 class="a-plus-plus">Methods</h3>
<p class="a-plus-plus">We conducted an exploratory qualitative study comprised of 18 in-depth interviews with mothers caring for their newborns in two NCUs at a Regional Referral and General hospital in Eastern Uganda between April and May 2022. The interviews were audio-recorded and then transcribed. For analysis, we used a thematic analysis approach.</p>
<p> </span><br />
<span class="a-plus-plus abstract-section id-a-sec3"></p>
<h3 class="a-plus-plus">Results</h3>
<p class="a-plus-plus">The fear of losing their baby was an overarching theme that underlay mothers’ perceptions, actions, and experiences in the NCU. Mothers’ confidence in the care provided to their babies was based on their baby’s outcomes. For example, when mothers saw almost immediate improvement after treatment, they felt more confident in the care than when this was not the case. Furthermore, mothers considered it essential that health care providers responded quickly in an emergency. Moreover, they expressed concerns about a lack of control over their personal space in the crowded NCU. Additionally, caring for babies in these settings is physically and financially taxing, with mothers requiring the combined efforts of family members to help them cope.</p>
<p> </span><br />
<span class="a-plus-plus abstract-section id-a-sec4"></p>
<h3 class="a-plus-plus">Conclusion</h3>
<p class="a-plus-plus">This study shows that for mothers of sick newborns in the NCU, the baby’s survival is the first concern and the basis of mothers’ confidence in the quality of care provided. Efforts to improve parental participation in NCUs must focus on lowering the costs incurred by families in caring for a baby in the NCU, addressing privacy and space concerns, leveraging the family’s role, and avoiding compromising the quality of care in the process of participation.</p>
<p> </span></p>
<p><a href="https://link.springer.com/article/10.1186/s12978-023-01649-1?error=cookies_not_supported&code=f2f5ef3b-9530-47e2-a87e-18639672dc10" target="_blank" rel="noopener">Read the full article ›</a></p>
<p>The post <a rel="nofollow" href="https://ifp.nyu.edu/2023/journal-article-abstracts/s12978-023-01649-1/">Mothers’ perceptions and experiences of caring for sick newborns in Newborn Care Units in public hospitals in Eastern Uganda: a qualitative study</a> was curated by <a rel="nofollow" href="https://ifp.nyu.edu">information for practice</a>.</p>.
.
See also our Psychology News Robot for other stories from multiple sources at https://mastodon.clinicians-exchange.org/@psychbot
.
EMAIL DAILY DIGEST OF RSS FEEDS -- SUBSCRIBE:
http://subscribe-article-digests.clinicians-exchange.org
.
READ ONLINE: http://read-the-rss-mega-archive.clinicians-exchange.org
It's primitive... but it works... mostly...
.
#psychology #counseling #socialwork #psychotherapy @psychotherapist @psychotherapists @psychology @socialpsych @socialwork @psychiatry #mentalhealth #psychiatry #healthcare #depression #psychotherapist #research #academia #university #scholarship #journal #journalarticle #professor -
Private, vetted email list for mental health professionals: https://www.clinicians-exchange.org
Open LEMMY instance for all mental health workers: https://lem.clinicians-exchange.org
.
Please BLOCK this robot if the LARGE VOLUME of psychology & health research-related posts irritates you.
.
DATE:
August 25, 2023 at 11:46PM
.
TITLE:
Accelerating Behavioral and Social Science through Ontology Development and Use: Research Network Projects (U01 Clinical Trial Not Allowed) (Letter of intent due date: Sept 3)
.
URL:
https://ifp.nyu.edu/2023/funding/accelerating-behavioral-and-social-science-through-ontology-development-and-use-research-network-projects-u01-clinical-trial-not-allowed-letter-of-intent-due-date-sept-3-2/<p>The post <a rel="nofollow" href="https://ifp.nyu.edu/2023/funding/accelerating-behavioral-and-social-science-through-ontology-development-and-use-research-network-projects-u01-clinical-trial-not-allowed-letter-of-intent-due-date-sept-3-2/">Accelerating Behavioral and Social Science through Ontology Development and Use: Research Network Projects (U01 Clinical Trial Not Allowed) (Letter of intent due date: Sept 3)</a> was curated by <a rel="nofollow" href="https://ifp.nyu.edu">information for practice</a>.</p>
.
.
See also our Psychology News Robot for other stories from multiple sources at https://mastodon.clinicians-exchange.org/@psychbot
.
EMAIL DAILY DIGEST OF RSS FEEDS -- SUBSCRIBE:
http://subscribe-article-digests.clinicians-exchange.org
.
READ ONLINE: http://read-the-rss-mega-archive.clinicians-exchange.org
It's primitive... but it works... mostly...
.
#psychology #counseling #socialwork #psychotherapy @psychotherapist @psychotherapists @psychology @socialpsych @socialwork @psychiatry #mentalhealth #psychiatry #healthcare #depression #psychotherapist #research #academia #university #scholarship #journal #journalarticle #professor -
Private, vetted email list for mental health professionals: https://www.clinicians-exchange.org
Open LEMMY instance for all mental health workers: https://lem.clinicians-exchange.org
.
Please BLOCK this robot if the LARGE VOLUME of psychology & health research-related posts irritates you.
.
DATE:
August 26, 2023 at 10:38AM
.
TITLE:
University of Maryland Baltimore receives $5.5 million to send social workers to local schools
.
URL:
https://ifp.nyu.edu/2023/funding/university-of-maryland-baltimore-receives-5-5-million-to-send-social-workers-to-local-schools/<p>The post <a rel="nofollow" href="https://ifp.nyu.edu/2023/funding/university-of-maryland-baltimore-receives-5-5-million-to-send-social-workers-to-local-schools/">University of Maryland Baltimore receives $5.5 million to send social workers to local schools</a> was curated by <a rel="nofollow" href="https://ifp.nyu.edu">information for practice</a>.</p>
.
.
See also our Psychology News Robot for other stories from multiple sources at https://mastodon.clinicians-exchange.org/@psychbot
.
EMAIL DAILY DIGEST OF RSS FEEDS -- SUBSCRIBE:
http://subscribe-article-digests.clinicians-exchange.org
.
READ ONLINE: http://read-the-rss-mega-archive.clinicians-exchange.org
It's primitive... but it works... mostly...
.
#psychology #counseling #socialwork #psychotherapy @psychotherapist @psychotherapists @psychology @socialpsych @socialwork @psychiatry #mentalhealth #psychiatry #healthcare #depression #psychotherapist #research #academia #university #scholarship #journal #journalarticle #professor