app Nanobiosensors: From Design to Applications By www.wiley.com Published On :: 2020-04-13T04:00:00Z Containing cutting edge research on the hot topic of nanobiosensor, this book will become highly readBiosensor research has recently re-emerged as most vibrant area in recent years particularly after the advent of novel nanomaterials of multidimensional features and compositions. Nanomaterials of different types and striking properties have played a positive role in giving the boost and accelerated pace to biosensors development technology. Read More... Full Article
app A high-throughput and untargeted lipidomics approach reveals new mechanistic insight and the effects of salvianolic acid B on the metabolic profiles in coronary heart disease rats using ultra-performance liquid chromatography with mass spectrometry By feeds.rsc.org Published On :: RSC Adv., 2020, 10,17101-17113DOI: 10.1039/D0RA00049C, Paper Open Access   This article is licensed under a Creative Commons Attribution-NonCommercial 3.0 Unported Licence.Ying-peng Li, Cong-ying Wang, Hong-tao Shang, Rui-rui Hu, Hui Fu, Xue-feng XiaoHigh-throughput lipidomics provides the possibility for the development of new therapeutic drugs.The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
app Post-synthetic modification of imine linkages of a covalent organic framework for its catalysis application By feeds.rsc.org Published On :: RSC Adv., 2020, 10,17396-17403DOI: 10.1039/D0RA02142C, Paper Open Access   This article is licensed under a Creative Commons Attribution 3.0 Unported Licence.Qianqian Yan, Huanjun Xu, Xuechao Jing, Hui Hu, Shenglin Wang, Chaoyuan Zeng, Yanan GaoA new approach for post-synthetic modification of covalent organic frameworks has been developed based on the modification of the linkages and the resulting COF exhibited excellent catalytic performance towards cycloaddition of epoxides and CO2.The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
app Chlorotrifluoroethylidenes: an efficient and convenient approach to their synthesis By feeds.rsc.org Published On :: RSC Adv., 2020, 10,17427-17431DOI: 10.1039/D0RA02481C, Paper Open Access   This article is licensed under a Creative Commons Attribution-NonCommercial 3.0 Unported Licence.Abhay Atmaram Upare, Pradip K. Gadekar, Kiran Jadhav, H. Sivaramakrishnan, Selvaraj Mohana RoopanA convenient one step synthesis of chlorotrifluoroalkyl olefins starting from aldehydes was developed.The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
app Polypyrrole modified magnetic reduced graphene oxide composites: synthesis, characterization and application for selective lead adsorption By feeds.rsc.org Published On :: RSC Adv., 2020, 10,17524-17533DOI: 10.1039/D0RA01546F, Paper Open Access   This article is licensed under a Creative Commons Attribution-NonCommercial 3.0 Unported Licence.Zhanmeng Liu, Zhimin Gao, Lichun Xu, Fengping HuCompared to Fe3O4/rGO, the PPy-FG composites showed desirable adsorption capacity and selectivity for Pb(II) from water.The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
app Selective modification of Ti6Al4V surfaces for biomedical applications By feeds.rsc.org Published On :: RSC Adv., 2020, 10,17642-17652DOI: 10.1039/C9RA11000C, Paper Open Access   This article is licensed under a Creative Commons Attribution-NonCommercial 3.0 Unported Licence.Gabriela Melo Rodriguez, James Bowen, Mischa Zelzer, Artemis StamboulisThe surface of a medical implant is required to interact favourably with ions, biomolecules and cells in vivo, commonly resulting in the formation of the extracellular matrix.The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
app Position-locking of volatile reaction products by atmosphere and capping layers slows down photodecomposition of methylammonium lead triiodide perovskite By feeds.rsc.org Published On :: RSC Adv., 2020, 10,17534-17542DOI: 10.1039/D0RA03572F, Paper Open Access   This article is licensed under a Creative Commons Attribution 3.0 Unported Licence.Fengshuo Zu, Thorsten Schultz, Christian M. Wolff, Dongguen Shin, Lennart Frohloff, Dieter Neher, Patrick Amsalem, Norbert KochGas pressure and capping layers under ultrahigh vacuum prevent methylammonium lead triiodide photo-degradation due to efficient back-reaction of volatile compounds.The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
app Mechanochemical approach to synthesize citric acid-soluble fertilizer of dittmarite (NH4MgPO4·H2O) from talc/NH4H2PO4 mixture By feeds.rsc.org Published On :: RSC Adv., 2020, 10,17686-17693DOI: 10.1039/D0RA00387E, Paper Open Access   This article is licensed under a Creative Commons Attribution-NonCommercial 3.0 Unported Licence.Yonghao Tan, Lin Sha, Nengkui Yu, Zhengshuo Yang, Jun Qu, Zhigao XuDittmarite synthesis by a mechanochemical route for application as a citric acid-soluble fertilizer.The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
app Correction: Narrowing band gap and enhanced visible-light absorption of metal-doped non-toxic CsSnCl3 metal halides for potential optoelectronic applications By feeds.rsc.org Published On :: RSC Adv., 2020, 10,17869-17869DOI: 10.1039/D0RA90054K, Correction Open Access   This article is licensed under a Creative Commons Attribution 3.0 Unported Licence.Jakiul Islam, A. K. M. Akther HossainThe content of this RSS Feed (c) The Royal Society of Chemistry Full Article
app Making SVG icon libraries for React apps By nicolasgallagher.com Published On :: Thu, 01 Feb 2018 16:00:00 -0800 Using SVG is currently the best way to create icon libraries for apps. Icons built with SVG are scalable and adjustable, but also discrete, which allows them to be incrementally loaded and updated. In contrast, icons built as fonts cannot be incrementally loaded or updated. This alone makes SVG icons the better choice for high-performance apps that rely on code-splitting and incremental deploys. This post describes how to make a package of React components from a library of SVG icons. Although I’m focusing on React, making any other type of package is also possible. At Twitter I used the approach described here to publish the company’s SVG icon library in several different formats: optimized SVGs, plain JavaScript modules, React DOM components, and React Native components. Using the icons The end result is a JavaScript package that can be installed and used like any other JavaScript package. yarnpkg add @acme/react-icons Each icon is available as an individually exported React component. import IconCamera from '@acme/react-icons/camera'; This allows your module bundler to package only the icons that are needed, and icons can be efficiently split across chunks when using code-splitting. This is a significant advantage over icon libraries that require fonts and bundle all icons into a single component. // entire icon library is bundled with your app import Icon from '@acme/react-icons'; const IconCamera = <Icon name='camera' />; Each icon is straightforward to customize (e.g., color and dimensions) on a per-use basis. import IconCamera from '@twitter/react-icons/camera'; const Icon = ( <IconCamera style={{ color: 'white', height: '2em' }} /> ); Although the icons render to SVG, this is an implementation detail that isn’t exposed to users of the components. Creating components Each React component renders an inline SVG, using path and dimensions data extracted from the SVG source files. A helper function called createIconComponent means that only a few lines of boilerplate are needed to create a component from SVG data. import createIconComponent from './utils/createIconComponent'; import React from 'react'; const IconCamera = createIconComponent({ content: <g><path d='...'></g>, height: 24, width: 24 }); IconCamera.displayName = 'IconCamera'; export default IconCamera; This is an example of what the createIconComponent function looks like when building components for a web app like Twitter Lite, which is built with React Native for Web. // createIconComponent.js import { createElement, StyleSheet } from 'react-native-web'; import React from 'react'; const createIconComponent = ({ content, height, width }) => (initialProps) => { const props = { ...initialProps, style: StyleSheet.compose(styles.root, initialProps.style), viewBox: `0 0 ${width} ${height}` }; return createElement('svg', props, content); }; const styles = StyleSheet.create({ root: { display: 'inline-block', fill: 'currentcolor', height: '1.25em', maxWidth: '100%', position: 'relative', userSelect: 'none', textAlignVertical: 'text-bottom' } }); Setting the fill style to currentcolor allows you to control the color of the SVG using the color style property instead. All that’s left is to use scripts to process the SVGs and generate each React component. Creating icon packages A complete example of one way to do this can be found in the icon-builder-example repository on GitHub. The project structure of the example tool looks like this. . ├── README.md ├── package.json ├── scripts/ ├── build.js ├── createReactPackage.js └── svgOptimize.js └── src/ ├── alerts.svg ├── camera.svg ├── circle.svg └── ... The build script uses SVGO to optimize the SVGs, extract SVG path data, and extract metadata. The example packager for React then uses templates to create a package.json and the React icon components shown earlier. import createIconComponent from './utils/createIconComponent'; import React from 'react'; const ${componentName} = createIconComponent({ height: ${height}, width: ${width}, content: <g>${paths}</g> }); ${componentName}.displayName = '${componentName}'; export default ${componentName}; Additional packagers can be included to build other package types from the same SVG source. When the underlying icon library changes, it only takes a couple of commands to rebuild hundreds of icons and publish new versions of each package. Full Article
app Streamlining business requirements [electronic resource] : the XCellR8 approach / Gerrie Caudle By prospero.murdoch.edu.au Published On :: Caudle, Gerrie Full Article
app Successes and failures of knowledge management [electronic resource] / edited by Jay Liebowitz, Distinguished Chair of Applied Business and Finance, Harrisburg University of Science and Technology, Harrisburg, Pennsylvania By prospero.murdoch.edu.au Published On :: Full Article
app Tapping into unstructured data [electronic resource] : integrating unstructured data and textual analytics into business intelligence / William H. Inmon, Anthony Nesavich By prospero.murdoch.edu.au Published On :: Inmon, William H Full Article
app Web development with MongoDB and Node JS [electronic resource] : build an interactive and full-featured web application from scratch using Node.js and MongoDB / Mithun Sathessh, Bruno Joseph D'mello, Jason Krol By prospero.murdoch.edu.au Published On :: Satheesh, Mithun, author Full Article
app When a Western 3PL meets an Asian 3PL, something magical happens [electronic resource] / Chuck Munson with Shong-Iee Ivan Su By prospero.murdoch.edu.au Published On :: Munson, Chuck, author Full Article
app Wise money [electronic resource] : how the smart money invests using the endowment investment approach to minimize volatility and increase control / Daniel Wildermuth By prospero.murdoch.edu.au Published On :: Wildermuth, Daniel Full Article
app XML and JSON Recipes for SQL Server [electronic resource] : A Problem-Solution Approach / by Alex Grinberg By prospero.murdoch.edu.au Published On :: Grinberg, Alex. author Full Article
app The you of leadership [electronic resource] : an intuitive approach to effective business leadership / Twan van de Kerkhof By prospero.murdoch.edu.au Published On :: Kerkhof, Twan van de, author Full Article
app 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
app JAMA Surgery : Robotic Approach vs Traditional Laparoscopic Approach and Postoperative Outcomes By edhub.ama-assn.org Published On :: Wed, 18 Mar 2020 15:00:00 +0000 Interview with Ajita S. Prabhu, MD, and Michael J Rosen, MD, FACS, authors of Robotic Inguinal vs Transabdominal Laparoscopic Inguinal Hernia Repair: The RIVAL Randomized Clinical Trial Full Article
app JAMA Dermatology : Face-Aging Mobile App–Based Intervention on Skin Cancer Protection Behavior By edhub.ama-assn.org Published On :: Wed, 06 May 2020 15:00:00 +0000 Interview with Titus Josef Brinker, MD, author of Effect of a Face-Aging Mobile App–Based Intervention on Skin Cancer Protection Behavior in Secondary Schools in Brazil: A Cluster-Randomized Clinical Trial Full Article
app Market Wrap, May 7: Here's all that happened in the markets today By www.business-standard.com Published On :: Thu, 07 May 2020 17:03:00 +0530 Bank of England's statement that Britain could be headed for its biggest economic slump in over 300 years due to the coronavirus lockdown also weighed on the investor sentiment Full Article
app Market Wrap, May 8: Here's all that happened in the markets today By www.business-standard.com Published On :: Fri, 08 May 2020 16:37:00 +0530 BSE Sensex ended at 31,642.70, up 199 points or 0.63 per cent, with HUL (up nearly 5 per cent) being the top gainer and NTPC (down nearly 4 per cent) the biggest loser Full Article
app Indian-American woman appointed CIO of top US university By indianexpress.com Published On :: Sat, 12 Jul 2014 04:23:06 +0000 Full Article DO NOT USE Indians Abroad World
app Indian Taxi driver who raped drunk schoolgirl loses appeal bid By indianexpress.com Published On :: Thu, 04 Sep 2014 06:04:25 +0000 Full Article DO NOT USE Indians Abroad World
app Indian-American Civil Rights lawyer Vanita Gupta appointed to head US Justice Department By indianexpress.com Published On :: Thu, 16 Oct 2014 05:18:38 +0000 Full Article DO NOT USE Indians Abroad World
app Indian-American scientist appointed as US Science Envoy By indianexpress.com Published On :: Fri, 05 Dec 2014 04:22:23 +0000 Full Article DO NOT USE Indians Abroad World
app US apex court denies former Goldman Sachs director Rajat Gupta’s appeal against lifetime ban By indianexpress.com Published On :: Tue, 13 Jan 2015 05:13:50 +0000 Full Article DO NOT USE Indians Abroad World
app Indian-American appointed minority floor leader in Michigan By indianexpress.com Published On :: Fri, 16 Jan 2015 04:32:05 +0000 Full Article DO NOT USE Indians Abroad World
app US President Barack Obama appoints Indian-American executive Ajay Banga to key administrative post By indianexpress.com Published On :: Fri, 06 Feb 2015 07:43:56 +0000 Full Article DO NOT USE Indians Abroad World
app Indian-American appointed to key federal aviation post By indianexpress.com Published On :: Wed, 25 Feb 2015 06:27:00 +0000 Full Article DO NOT USE Indians Abroad World
app Indian-origin counsel appointed as Judicial Commissioner to Singapore Supreme Court By indianexpress.com Published On :: Sat, 28 Feb 2015 04:28:26 +0000 Full Article DO NOT USE Indians Abroad World
app Indian doctors in UK appeal to PM Modi over ‘victimisation’ By indianexpress.com Published On :: Tue, 23 Jun 2015 15:31:03 +0000 Full Article DO NOT USE Indians Abroad World
app Indian man attacked in apparent hate crime in New Jersey By indianexpress.com Published On :: Tue, 07 Jul 2015 04:32:18 +0000 Full Article DO NOT USE Indians Abroad World
app Rajat Gupta files appeal to overturn insider trading conviction By indianexpress.com Published On :: Wed, 26 Aug 2015 05:53:38 +0000 Full Article DO NOT USE Indians Abroad World
app Plant systematics : an integrated approach / Gurcharan Singh By prospero.murdoch.edu.au Published On :: Singh, Gurcharan, 1945- author Full Article
app Air pollution : concepts, theory, and applications / Christian Seigneur By prospero.murdoch.edu.au Published On :: Seigneur, Christian, 1952- author Full Article
app Bacterial pathogenesis : a molecular approach / Brenda A. Wilson, Malcolm E. Winkler, Brian T. Ho By prospero.murdoch.edu.au Published On :: Wilson, Brenda A., author Full Article
app Recent advances in coordination-driven polymeric gel materials: design and applications By feeds.rsc.org Published On :: Dalton Trans., 2020, Advance ArticleDOI: 10.1039/D0DT00863J, FrontierPapri Sutar, Tapas Kumar MajiIn this article, we reviewed recent advances in coordination-driven polymeric gels and highlighted their design and applications in various fields.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 Full Article
app A Review: Recent Advances in Preparations and Applications of Heteroatom-Doped Carbon Quantum Dots By feeds.rsc.org Published On :: Dalton Trans., 2020, Accepted ManuscriptDOI: 10.1039/D0DT01004A, PerspectiveXiaoli Kou, Shicui Jiang, Soo-Jin Park, Long-Yue MengCarbon quantum dots (CQDs) are widely used in optoelectronic catalysis, biological imaging, and ion probes owing to their low toxicity, stable photoluminescence, and ease of chemical modification. However, the low...The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
app Regulatory counter-terrorism: a critical appraisal of proactive global governance / Nathanael Tilahun Ali By library.mit.edu Published On :: Sun, 11 Aug 2019 10:25:18 EDT Dewey Library - KZ7220.A9565 2018 Full Article
app The 'ecosystem approach' in international environmental law: genealogy and biopolitics / Vito de Lucia By library.mit.edu Published On :: Sun, 27 Oct 2019 07:50:57 EDT Dewey Library - K3585.D38 2019 Full Article
app Tallinn manual 2.0 on the international law applicable to cyber operations / prepared by the International Groups of Experts at the invitation of the NATO Cooperative Cyber Defence Centre of Excellence ; general editor, Michael N. Schmitt ; managing edit By library.mit.edu Published On :: Sun, 22 Dec 2019 08:09:42 EST Dewey Library - KZ6718.T35 2017 Full Article
app United States v. Apple: competition in America / Chris Sagers By library.mit.edu Published On :: Sun, 23 Feb 2020 09:36:00 EST Dewey Library - KF1627.S242 2019 Full Article
app Protected areas: a legal geography approach / Josephine Gillespie By library.mit.edu Published On :: Sun, 3 May 2020 10:24:48 EDT Online Resource Full Article
app Mergers in the global markets: a comparative approach to the competition and national security laws among the US, EU, and China / Felix I. Lessambo By library.mit.edu Published On :: Sun, 3 May 2020 10:24:48 EDT Online Resource Full Article
app Poetry 180: Poem 136 - "We Lived Happily During the War" By www.loc.gov Published On :: Wed, 15 Apr 2020 12:39:11 -0500 A poem by Ilya Kaminsky from the Library's Poetry 180 Project. Full Article
app Poetry 180: Poem 148 - "Happiness" By www.loc.gov Published On :: Fri, 01 May 2020 07:00:26 -0500 A poem by Jane Kenyon from the Library's Poetry 180 Project. Full Article
app Applied Physicist: ELI Beamlines By brightrecruits.com Published On :: Tue, 14 Apr 2020 00:00:00 +0100 €Attractive: ELI BeamlinesFor more latest jobs and jobs in Czech Republic visit brightrecruits.com Full Article Czech Republic
app Postdoctoral Researcher in Data Driven Prediction and Interpretation of Spectra, Applications in Climate Research: University of Oulu By brightrecruits.com Published On :: Thu, 16 Apr 2020 00:00:00 +0100 £Attractive: University of OuluFor more latest jobs and jobs in Finland visit brightrecruits.com Full Article Finland