technique

Beyond traditional probabilistic data processing techniques: interval, fuzzy etc. methods and their applications / Olga Kosheleva, Sergey P. Shary, Gang Xiang, Roman Zapatrin, editors

Online Resource




technique

Tools and techniques for high performance computing: selected workshops, HUST, SE-HER and WIHPC, held in conjunction with SC 2019, Denver, CO, USA, November 17-18, 2019, revised selected papers / Guido Juckeland, Sunita Chandrasekaran (eds.)

Online Resource




technique

Knowledge engineering tools and techniques for AI planning Mauro Vallati, Diane Kitchin, editors

Online Resource




technique

Modern singular spectral-based denoising and filtering techniques for 2D and 3D reflection seismic data R.K. Tiwari, R. Rekapalli

Online Resource




technique

A journey towards bio-inspired techniques in software engineering / Jagannath Singh, Saurabh Bilgaiyan, Bhabani Shankar Prasad Mishra, Satchidananda Dehuri, editors

Online Resource




technique

Criminal financial investigations [electronic resource] : the use of forensic accounting techniques and indirect methods of proof / Gregory A. Pasco

Pasco, Gregory A




technique

CFO techniques [electronic resource] : a hands-on guide to keeping your business solvent and successful / Marina Guzik

Guzik, Marina




technique

Statistical techniques for forensic accounting [electronic resource] : understanding the theory and application of data analysis / Saurav K. Dutta

Dutta, Saurav K., 1963- author




technique

[ASAP] Augmenting Hit Identification by Virtual Screening Techniques in Small Molecule Drug Discovery

Journal of Chemical Information and Modeling
DOI: 10.1021/acs.jcim.0c00113




technique

The history of the brain and mind sciences: technique, technology, therapy / edited by Stephen T. Casper and Delia Gavrus

Hayden Library - QP360.H57 2017




technique

[ASAP] Experimental and Theoretical Investigation on Phase Formation and Mechanical Properties in Cr–Co–Ni Alloys Processed Using a Novel Thin-Film Quenching Technique

ACS Combinatorial Science
DOI: 10.1021/acscombsci.9b00170




technique

Polymer Electrolytes: Characterization Techniques and Energy Applications


 
A comprehensive overview of the main characterization techniques of polymer electrolytes and their applications in electrochemical devices

Polymer Electrolytes is a comprehensive and up-to-date guide to the characterization and applications of polymer electrolytes. The authors ? noted experts on the topic ? discuss the various characterization methods, including impedance spectroscopy and thermal characterization. The authors also provide information

Read More...




technique

Data mining and data warehousing : principles and practical techniques / Parteek Bhatia

Bhatia, Parteek, author




technique

Neuro-fuzzy techniques for intelligent information systems / Nikola Kasabov, Robert Kozma (eds.)




technique

Structural modeling and experimental techniques / Harry G. Harris and Gajanan M. Sabnis

Online Resource




technique

[ASAP] Approximating the Strength of the Intramolecular Hydrogen Bond in 2-Fluorophenol and Related Compounds: A New Application of a Classic Technique

The Journal of Physical Chemistry A
DOI: 10.1021/acs.jpca.0c01641




technique

Techniques for measurement and removal of dioxins and furans / Vaishali V. Shahare, Assistant Professor, Rajdhani College, University of Delhi, Delhi

Shahare, Vaishali V., author




technique

Mineralogy and mineral analytical techniques / edited by John Wayne




technique

ZBrush professional tips and techniques [electronic resource] / Paul Gaboury

Gaboury, Paul R




technique

[ASAP] Condensation Induced Blistering as a Measurement Technique for the Adhesion Energy of Nanoscale Polymer Films

Nano Letters
DOI: 10.1021/acs.nanolett.0c01086




technique

Conservation education and outreach techniques / Susan K. Jacobson, Mallory D. McDuff, and Martha C. Monroe

Jacobson, Susan Kay, author




technique

Freshwater ecology and conservation : approaches and techniques / edited by Jocelyne Hughes




technique

Measurement techniques and practices of colloid and interface phenomena / Masahiko Abe, editor

Online Resource




technique

Energy management in plastics processing: strategies, targets, techniques, and tools / Dr. Robin Kent

Online Resource




technique

DNA techniques to verify food authenticity: applications in food fraud / editors: Malcolm Burns, Lucy Foster, Michael Walker

Online Resource




technique

Another CSS image replacement technique

