my Yoga and psychology [electronic resource] : language, memory, and mysticism / Harold Coward By prospero.murdoch.edu.au Published On :: Coward, Harold G Full Article
my The young reader's Catlin [electronic resource] : My life among the Indians / George Catlin; Edited by M.G. Humphreys By prospero.murdoch.edu.au Published On :: Catlin, George, 1796-1872 Full Article
my [ASAP] Biohybrid Triboelectric Nanogenerator for Label-Free Pharmacological Fingerprinting in Cardiomyocytes By feedproxy.google.com Published On :: Thu, 30 Apr 2020 04:00:00 GMT Nano LettersDOI: 10.1021/acs.nanolett.0c01584 Full Article
my Marine plankton : a practical guide to ecology, methodology and taxonomy / edited by Claudia Castellani (Sir Alister Hardy Foundation for Ocean Science, Plymouth, UK) and Martin Edwards (Sir Alister Hardy Foundation for Ocean Science, Plymouth, UK and Uni By prospero.murdoch.edu.au Published On :: Full Article
my Microplastics in fisheries and aquaculture : status of knowledge on their occurrence and implications for aquatic organisms and food safety / Amy Lusher, Peter Hollman, and Jeremy Mendoza-Hill By prospero.murdoch.edu.au Published On :: Lusher, Amy, author Full Article
my Oil and Gas Engineering: (OGE-2019): conference date, 26-28 February 2019: location, Omsk, Russia / editors, Alexander V. Myshlyavtsev, Vladimir A. Likholobov and Vladimir L. Yusha By library.mit.edu Published On :: Sun, 6 Oct 2019 06:22:10 EDT Online Resource Full Article
my What went wrong?: case histories of process plant disasters and how they could have been avoided / Trevor Kletz, Paul Amyotte By library.mit.edu Published On :: Sun, 2 Feb 2020 06:24:06 EST Online Resource Full Article
my Handbook of farm, dairy, and food machinery engineering / edited by Myer Kutz By library.mit.edu Published On :: Sun, 2 Feb 2020 06:24:06 EST Online Resource Full Article
my The Mysteries, resurrection, and 1 Corinthians 15 : comparative methodology and contextual exegesis / Terri Moore By prospero.murdoch.edu.au Published On :: Moore, Terri (New Testament teacher), author Full Article
my How the Gospels became history : Jesus and Mediterranean myths / M. David Litwa By prospero.murdoch.edu.au Published On :: Litwa, M. David, author Full Article
my Miracles and the kingdom of God : Christology and social identity in Mark and Q / Myrick C. Shinall Jr By prospero.murdoch.edu.au Published On :: Shinall, Myrick C., author Full Article
my Costly communion : ecumenical initiative and sacramental strife in the Anglican Communion / edited by Mark D. Chapman, Jeremy Bonner By prospero.murdoch.edu.au Published On :: Full Article
my Myths and mistakes in New Testament textual criticism / edited by Elijah Hixson and Peter J. Gurry ; foreword by Daniel B. Wallace By prospero.murdoch.edu.au Published On :: Full Article
my The power of myth / Joseph Campbell with Bill Moyers ; Betty Sue Flowers, editor By prospero.murdoch.edu.au Published On :: Campbell, Joseph, 1904- author Full Article
my Come and read : interpretive approaches to the Gospel of John / edited by Alicia D. Myers and Lindsey S. Jodrey By prospero.murdoch.edu.au Published On :: Full Article
my Development of novel N-(6-methanesulfonyl-benzothiazol-2-yl)-3-(4-substituted-piperazin-1-yl)-propionamides with cholinesterase inhibition, anti-β-amyloid aggregation, neuroprotection and cognition enhancing properties for the therapy of Alzheimer's d By feeds.rsc.org Published On :: RSC Adv., 2020, 10,17602-17619DOI: 10.1039/D0RA00663G, Paper Open Access   This article is licensed under a Creative Commons Attribution-NonCommercial 3.0 Unported Licence.Chandra Bhushan Mishra, Shruti Shalini, Siddharth Gusain, Amresh Prakash, Jyoti Kumari, Shikha Kumari, Anita Kumari Yadav, Andrew M. Lynn, Manisha TiwariA novel series of benzothiazole–piperazine hybrids were rationally designed, synthesized, and evaluated as multifunctional ligands against Alzheimer's disease (AD).The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
my Anatomy of an HTML5 WordPress theme By nicolasgallagher.com Published On :: Fri, 14 Aug 2009 17:00:00 -0700 This site has been written in HTML5 and used to use WordPress to manage the content. I’ll explain why I used HTML5, describe the structure of the theme templates, and show some of the ways I tried to tame WordPress’s tendency to add mess to the source code. As this is my personal site I wanted to experiment with using HTML5, CSS3, and WAI-ARIA. All these documents are currently working drafts and subject to change. However, the web documents and applications of the future are going to be written in HTML5 and I wanted to see the benefits of using it to markup static documents. Using CSS 2.1, let alone the CSS3 selectors and properties that some browser vendors have implemented, has many advantages for controlling the presentation of semantically coded documents. For this reason I am not going to avoid using basic CSS 2.1 selectors just to faithfully reproducing this site’s design in IE6. However, I have tried to accommodate IE 7 and IE 8 users by using an HTML5 enabling script so that the new HTML5 elements can be styled in those browsers if users have Javascript enabled. HTML5 templates I started with a static prototype of this site developed on my local server. WordPress makes it very easy to create your own templates and, therefore, it is no problem to use HTML5. This theme only has 3 main templates: index, single, and archive. There are of course templates for 404s, attachments, comments, etc., but I won’t discuss them as they are all based on the 3 main templates. All the templates include ARIA roles as an accessibility aide. The single.php template has this rough structure: <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title></title> <link rel="stylesheet" href="default.css"> </head> <body> <header role="banner"></header> <nav role="navigation"></nav> <article role="main"> <header> <time datetime="YYYY-MM-DD"></time> <h1></h1> </header> <footer></footer> </article> <nav></nav> <aside role="complementary"></aside> <footer role="contentinfo"> <small></small> </footer> </body> </html> The first line of the document is the HTML5 DOCTYPE. The new <article> element contains the content of each post. The same structure is used for the index.php template except that there are several articles displayed on each page and the ARIA role value of main is not used. In contrast, the archive.php template houses all the article excerpts in a <section> element with the ARIA role of main because the list of archived posts is itself the main content of the document. A clean theme WordPress tends to add classes, elements, and other bits of code in certain places. I haven’t used any of the WordPress functions that add class names to the body and to elements wrapping a post and also wanted to avoid cluttering the source code with any other unnecessary markup. This required a bit of fiddling around with the theme’s functions.php file. I’m not a PHP developer so this might not be pretty! Removing actions from wp_head() WordPress has a hook called wp_head that sits in the header.php of most themes. To avoid it inserting unwanted code into the <head> of the document I used the remove_action function to disable the functions that were responsible. The following code was added to the functions.php file of my theme: // Remove links to the extra feeds (e.g. category feeds) remove_action( 'wp_head', 'feed_links_extra', 3 ); // Remove links to the general feeds (e.g. posts and comments) remove_action( 'wp_head', 'feed_links', 2 ); // Remove link to the RSD service endpoint, EditURI link remove_action( 'wp_head', 'rsd_link' ); // Remove link to the Windows Live Writer manifest file remove_action( 'wp_head', 'wlwmanifest_link' ); // Remove index link remove_action( 'wp_head', 'index_rel_link' ); // Remove prev link remove_action( 'wp_head', 'parent_post_rel_link', 10, 0 ); // Remove start link remove_action( 'wp_head', 'start_post_rel_link', 10, 0 ); // Display relational links for adjacent posts remove_action( 'wp_head', 'adjacent_posts_rel_link', 10, 0 ); // Remove XHTML generator showing WP version remove_action( 'wp_head', 'wp_generator' ); Source: WPEngineer.com: Cleanup WordPress Header Removing an empty <span> If you want to create excerpts you can either write them into the excerpt box or use the <--more--> quicktag in the WordPress editor. I just wanted the first paragraph of my posts to be used as the excerpt and so using the in-editor tag was the most practical approach I was aware of. However, when you do this WordPress will insert an empty <span> in the post’s content. This element has an id so that the area following the excerpt can be targeted by “more” or “continue reading” links. I removed both the empty <span> and the jump link by adding the following code to the functions.php file of the theme: // removes empty span function remove_empty_read_more_span($content) { return eregi_replace("(<p><span id="more-[0-9]{1,}"></span></p>)", "", $content); } add_filter('the_content', 'remove_empty_read_more_span'); Source: Ganda Manurung: Remove Empty Span Tag On WordPress // removes url hash to avoid the jump link function remove_more_jump_link($link) { $offset = strpos($link, '#more-'); if ($offset) { $end = strpos($link, '"',$offset); } if ($end) { $link = substr_replace($link, '', $offset, $end-$offset); } return $link; } add_filter('the_content_more_link', 'remove_more_jump_link'); Source: WordPress Codex: Customizing the Read More Displaying images in the excerpt For posts that display nothing but a photograph (yes, they will be shit but I’m hoping it gets me using my camera a bit more often) I wanted the image to show up in the archives. Equally, if the first paragraph of a post contained a link I wanted that to be preserved. The default the_excerpt() template tag doesn’t allow for this so it needed some modifying. I added a new function, which is just a modified version of the core excerpt function, to the functions.php file and then made sure that the template tag executed this function rather than the one contained in the core WordPress files. function improved_trim_excerpt($text) { if ( '' == $text ) { $text = get_the_content(''); $text = strip_shortcodes( $text ); $text = apply_filters('the_content', $text); $text = str_replace(']]>', ']]&gt;', $text); $text = strip_tags($text, '<p><img><a>'); $excerpt_length = apply_filters('excerpt_length', 55); $words = explode(' ', $text, $excerpt_length + 1); if (count($words) > $excerpt_length) { array_pop($words); array_push($words, '[...]'); $text = implode(' ', $words); $text = force_balance_tags($text); } } return $text; } remove_filter('get_the_excerpt', 'wp_trim_excerpt'); add_filter('get_the_excerpt', 'improved_trim_excerpt'); Source: Aaron Russell: Improving WordPress’ the_excerpt() template tag Conditional next/prev links I prefer not to have empty elements in the markup and so I needed a way to conditionally insert the “Older entries”, “Newer Entries”, etc., links into templates. The solution I’m using here, which isn’t perfect, is to add this to functions.php: function show_posts_nav() { global $wp_query; return ($wp_query->max_num_pages > 1); } Source: Eric Martin: Conditional navigation links in WordPress And then to wrap the navigation markup in the templates with the following: <?php if (show_posts_nav()) : ?> <nav> <ul> <li><?php next_posts_link('« Older Entries') ?></li> <li><?php previous_posts_link('Newer Entries »') ?></li> </ul> </nav> <?php endif; ?> Summary It’s fairly easy to create a simple site with HTML5 and to use WordPress to deliver it. At the moment there are issues with Internet Explorer because you cannot style HTML5 elements unless you use Javascript. However, HTML5 redefines the meaning of certain elements (such as <dl>, which has become a more versatile “description list”) and allows block elements to be wrapped in a link. Therefore, there is still benefit in using the HTML5 DOCTYPE even if you do not make use of the new elements. Further reading HTML5 working draft HTML5 differences from HTML4 Accessible Rich Internet Applications (WAI-ARIA) 1.0 Full Article
my Army will not be called into Mumbai, assures Uddhav Thackeray By www.thehindu.com Published On :: Sat, 09 May 2020 02:28:43 +0530 In his address, CM says lockdown cannot go on forever Full Article Other States
my Tous DRH [electronic resource] : les meilleures pratiques par 51 professionnels / Jean-Rémy Acar, David Alis, Michèle Amiel, Nathalie Atlan-Landaburu, David Autissier, Charles-Henri Bessyre Des Horts, Laurent Bibard, Frank Bournois, Jacques Bouv By prospero.murdoch.edu.au Published On :: Acar, Jean-Rémy, author Full Article
my Visitor management [electronic resource] : case studies from World Heritage sites / edited by Myra Shackley By prospero.murdoch.edu.au Published On :: Full Article
my Ein Weg zu Industrie 4.0 [electronic resource] : Geschäftsmodell für Produktion und After Sales / Myriam Jahn By prospero.murdoch.edu.au Published On :: Jahn, Myriam, author Full Article
my JAMA Oncology : Maintenance Treatment and Survival in Patients With Myeloma By traffic.libsyn.com Published On :: Thu, 09 Aug 2018 15:00:00 +0000 Interview with Francesca Gay, author of Maintenance Treatment and Survival in Patients With Myeloma: A Systematic Review and Network Meta-analysis Full Article
my JAMA Otolaryngology–Head & Neck Surgery : Association of Feeding Evaluation With Frenotomy Rates in Infants With Breastfeeding Difficulties By traffic.libsyn.com Published On :: Thu, 11 Jul 2019 15:00:00 +0000 Interview with Christopher J. Hartnick, MD, Ms Epi, author of Association of Feeding Evaluation With Frenotomy Rates in Infants With Breastfeeding Difficulties Full Article
my JAMA Neurology : Clinical Effects of Zilucoplan in Patients With Generalized Myasthenia Gravis By traffic.libsyn.com Published On :: Mon, 17 Feb 2020 16:00:00 +0000 Interview with James F. Howard, MD, author of Clinical Effects of Self-administered Subcutaneous Zilucoplan in Patients with Moderate to Severe Generalized Myasthenia Gravis: Results of a Phase 2 Randomized, Double-Blind, Placebo-Controlled, Multicenter Clinical Trial Full Article
my JAMA Surgery : Quality of Life and Patient Satisfaction After Antibiotic Therapy vs Appendectomy By traffic.libsyn.com Published On :: Wed, 19 Feb 2020 16:00:00 +0000 Interview with Paulina Salminen, MD, PhD, and Suvi Sippola, MD, authors of Quality of Life and Patient Satisfaction at 7-Year Follow-up of Antibiotic Therapy vs Appendectomy for Uncomplicated Acute Appendicitis: A Secondary Analysis of a Randomized Clinical Trial Full Article
my JAMA Cardiology : Association of Coronavirus Disease 2019 (COVID-19) With Myocardial Injury and Mortality By edhub.ama-assn.org Published On :: Fri, 27 Mar 2020 15:00:00 +0000 Interview with Robert O. Bonow, MD, Patrick T. O'Gara, MD, Clyde W. Yancy, MD, and Gregg C. Fonarow, MD, authors of Association of Coronavirus Disease 2019 (COVID-19) With Myocardial Injury and Mortality and Ajay J. Kirtane, MD Full Article
my JAMA Neurology : Association of Factors With Elevated Amyloid Burden in Clinically Normal Older Individuals in the A4 Study Screening Cohort By edhub.ama-assn.org Published On :: Mon, 06 Apr 2020 15:00:00 +0000 Interview with Reisa A. Sperling, MD, author of Association of Factors With Elevated Amyloid Burden in Clinically Normal Older Individuals Full Article
my Army plane crashes in southwest Pakistan By indianexpress.com Published On :: Sat, 20 Sep 2014 09:32:05 +0000 Full Article DO NOT USE Indians Abroad World
my US Sikh wins right to wear turban in Army programme By indianexpress.com Published On :: Tue, 16 Jun 2015 07:02:08 +0000 Full Article DO NOT USE Indians Abroad World
my Emperors of the deep : sharks - the ocean's most mysterious, most misunderstood, and most important guardians / William McKeever By prospero.murdoch.edu.au Published On :: McKeever, William, author Full Article
my Bacteria : a very short introduction / Sebastian G.B. Amyes By prospero.murdoch.edu.au Published On :: Amyes, Sebastian G. B., author Full Article
my 1,2-Insertion Reactions of Alkynes into Ge–C Bonds of Arylbromogermylene By feeds.rsc.org Published On :: Dalton Trans., 2020, Accepted ManuscriptDOI: 10.1039/D0DT01223H, PaperTomohiro Sugahara, Arturo Espinosa Ferao, Alicia Rey, Jing-Dong Guo, Shin Aoyama, Kazunobu Igawa, Katsuhiko Tomooka, Takahiro Sasamori, Daisuke Hashizume, Shigeru Nagase, Norihiro Tokitoh1,2-insertion reactions of alkynes into the Ge–C bonds in dibromodigermenes afford stable crystalline bromovinylgermylenes. In contrast to previously reported Lewis-base-supported vinylgermylenes, the bromovinylgermylene obtained from reaction of the bromogermylene with...The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
my Antitrust Law in the New Economy: Google, Yelp, LIBOR, and the Control of Information / Mark R. Patterson By library.mit.edu Published On :: Sun, 18 Aug 2019 10:23:08 EDT Online Resource Full Article
my Arbitration costs: myths and realities in investment treaty arbitration / Susan D. Franck By library.mit.edu Published On :: Sun, 19 Jan 2020 08:04:55 EST Dewey Library - K3830.F73 2019 Full Article
my Transitional justice in comparative perspective: preconditions for success / Samar El-Masri, Tammy Lambert, Joanna R. Quinn, editors By library.mit.edu Published On :: Sun, 16 Feb 2020 07:52:37 EST Online Resource Full Article
my The Cambridge handbook of the law of the sharing economy / edited by Nestor M. Davidson, Fordham Law School ; Michèle Finck, University of Oxford ; John J. Infranca, Suffolk University Law School By library.mit.edu Published On :: Sun, 23 Feb 2020 09:36:00 EST Dewey Library - K1318.C36 2018 Full Article
my International humanitarian law: rules, controversies, and solutions to problems arising in warfare / Marco Sassòli, Director, Geneva Academy of International Human Rights and Professor, University of Geneva, Switzerland ; with the assistance of Patri By library.mit.edu Published On :: Sun, 23 Feb 2020 09:36:00 EST Dewey Library - KZ6471.S27 2019 Full Article
my Advancing equality: how constitutional rights can make a difference worldwide / Jody Heymann, Aleta Sprague, Amy Raub ; foreword by Dikgang Moseneke By library.mit.edu Published On :: Sun, 8 Mar 2020 08:11:31 EDT Dewey Library - K3250.H49 2020 Full Article
my A Matter of Interpretation: Federal Courts and the Law - New Edition / Antonin Scalia; Amy Gutmann By library.mit.edu Published On :: Sun, 22 Mar 2020 07:44:49 EDT Online Resource Full Article
my Poetry 180: Poem 131 - "I Ask My Mother to Sing" By www.loc.gov Published On :: Wed, 08 Apr 2020 07:00:25 -0500 A poem by Li-Young Lee from the Library's Poetry 180 Project. Full Article
my Poetry 180: Poem 151 - "My Moral Life" By content.govdelivery.com Published On :: Wed, 06 May 2020 07:00:26 -0500 A poem by Mark Halliday from the Library's Poetry 180 Project. Full Article
my Poetry 180: Poem 152 - "It Took All My Energy" By www.loc.gov Published On :: Thu, 07 May 2020 07:00:17 -0500 A poem by Tony Wallace from the Library's Poetry 180 Project. Full Article
my Rethinking transnational Chinese cinemas : the Amoy-dialect film industry in Cold War Asia / Jeremy E. Taylor By prospero.murdoch.edu.au Published On :: Taylor, Jeremy E., 1973- Full Article
my Khaki capital : the political economy of the military in Southeast Asia / edited by Paul Chambers and Napisa Waitoolkiat By prospero.murdoch.edu.au Published On :: Full Article
my Mystic synthesis in Java : a history of Islamization from the fourteenth to the early nineteenth centuries / M.C. Ricklefs By prospero.murdoch.edu.au Published On :: Ricklefs, M. C. (Merle Calvin), 1943- author Full Article
my New media political engagement and participation in Malaysia / Sara Chinnasamy By prospero.murdoch.edu.au Published On :: Chinnasamy, Sara, author Full Article
my Company law in China : regulation of business organizations in a socialist market economy / JiangYu Wang, Associate Professor, Faculty of Law, National University of Singapore By prospero.murdoch.edu.au Published On :: Wang, Jiangyu, author Full Article
my China and the global economy / edited by Shahid Yusuf By prospero.murdoch.edu.au Published On :: Full Article
my Tanʼitsu minzoku shinwa no kigen : "Nihonjin" no jigazō no keifu = The myth of the homogeneous nation / Oguma Eiji By prospero.murdoch.edu.au Published On :: Oguma, Eiji, 1962- Full Article
my The power of inclusive exclusion : anatomy of Israeli rule in the occupied Palestinian territories / edited by Adi Ophir, Michal Givoni, and Sari Hanafi By prospero.murdoch.edu.au Published On :: Full Article