icon [ASAP] Enhanced Nonlinear Light Generation in Oligomers of Silicon Nanoparticles under Vector Beam Illumination By feedproxy.google.com Published On :: Thu, 30 Apr 2020 04:00:00 GMT Nano LettersDOI: 10.1021/acs.nanolett.0c00393 Full Article
icon Handbook of semiconductor nanostructures and nanodevices / edited by Alexander A. Balandin, Kang L. Wang By prospero.murdoch.edu.au Published On :: Full Article
icon [ASAP] Silicon Forms a Rich Diversity of Aliphatic Polyol Complexes in Aqueous Solution By feedproxy.google.com Published On :: Wed, 06 May 2020 04:00:00 GMT Journal of the American Chemical SocietyDOI: 10.1021/jacs.9b10701 Full Article
icon Semiconductor gas sensors / edited by Raivo Jaaniso, Ooi Kiang Tan By library.mit.edu Published On :: Sun, 8 Mar 2020 06:23:59 EDT Barker Library - TP754 J336 2019 Full Article
icon Exploring a lead-free organic–inorganic semiconducting hybrid with above-room-temperature dielectric phase transition By feeds.rsc.org Published On :: RSC Adv., 2020, 10,17492-17496DOI: 10.1039/C9RA09289G, Paper Open Access   This article is licensed under a Creative Commons Attribution 3.0 Unported Licence.Yuyin Wang, Shiguo Han, Xitao Liu, Zhenyue Wu, Zhihua Sun, Dhananjay Dey, Yaobin Li, Junhua LuoRecently, organic–inorganic hybrid lead halide perovskites have attracted great attention for optoelectronic applications, such as light-emitting diodes, photovoltaics and optoelectronics.The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
icon Correction: Role of polysilicon in poly-Si/SiOx passivating contacts for high-efficiency silicon solar cells By feeds.rsc.org Published On :: RSC Adv., 2020, 10,17571-17571DOI: 10.1039/D0RA90049D, Correction Open Access   This article is licensed under a Creative Commons Attribution 3.0 Unported Licence.HyunJung Park, Soohyun Bae, Se Jin Park, Ji Yeon Hyun, Chang Hyun Lee, Dongjin Choi, Dongkyun Kang, Hyebin Han, Yoonmook Kang, Hae-Seok Lee, Donghwan KimThe content of this RSS Feed (c) The Royal Society of Chemistry Full Article
icon Pure CSS social media icons By nicolasgallagher.com Published On :: Tue, 09 Mar 2010 16:00:00 -0800 This is an experiment that creates social media icons using CSS and semantic HTML. It uses progressive enhancement to turn an unordered list of text links into a set of icons without the use of images or JavaScript. Demo: Pure CSS social media icons Support: Firefox 3.5+, Safari 4+, Chrome 4+, Opera 10+, IE8+. CSS social media icons The image below shows you the final appearance in modern browsers. This experiment starts with a simple list of links, with each link using meaningful text, and then progressively styles each link to take on the appearance of the relevant social media icon. As a result, there should be support for screenreaders or users with CSS disabled. I’ve also included basic text in the title attribute of each link to provide information for users who may not be familiar with what service a specific icon represents. This is an experiment that uses CSS 2.1 and CSS3 that is not supported by Internet Explorer 6 and 7, therefore, you shouldn’t expect it to work in those browsers. CSS is not necessarily the most appropriate tool for this kind of thing either. Example code The technique I’ve used is much the same as the one used for the Pure CSS speech bubbles. The HTML is just a basic unordered list of links to various social networking websites or services. <ul> <li class="facebook"><a href="#non" title="Share on Facebook">Facebook</a></li> <li class="twitter"><a href="#non" title="Share on Twitter">Twitter</a></li> <li class="rss"><a href="#non" title="Subscribe to the RSS feed">RSS</a></li> <li class="flickr"><a href="#non" title="Share on Flickr">Flickr</a></li> <li class="delicious"><a href="#non" title="Bookmark on Delicious">Delicious</a></li> <li class="linkedin"><a href="#non" title="Share on LinkedIn">LinkedIn</a></li> <li class="google"><a href="#non" title="Bookmark with Google">Google</a></li> <li class="orkut"><a href="#non" title="Share on Orkut">Orkut</a></li> <li class="technorati"><a href="#non" title="Add to Technorati">Technorati</a></li> <li class="netvibes"><a href="#non" title="Add to NetVibes">NetVibes</a></li> </ul> I’ve applied some general styles to the elements that make up this list. ul { list-style:none; padding:0; margin:0; overflow:hidden; font:0.875em/1 Arial, sans-serif; } ul li { float:left; width:66px; height:66px; margin:20px 20px 0 0; } ul li a { display:block; width:64px; height:64px; overflow:hidden; border:1px solid transparent; line-height:64px; text-decoration:none; /* css3 */ text-shadow:0 -1px 0 rgba(0,0,0,0.5); -moz-border-radius:5px; -webkit-border-radius:5px; border-radius:5px; /* standards version last */ } ul li a:hover, ul li a:focus, ul li a:active { opacity:0.8; border-color:#000; } Each icon uses it’s own set of styles. This is the CSS that created the RSS icon. .rss a { position:relative; width:60px; padding:0 2px; border-color:#ea6635; text-transform:lowercase; text-indent:-186px; font-size:64px; font-weight:bold; color:#fff; background:#e36443; /* css3 */ -moz-box-shadow:0 0 4px rgba(0,0,0,0.4); -webkit-box-shadow:0 0 4px rgba(0,0,0,0.4); box-shadow:0 0 4px rgba(0,0,0,0.4); background:-webkit-gradient(linear, left top, left bottom, from(#f19242), to(#e36443)); background:-moz-linear-gradient(top, #f19242, #e36443); background:linear-gradient(top, #f19242, #e36443); } .rss a:before, .rss a:after { content:""; position:absolute; bottom:10px; left:10px; } /* create circle */ .rss a:before { width:12px; height:12px; background:#fff; /* css3 */ -moz-border-radius:12px; -webkit-border-radius:12px; border-radius:12px; } /* create the two arcs */ .rss a:after { width:22px; height:22px; border-style:double; border-width:24px 24px 0 0; border-color:#fff; /* css3 */ -moz-border-radius:0 50px 0 0; -webkit-border-radius:0 50px 0 0; border-radius:0 50px 0 0; } Acknowledgements This post was inspired by an experiment on insicdesigns that producing a few social media icons using CSS. Full Article
icon Pure CSS GUI icons By nicolasgallagher.com Published On :: Mon, 15 Nov 2010 16:00:00 -0800 An experiment that uses pseudo-elements to create 84 simple GUI icons using CSS and semantic HTML. Shared as an exercise in creative problem solving and working within constraints. This is not a “production ready” CSS icon set. Demo: Pure CSS GUI icons Known support: Firefox 3.5+, Safari 5+, Chrome 5+, Opera 10.6+. An exercise in constraint Several months ago I was experimenting with the creation of common GUI icons with CSS. The HTML is very simple and it relies on CSS pseudo-elements rather than extraneous HTML elements. The technical aspects of this exercise might be of interest to others, so I’ve decided to share it. Pseudo-elements provide many possibilities to developers interested in enhancing existing semantic HTML. Example code The technique behind this experiment is an expansion of the basic shape-creation that was used to make Pure CSS speech bubbles. Some of these GUI icons can only be created in browsers that support CSS3 transforms. The HTML is a basic unordered list of links. <ul> <li class="power"><a href="#non">Power</a></li> <li class="play"><a href="#non">Play</a></li> <li class="stop"><a href="#non">Stop</a></li> <li class="pause"><a href="#non">Pause</a></li> </ul> Each icon uses its own set of styles. For example, the key parts of the CSS responsible for the “expand” icon are as follows: .expand a:before { content: ""; position: absolute; top: 50%; left: 1px; width: 5px; height: 0; border-width: 7px 7px 0; border-style: solid; border-color: transparent #c55500; margin-top: -4px; /* css3 */ -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .expand a:after { content: ""; position: absolute; top: 50%; left: 5px; width: 8px; height: 8px; border-width: 3px 0 0 3px; border-style: solid; border-color: #c55500; margin-top: -6px; } .expand a:hover:before, .expand a:focus:before, .expand a:active:before { border-color: transparent #730800; } .expand a:hover:after, .expand a:focus:after, .expand a:active:after { border-color: #730800; } The demo page contains a full set of user interaction and media player control icons, as well as other common icons. For now, several icons actually require more than one element as CSS 2.1 only specifies 2 pseudo-elements per element that can contain generated content. The CSS3 Generated and Replaced Content Module allows for an unlimited number of pseudo-elements but has yet to be fully implemented in any modern browser. Full Article
icon 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
icon Hollow-structure engineering of a silicon–carbon anode for ultra-stable lithium-ion batteries By feeds.rsc.org Published On :: Dalton Trans., 2020, 49,5669-5676DOI: 10.1039/D0DT00566E, PaperHongbin Liu, Yun Chen, Bo Jiang, Yue Zhao, Xiaolin Guo, Tingli MaHollow silicon nanotubes were successfully synthesized in situ on a carbon substrate, which effectively accommodate the volume expansion of silicon and exhibit ultra-stable performance as the anode of lithium-ion batteries.The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
icon Tin based organic-inorganic hybrid semiconductors with reversible phase transition and dielectric anomaly By feeds.rsc.org Published On :: Dalton Trans., 2020, Accepted ManuscriptDOI: 10.1039/D0DT01401J, PaperZhenhong Wei, Xiuli You, Jiaojiao YaoOrganic−inorganic hybrid materials with perovskite structure have recently attracted tremendous interest due to their structural tunability and rich functional properties, such as phase transition and photoelectric properties. Within this context,...The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
icon Rhenium and technetium-complexed silicon rhodamines as near-infrared imaging probes for bimodal SPECT- and optical imaging By feeds.rsc.org Published On :: Dalton Trans., 2020, Accepted ManuscriptDOI: 10.1039/D0DT01084G, CommunicationThines Kanagasundaram, Carsten Sven Kramer, Eszter Boros, Klaus KopkaRadiolabelled fluorescent dyes are decisive for bimodal imaging and currently in demand for scintigraphic and optical imaging. This powerful method allows the combination of nuclear imaging (e.g. SPECT-imaging) and optical...The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
icon Panda nation : the construction and conservation of China's modern icon / E. Elena Songster By prospero.murdoch.edu.au Published On :: Songster, E. Elena, author Full Article
icon Silicon-carbonyl complex is stable at room temperature By feedproxy.google.com Published On :: 26 Apr 2020 23:42:18 +0000 Electron-rich compound reacts like a transition metal Full Article
icon TCS launches AI-powered solution to detect wafer anomaly in semiconductor manufacturing By economictimes.indiatimes.com Published On :: 2020-05-05T13:35:38+05:30 The solution harnesses the company's contextual knowledge of the semiconductor industry and the power of deep learning tech, to help chip makers digitally re-imagine their product quality assurance process. Sophisticated quality inspection of wafers during the semiconductor manufacturing process is essential to detect and classify defects early and accurately, TCS said. Full Article
icon Ganzseitige Wappenminiaturen aus einem Stammbuch - BSB Cod.icon. 518(8 By daten.digitale-sammlungen.de Published On :: Mon, 09 Mar 2020 13:12:02 +0100 Autor: Erschienen Mitte-Ende 16. Jahrhundert BSB-Signatur Cod.icon. 518(8 URN: urn:nbn:de:bvb:12-bsb00131217-2 URL: http://daten.digitale-sammlungen.de/~db/0013/bsb00131217/images/ Full Article
icon Conductors, Semiconductors, Superconductors: An Introduction to Solid-State Physics / Rudolf P. Huebener By library.mit.edu Published On :: Sun, 22 Dec 2019 07:46:07 EST Online Resource Full Article
icon Govt's 'Make in India' initiative is unlikely to help the semiconductor production value chain By economictimes.indiatimes.com Published On :: 2020-04-11T23:02:47+05:30 India’s manufacturing industry does rely heavily on imported components, including semiconductors, smartphone screens, LED screens, sensors and so on. Full Article
icon Gas phase synthesis of amorphous silicon nitride nanoparticles for high-energy LIBs By feeds.rsc.org Published On :: Energy Environ. Sci., 2020, 13,1212-1221DOI: 10.1039/C9EE03857D, CommunicationSujong Chae, Seungkyu Park, Kihong Ahn, Gyutae Nam, Taeyong Lee, Jaekyung Sung, Namhyung Kim, Jaephil ChoWe introduce a highly homogenous phase design of Si with N by scalable gas phase synthesis using a specially customized vertical furnace, which tackles the intrinsic challenges of Si anodes.The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
icon Silicon in plants : advances and future prospects / edited by Durgesh Kumar Tripathi, Vijay Pratap Singh, Parvaiz Ahmad, Devendra Kumar Chauhan, Sheo Mohan Prasad By prospero.murdoch.edu.au Published On :: Full Article
icon [ASAP] Semiconductor Nanocrystal Heterostructures: Near-Infrared Emitting PbSe-Tipped CdSe Tetrapods By feedproxy.google.com Published On :: Mon, 04 May 2020 04:00:00 GMT Chemistry of MaterialsDOI: 10.1021/acs.chemmater.0c00714 Full Article
icon [ASAP] Thermally Induced Dehydrogenative Coupling of Organosilanes and H-Terminated Silicon Quantum Dots onto Germanane Surfaces By feedproxy.google.com Published On :: Fri, 08 May 2020 04:00:00 GMT Chemistry of MaterialsDOI: 10.1021/acs.chemmater.0c00482 Full Article
icon Concorde: supersonic icon / Ingo W. Bauernfeind By library.mit.edu Published On :: Sun, 20 Oct 2019 06:25:28 EDT Barker Library - TL685.7.B38 2018 Full Article
icon Archaeology, art and iconography of early medieval Chanderi / Ranbeer Singh Rajput By grammy.mit.edu Published On :: Mon, 25 Jul 2016 Rotch Library - DS486.C337 R35 2015 Full Article
icon Art, icon, and architecture in South Asia: essays in honour of Dr. Devangana Desai / edited by Anila Verghese, Anna L. Dallapiccola By grammy.mit.edu Published On :: Mon, 25 Jul 2016 Rotch Library - N8193.S68 A78 2015 Full Article
icon Iconography of the door guardians of South India: dvārapālas / Myneni Krishnakumari By grammy.mit.edu Published On :: Mon, 25 Jul 2016 Rotch Library - BL1243.76.S68 K75 2015 Full Article
icon The temptation of graves in Salafi Islam: iconoclasm, destruction and idolatry / Ondřej Beránek and Pavel Ťupek By grammy.mit.edu Published On :: Wed, 15 Apr 2020 Rotch Library - BP195.W2 B47 2018 Full Article
icon Properties, fabrication and applications of plasmonic semiconductor nanocrystals By feeds.rsc.org Published On :: Catal. Sci. Technol., 2020, Advance ArticleDOI: 10.1039/C9CY02511A, MinireviewHaibo Yin, Yasutaka Kuwahara, Kohsuke Mori, Catherine Louis, Hiromi YamashitaWe highlight three widely explored oxide-based plasmonic materials, including HxMoO3−y, HxWO3−y, and MoxW1−xO3−y, and their applications in catalysis.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
icon Impact of edge structures on interfacial interactions and efficient visible-light photocatalytic activity of metal–semiconductor hybrid 2D materials By feeds.rsc.org Published On :: Catal. Sci. Technol., 2020, Advance ArticleDOI: 10.1039/D0CY00420K, Paper Open Access   This article is licensed under a Creative Commons Attribution-NonCommercial 3.0 Unported Licence.Deobrat Singh, Pritam Kumar Panda, Nabil Khossossi, Yogendra Kumar Mishra, Abdelmajid Ainane, Rajeev AhujaThe present work systematically investigates the structural, electronic, and optical properties of MoS2/Si2BN heterostructures based on first-principles calculations.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
icon NIR-emitting semiconducting polymer nanoparticles for in vivo two-photon vascular imaging By pubs.rsc.org Published On :: Biomater. Sci., 2020, 8,2666-2672DOI: 10.1039/C9BM02063B, PaperXiao-Ting Gong, Wenguang Xie, Jing-Jing Cao, Shengxiang Zhang, Kanyi Pu, Hao-Li ZhangA NIR-emitting TPF probe (NESPN) was prepared using semiconducting polymers and used for continuously monitoring the whole process of ischemic stroke and subsequent reperfusion. This work provides a new and versatile tool for vascular research and diagnosis of vascular diseases.The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
icon Emerging pnictogen-based 2D semiconductors: sensing and electronic devices By feeds.rsc.org Published On :: Nanoscale, 2020, Advance ArticleDOI: 10.1039/D0NR02932G, Review ArticlePradip Kumar Roy, Jan Luxa, Zdeněk SoferPnictogens have drawn tremendous attention due to their electronic structure and semiconducting character. Their fascinating features provide a novel platform for new devices in 2D materials which will pave the way for new nanodevices.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
icon Martinez Perricone, Jose By digital.lib.usf.edu Published On :: Tue, 04 Feb 2014 20:05:14 -0400 Full Article
icon Perricone, Joe By digital.lib.usf.edu Published On :: Tue, 04 Feb 2014 20:31:26 -0400 Full Article
icon Perricone, Aida By digital.lib.usf.edu Published On :: Tue, 04 Feb 2014 21:46:06 -0400 Full Article
icon Perricone, Angelina By digital.lib.usf.edu Published On :: Tue, 04 Feb 2014 21:54:50 -0400 Full Article
icon Catalytic oxidation of methane using single crystal silicon carbide By digital.lib.usf.edu Published On :: Sat, 15 Feb 2014 18:07:48 -0400 Full Article
icon Design and development of a silicon carbide chemical vapor deposition reactor By digital.lib.usf.edu Published On :: Sat, 15 Feb 2014 18:08:35 -0400 Full Article
icon Synthesis of nanostructures in single crystal silicon carbide by electron beam lithography By digital.lib.usf.edu Published On :: Sat, 15 Feb 2014 18:11:34 -0400 Full Article
icon Modeling of QE, I-V characteristics of MSM (Metal-Semiconductor-Metal) mercuric iodide thin films with MEDICI ™ By digital.lib.usf.edu Published On :: Sat, 15 Feb 2014 18:16:54 -0400 Full Article
icon Detection of residual stress in multi-crystalline silicon wafers using swept-sne frequency response data By digital.lib.usf.edu Published On :: Sat, 15 Feb 2014 18:19:14 -0400 Full Article
icon Optimization study of ba-filled si-ge alloy type i semiconducting clathrates for thermoelectric applications By digital.lib.usf.edu Published On :: Sat, 15 Feb 2014 18:21:03 -0400 Full Article
icon Implant annealing of al dopants in silicon carbide using silane overpressure By digital.lib.usf.edu Published On :: Sat, 15 Feb 2014 18:23:26 -0400 Full Article
icon Stress diagnostics and crack detection in full-size silicon wafers using resonance ultrasonic vibrations By digital.lib.usf.edu Published On :: Sat, 15 Feb 2014 18:23:56 -0400 Full Article
icon Bulk silicon based temperature sensor By digital.lib.usf.edu Published On :: Sat, 15 Feb 2014 18:26:29 -0400 Full Article
icon Palladium doped nano porous silicon to enhance hydrogen sensing By digital.lib.usf.edu Published On :: Sat, 15 Feb 2014 18:30:17 -0400 Full Article
icon Synthesis and characterization of type II silicon and germanium clathrates By digital.lib.usf.edu Published On :: Sat, 15 Feb 2014 18:30:30 -0400 Full Article
icon Detection of cracks in single-crystalline silicon wafers using impact testing By digital.lib.usf.edu Published On :: Sat, 15 Feb 2014 18:30:42 -0400 Full Article
icon Analysis of quasiconformal maps in Rn By digital.lib.usf.edu Published On :: Sat, 15 Feb 2014 18:31:24 -0400 Full Article
icon Electrical characterization of metal-to-insulator transition in iron silicide thin films on sillicone substrates By digital.lib.usf.edu Published On :: Sat, 15 Feb 2014 18:33:04 -0400 Full Article
icon Icon, representation and virtuality in reading the graphic narrative By digital.lib.usf.edu Published On :: Sat, 15 Feb 2014 18:36:29 -0400 Full Article