A new image replacement technique was recently added to the HTML5 Boilerplate project. This post explains how it works and how it compares to alternative image replacement techniques.

[15 December 2012] This technique is no longer used in HTML5 Boilerplate. It’s been replaced by another, more reliable approach.

Here’s the CSS behind the recent update to the image replacement helper class in HTML5 Boilerplate. It has also made its way into the Compass framework.

.ir {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
}

What does each declaration do?

  • font:0/0 a – a shorthand property that zeros out the font size and line-height. The a value acts as a very short font-family (an idea taken from the BEM implementation of this method). The CSS validator complains that using 0/0 in the shorthand font property is not valid, but every browser accepts it and this appears to be an error in the validator. Using font:0px/0 a passes validation but it displayed as font:0/0 a in the code that the validator flags as valid.
  • text-shadow:none – makes sure that any inherited text shadow is removed for the text. This prevents the chance of any text shadow colors showing over the background.
  • color:transparent – needed for browsers than don’t completely crush the text to the point of being invisible. Safari 4 (extremely rare) is an example of such a browser. There may also be mobile browsers than require this declaration. IE6/7/8 don’t recognise this value for color, but fortunately IE7/8 don’t show any trace of the text. IE6 shows a faint trace.

In the HTML5 Boilerplate image replacement helper, we’ve also removed any border and background-color that may be on the element. This makes it easier to use the helper class on elements like button or with links that may included background or border properties as part of a design decision.

Benefits over text-indent methods

The new technique avoids various problems with any text-indent method, including the one proposed by Scott Kellum to avoid iPad 1 performance problems related to large negative text indents.

  • Works in IE6/7 on inline-block elements. Techniques based on text indentation are basically “broken”, as shown by this test case: http://jsfiddle.net/necolas/QZvYa/show/
  • Doesn’t result in any offscreen box being created. The text-indent methods result in a box being drawn (sometimes offscreen) for any text that have been negatively or positively indented. It can sometimes cause performance problems but the font-based method sidesteps those concerns.
  • No need to specify a text-alignment and hide the overflow since the text is crushed to take up no space.
  • No need to hide br or make all fallback HTML display:inline to get around the constraints of using a text indentation. This method is not affected by those problems.
  • Fewer styles are needed as a result of these improvements.

Drawbacks

No image replacement hack is perfect.

  • Leaves a very small trace of the text in IE6.
  • This approach means that you cannot use em units for margins on elements that make use of this image replacement code. This is because the font size is set to 0.
  • Windows-Eyes has a bug that prevents the reading of text hidden using this method. There are no problems with all other screenreaders that have been tested. Thanks to @jkiss for providing these detailed results and to @wilto for confirming this technique works for JAWS 12 in IE 6/7/8 and Firefox 4/5/6.
  • Like so many IR methods, it doesn’t work when CSS is loaded but images are not.
  • Text may not be hidden if a visitor is using a user style sheet which has explicitly set important font-size declarations for the element type on which you have applied the IR class.

It’s worth noting that the NIR image replacement technique avoids these drawbacks, but lacks support in IE6/7.

Closing comments

I’ve been using this technique without significant problems for nearly a year, ever since Jonathan Neal and I used it in a clearfix experiment. The BEM framework also makes use of it for their icon components. The core idea was even proposed back in 2003 but the browser quirks of the day may have prevented wider use.

If you come across any problems with this technique, please report them at the HTML5 Boilerplate GitHub issue tracker and include a test case when appropriate.

Translations




technique

Unearthing business requirements [electronic resource] : elicitation tools and techniques / Rosemary Hossenlopp, Kathleen Hass

Hossenlopp, Rosemary, 1958-






technique

Retraction: Determination of chemical affinity of graphene oxide nanosheets with radionuclides investigated by macroscopic, spectroscopic and modeling techniques

Dalton Trans., 2020, 49,5741-5741
DOI: 10.1039/D0DT90074E, Retraction
Open Access
  This article is licensed under a Creative Commons Attribution 3.0 Unported Licence.
Congcong Ding, Wencai Cheng, Yubing Sun, Xiangke Wang
The content of this RSS Feed (c) The Royal Society of Chemistry




technique

Retraction: Enhanced adsorption of Eu(III) on mesoporous Al2O3/expanded graphite composites investigated by macroscopic and microscopic techniques

Dalton Trans., 2020, 49,5742-5742
DOI: 10.1039/D0DT90075C, Retraction
Open Access
  This article is licensed under a Creative Commons Attribution 3.0 Unported Licence.
