ndi

An Aspidosperma-type alkaloid dimer from Tabernaemontana bovina as a candidate for the inhibition of microglial activation

Org. Chem. Front., 2020, Advance Article
DOI: 10.1039/D0QO00296H, Research Article
Yang Yu, Si-Meng Zhao, Mei-Fen Bao, Xiang-Hai Cai
As a representative of twelve undescribed Aspidosperma-type alkaloid dimers, tabernaemontine F (6) inhibited microglial activation by blocking P38 MAPK activation, revealing a potential candidate for chronic neurodegenerative diseases.
To cite this article before page numbers are assigned, use the DOI form of citation above.
The content of this RSS Feed (c) The Royal Society of Chemistry




ndi

Handbook of semiconductor nanostructures and nanodevices / edited by Alexander A. Balandin, Kang L. Wang




ndi

Understanding the nanotechnology revolution / Edward L. Wolf and Manasa Medikonda

Wolf, E. L




ndi

Biogenic production of gold and silver nanoparticles using extracts from indigenous Australian plants : their synthesis, optimisation, characterisation and antibacterial activities / Monali Shah

Shah, Monali, author




ndi

[ASAP] Electron Beam Irradiation as a General Approach for the Rapid Synthesis of Covalent Organic Frameworks under Ambient Conditions

Journal of the American Chemical Society
DOI: 10.1021/jacs.0c03941




ndi

[ASAP] Rapid Route-Finding for Bifurcating Organic Reactions

Journal of the American Chemical Society
DOI: 10.1021/jacs.9b13449




ndi

Understanding extrusion / Chris Rauwendaal

Barker Library - TP1175.E9 R382 2019




ndi

Environmentally friendly zeolites: synthesis and source materials / Rafael Chaves Lima, Lindiane Bieseki, Paloma Vinaches Melguizo, Sibele Berenice Castellã Pergher

Online Resource




ndi

Sustainable Agrochemistry: A Compendium of Technologies / editor, S̕lvio Vaz Jr

Online Resource




ndi

ASHRAE Pocket Guide for Air Conditioning, Heating, Ventilation, Refrigeration, 9th Edition / by Ashrae

Online Resource




ndi

Carbohydrate chemistry for food scientists / James N. BeMiller (Whistler Center for Carbohydrate Research, Department of Food Science, Purdue University, West Lafayette, Indiana)

Hayden Library - TP248.C27 W47 2019




ndi

Understanding Process Equipment for Operators and Engineers / Norman Lieberman

Online Resource




ndi

Life cycle assessment in the chemical product chain: challenges, methodological approaches and applications / Simone Maranghi, Carlo Brondi, editors

Online Resource




ndi

Ethnic fermented foods and beverages of India: science history and culture / Jyoti Prakash Tamang, editor

Online Resource




ndi

Reading the Bible with Rabbi Jesus : how a Jewish perspective can transform your understanding / Lois Tverberg

Tverberg, Lois, author




ndi

Romans disarmed : resisting empire, demanding justice / Sylvia C. Keesmaat and Brian J. Walsh

Keesmaat, Sylvia C., author




ndi

Bible nation : the United States of Hobby Lobby / Candida R. Moss and Joel S. Baden

Moss, Candida R., author




ndi

Understanding the social world of the New Testament / edited by Dietmar Neufeld and Richard E. DeMaris




ndi

Hydrogen bonding sewing interface

RSC Adv., 2020, 10,17438-17443
DOI: 10.1039/D0RA00366B, Paper
Open Access
Zhenxing Cao, Zhigong Song, Fengzhi Liang, Xiaoguang An, Karrar K. Al-Quraishi, Min Wang, Jianchao Chen, Dong Ding, Yingchao Yang
Hydrogen bonding and van der Waals (vdW) forces have been precisely measured and distinguished by an in-house nanomechanical testing system.
The content of this RSS Feed (c) The Royal Society of Chemistry




ndi

The synergistic influence of polyethyleneimine-grafted graphene oxide and iodide for the protection of steel in acidizing conditions