Yubing Sun, Changlun Chen, Xiaoli Tan, Dadong Shao, Jiaxing Li, Guixia Zhao, Shubin Yang, Qi Wang, Xiangke Wang
The content of this RSS Feed (c) The Royal Society of Chemistry




technique

Student Engagement Techniques: A Handbook for College Faculty, 2nd Edition


 

Practical Strategies and Winning Techniques to Engage and Enhance Student Learning

The revised and updated second edition of Student Engagement Techniques is a much-needed guide to engaging today's information-overloaded students. The book is a comprehensive resource that offers college teachers a dynamic model for engaging students and includes over one hundred tips, strategies, and techniques that have been proven to help teachers across all disciplines



Read More...




technique

Chemistry educators try ‘ungrading' techniques to help students learn

The approach aims to give STEM students more dialogue in their education and free them from the constant pressure of assessment




technique

Enzyme and microbial biosensors [electronic resource] : techniques and protocols / edited by Ashok Mulchandani and Kim R. Rogers

Totowa, N.J. : Humana Press, [1998]




technique

Diseases of the heart, chest & breast [electronic resource] : diagnostic imaging and interventional techniques / 39th International Diagnostic Course in Davos (IDKD), Davos, March 25-30, 2007, including the Pediatric Satellite Course "Kangaroo&qu

Milan ; New York : Springer, [2007]




technique

Technoproductive evaluation of the energyless microbial-integrated diffusion dialysis technique for acid mine drainage valorization

Environ. Sci.: Water Res. Technol., 2020, 6,1217-1229
DOI: 10.1039/C9EW01020C, Critical Review
Hanaa M. Hegab, Ahmed ElMekawy, Christopher Saint, Fawzi Banat, Shadi W. Hasan, Deepak Pant
Acid mine drainage (AMD) presents severe ecological pollution challenges because of its extreme acidity and sulphate and toxic metal contents.
The content of this RSS Feed (c) The Royal Society of Chemistry




technique

Use of optical correlation techniques for characterizing scattering objects and media / Oleg V. Angelsky, Steen G. Hanson, Peter P. Maksimyak

Online Resource




technique

The hologram: principles and techniques / Martin J. Richardson, John D. Wiltshire

Online Resource




technique

Physical Optics: Concepts, Optical Elements, and Techniques / Giovanni Giusfredi

Online Resource




technique

The hologram: principles and techniques / Martin J. Richardson, John D. Wiltshire

Online Resource




technique

[ASAP] Recent Advances in Monitoring, Sampling, and Sensing Techniques for Bioaerosols in the Atmosphere

ACS Sensors
DOI: 10.1021/acssensors.9b02585




technique

Nanofabrication towards biomedical applications : techniques, tools, applications, and impact / edited by C.S.S.R. Kumar, J. Hormes, C. Leuschner




technique

[ASAP] Brillouin Spectroscopy as a Suitable Technique for the Determination of the Eutectic Composition in Mixtures of Choline Chloride and Water

The Journal of Physical Chemistry B
DOI: 10.1021/acs.jpcb.0c01919




technique

Usage of supercritical fluid techniques to obtain bioactive alkaloid-rich extracts from cherimoya peel and leaves: extract profiles and their correlation with antioxidant properties and acetylcholinesterase and α-glucosidase inhibitory activities

Food Funct., 2020, Advance Article
DOI: 10.1039/D0FO00342E, Paper
Oscar Galarce-Bustos, Mª Teresa Fernández-Ponce, Antonio Montes, Clara Pereyra, Lourdes Casas, Casimiro Mantell, Mario Aranda
The wastes generated by cherimoya cultivation and processing industries should be contemplated as a valuable source of bioactive alkaloids, with potential in pharmaceutical applications for the treatment or prevention of chronic 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




technique

The wildlife techniques manual / edited by Nova J. Silvy




technique

Laboratory techniques in plant bacteriology / Prof. S.G. Borkar

Borkar, S. G. (Suresh Govindrao), 1956- author




technique

Advances in breeding techniques for cereal crops / edited by Professor Frank Ordon and Professor Wolfgang Freidt




technique

Graph-theoretic techniques for web content mining




technique

High level techniques for leakage power estimation and optimization in VLSI ASICs




technique

Empirical mass balance calibration of analytical hydrograph separation techniques using electrical conductivity