RSC Adv., 2020, 10,17739-17751
DOI: 10.1039/D0RA00864H, Paper
Open Access
  This article is licensed under a Creative Commons Attribution 3.0 Unported Licence.
K. R. Ansari, Dheeraj Singh Chauhan, M. A. Quraishi, A. Y. Adesina, Tawfik A. Saleh
Herein, graphene oxide (GO) was chemically functionalized with polyethyleneimine (PEI) in a single step to obtain PEI-GO, which was characterized via FTIR spectroscopy, SEM, and TEM.
The content of this RSS Feed (c) The Royal Society of Chemistry




ndi

Better conditional classnames for hack-free CSS

Applying conditional classnames to the html element is a popular way to help target specific versions of IE with CSS fixes. It was first described by Paul Irish and is a feature of the HTML5 Boilerplate. Despite all its benefits, there are still a couple of niggling issues. Here are some hacky variants that side-step those issues.

An article by Paul Irish, Conditional stylesheets vs CSS hacks? Answer: Neither!, first proposed that conditional comments be used on the opening html tag to help target legacy versions of IE with CSS fixes. Since its inclusion in the HTML5 Boilerplate project, contributors have further refined the technique.

However, there are still some niggling issues with the “classic” conditional comments approach, which Mathias Bynens summarized in a recent article on safe CSS hacks.

  1. The Compatibility View icon is displayed in IE8 and IE9 if you are not setting the X-UA-Compatible header in a server config.
  2. The character encoding declaration might not be fully contained within the first 1024 bytes of the HTML document if you need to include several attributes on each version of the opening html tag (e.g. Facebook xmlns junk).

You can read more about the related discussions in issue #286 and issue #378 at the HTML5 Boilerplate GitHub repository.

The “bubble up” conditional comments method

Although not necessarily recommended, it looks like both of these issues can be avoided with a bit of trickery. You can create an uncommented opening html tag upon which any shared attributes (so no class attribute) can be set. The conditional classes are then assigned in a second html tag that appears after the <meta http-equiv="X-UA-Compatible"> tag in the document. The classes will “bubble up” to the uncommented tag.

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta http-equiv="X-UA-Compatible"
          content="IE=edge,chrome=1">
    <meta charset="utf-8">
    <!--[if lt IE 7]><html class="no-js ie6"><![endif]-->
    <!--[if IE 7]><html class="no-js ie7"><![endif]-->
    <!--[if IE 8]><html class="no-js ie8"><![endif]-->
    <!--[if gt IE 8]><!--><html class="no-js"><!--<![endif]-->

    <title>Document</title>
  </head>
  <body>
  </body>
</html>

Fork the Gist

The result is that IE8 and IE9 won’t ignore the <meta http-equiv="X-UA-Compatible"> tag, the Compatibility View icon will not be displayed, and the amount of repeated code is reduced. Obviously, including a second html tag in the head isn’t pretty or valid HTML.

If you’re using a server-side config to set the X-UA-Compatible header (instead of the meta tag), then you can still benefit from the DRYer nature of using two opening html tags and it isn’t necessary to include the conditional comments in the head of the document. However, you might still want to do so if you risk not containing the character encoding declaration within the first 1024 bytes of the document.

<!DOCTYPE html>
<html lang="en">
<!--[if lt IE 7]><html class="no-js ie6"><![endif]-->
<!--[if IE 7]><html class="no-js ie7"><![endif]-->
<!--[if IE 8]><html class="no-js ie8"><![endif]-->
<!--[if gt IE 8]><!--><html class="no-js"><!--<![endif]-->
  <head>
    <meta charset="utf-8">
    <title>Document</title>
  </head>
  <body>
  </body>
</html>

Fork the Gist

The “preemptive” conditional comments method

Another method to prevent the Compatibility View icon from showing was found by Julien Wajsberg. It relies on including a conditional comment before the DOCTYPE. Doing this seems to help IE recognise the <meta http-equiv="X-UA-Compatible"> tag. This method isn’t as DRY and doesn’t have the character encoding declaration as high up in the document, but it also doesn’t use 2 opening html elements.

<!--[if IE]><![endif]-->
<!DOCTYPE html>
<!--[if lt IE 7]><html class="no-js ie6"><![endif]-->
<!--[if IE 7]><html class="no-js ie7"><![endif]-->
<!--[if IE 8]><html class="no-js ie8"><![endif]-->
<!--[if gt IE 8]><!--><html class="no-js"><!--<![endif]-->
  <head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta charset="utf-8">
    <title>Document</title>
  </head>
  <body>
  </body>
</html>

Fork the Gist

While it’s interesting to explore these possibilities, the “classic” method is still generally the most understandable. It doesn’t create invalid HTML, doesn’t risk throwing IE into quirks mode, and you won’t have a problem with the Compatibility View icon if you use a server-side config.

If you find any other approaches, or problems with those posted here, please leave a comment but also consider adding what you’ve found to the relevant issues in the HTML5 Boilerplate GitHub repository.

Thanks to Paul Irish for feedback and suggestions.




ndi

Air India employees move HC over pay cut

They say it violates Centre’s directive




ndi

IndiGo helps 227 Kenyans go home

Airline brings them to Mumbai airport




ndi

Thinkers 50 business thought leaders from India [electronic resource] : the best ideas on innovation, management, strategy, and leadership / Stuart Crainer + Des Dearlove

Crainer, Stuart




ndi

Transitioning to Agile [electronic resource] : understanding the business imperative for transforming enterprises / Rick Freedman

Freedman, Rick, author




ndi

The trouble with HR [electronic resource] : an insider's guide to finding and keeping the best talent / Johnny C. Taylor, Jr. and Gary M. Stern

Taylor, Johnny C., 1968-




ndi

Waste to wealth - a distant dream? [electronic resource] : challenges in the waste disposal supply chain in Bangalore, India / Chuck Munson with M. Ramasubramaniam and P. Chandiran

Munson, Chuck, author




ndi

Water culture, politics, and management [electronic resource] / India International Centre; introduction by Kapila Vatsyayan

Festival of Water (2004 : India International Centre)









ndi

JAMA Internal Medicine : Analysis of Proposed Medicare Reforms on Prescription Drug Total Spending and Patient Cost-Sharing

Interview with Aaron Kesselheim, author of Analysis of Proposed Medicare Part B to Part D Shift With Associated Changes in Total Spending and Patient Cost-Sharing for Prescription Drugs, and Francis J. Crosson, M.D., author of Managing the Cost of Medicare Part B Drugs: Implications for the Program and Beneficiaries








ndi

Bull Spread strategy on Tata Consumer by Nandish Shah of HDFC Securities

Primary trend of the stock is positive where stock price is trading above its 200-day SMA




ndi

Stocks to watch: RIL, Tata Motors, RBL Bk, Adani Gas, SBI Cards, SKF India

Here's a look at the top stocks that may remain in focus today




ndi

Indian man jailed for biting compatriot’s ear in New Zealand



  • DO NOT USE Indians Abroad
  • World

ndi

Indian gets 30 months in jail for Little India riot



  • DO NOT USE Indians Abroad
  • World

ndi

Indian survives 7-day ordeal after falling from Cambodian peak



  • DO NOT USE Indians Abroad
  • World

ndi

Indians bought US real estate worth USD 5.8 bn in FY’14



  • DO NOT USE Indians Abroad
  • World

ndi

Indian-American woman appointed CIO of top US university



  • DO NOT USE Indians Abroad
  • World

ndi

Indian-American pleads guilty in Al-Qaeda sting operation



  • DO NOT USE Indians Abroad
  • World

ndi

18-yr-old Indian stabbed in Singapore



  • DO NOT USE Indians Abroad
  • World

ndi

Indian-origin woman arrested in US for abducting her child



  • DO NOT USE Indians Abroad
  • World

ndi

Indian sentenced for raping 12-year-old in UK



  • DO NOT USE Indians Abroad
  • World

ndi

Over 5,900 Indians in jails abroad,1400 in Saudi, 468 in Pakistan



  • DO NOT USE Indians Abroad
  • World