las

Product :: Adobe Acrobat XI Classroom in a Book




las

Product :: Adobe Acrobat DC Classroom in a Book




las

Product :: Adobe Acrobat DC Classroom in a Book




las

Product :: Adobe Acrobat DC Classroom in a Book, 2nd Edition




las

Product :: Adobe Dimension CC Classroom in a Book (2019 Release)




las

Product :: Adobe Acrobat DC Classroom in a Book (Web Edition), 3rd Edition




las

Product :: Adobe Acrobat DC Classroom in a Book, 3rd Edition




las

Product :: Adobe Acrobat DC Classroom in a Book, 3rd Edition




las

Fundamentals of Biofuels Engineering and Technology / Cataldo De Blasio

Online Resource




las

Robust plastic product design: a holistic approach / Vikram Bhargava

Online Resource




las

Plastic part design for injection molding: an introduction / Robert A. Malloy

Online Resource




las

Laser sintering with plastics: technology, processes, and materials / Manfred Schmid

Barker Library - TP1151.L37 S3613 2018




las

Plastics handbook: the resource for plastics engineers / Erwin Baur, Tim A. Osswald, Natalie Rudolph

Online Resource




las

Thermoplastics and thermoplastic composites / Michel Biron

Online Resource




las

A class approach to hazard assessment of organohalogen flame retardants / Committee to Develop a Scoping Plan to Assess the Hazards of Organohalogen Flame Retardants, Board on Environmental Studies and Toxicology, Division on Earth and Life Studies

Online Resource




las

Superplasticizers and other chemical admixtures in concrete: proceedings of the twelfth international conference, Beijing, China, October 28-31, 2018 / editors, Jiaping Liu, Ziming Wang, Terence C. Holland, Jing Huang, Johann Plank

Barker Library - TP884.A3 I68 2018




las

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

Online Resource




las

Laser heat-mode lithography: principle and methods / Jingsong Wei

Online Resource




las

Plasticizers derived from post-consumer PET: research trends and potential applications / Ewa Langer, Krzysztof Bortel, Marta Lenartowicz-Klik, Sylwia Waskiewicz

Online Resource




las

Plastics technology: introduction and fundamentals / Christian Bonten

Online Resource




las

The letter of James / Douglas J. Moo

Moo, Douglas J., author




las

Matthew's new David at the end of exile : a socio-rhetorical study of Scriptural quotations / by Nicholas G. Piotrowski

Piotrowski, Nicholas G., author




las

Atlas of the biblical world / by Robert A. Mullins and Mark Vitalis Hoffman ; cartographer, Nick Rowland, FRGS

Mullins, Robert A. (Associate professor of Biblical Studies), author




las

Paul's divine Christology / Chris Tilling ; foreword by Douglas A. Campbell

Tilling, Chris, 1975- author




las

The last Adam : a theology of the obedient life of Jesus in the Gospels / Brandon D. Crowe

Crowe, Brandon D., author




las

Night comes : death, imagination, and the last things / Dale C. Allison Jr

Allison, Dale C., Jr., 1955- author




las

Revelations of ideology : apocalyptic class politics in early Roman Palestine / by G. Anthony Keddie

Keddie, G. Anthony, author




las

Atlas of Mammalian Chromosomes, 2nd Edition


 

THE UPDATED NEW EDITION OF THE POPULAR COLLECTION OF HIGH-RESOLUTION CHROMOSOME PHOTOGRAPHS—FOR GENETICISTS, MAMMOLOGISTS, AND BIOLOGISTS INTERESTED IN COMPARATIVE GENOMICS, SYSTEMATICS, AND CHROMOSOME STRUCTURE

Filled with a visually exquisite collection of the banded metaphase chromosome karyotypes from some 1,000 species of mammals, the Atlas of Mammalian Chromosomes offers an unabridged compendium of the state of this genomic art form. The Atlas



Read More...




las

Surface modification of a PES membrane by corona air plasma-assisted grafting of HB-PEG for separation of oil-in-water emulsions

RSC Adv., 2020, 10,17143-17153
DOI: 10.1039/D0RA02032J, Paper
Open Access
Hooman Adib, Ahmadreza Raisi
The main goal of this study is to modify a polyethersulfone (PES) membrane by grafting with hyperbranched polyethylene glycol (HB-PEG) using corona air plasma to intensify the anti-fouling properties of the prepared membrane.
The content of this RSS Feed (c) The Royal Society of Chemistry




las

First-principles calculations of electronic structure and optical and elastic properties of the novel ABX3-type LaWN3 perovskite structure

RSC Adv., 2020, 10,17317-17326
DOI: 10.1039/C9RA10735E, Paper
Open Access
Xing Liu, Jia Fu, Guangming Chen
Using first-principles calculation, the stable R3c LaWN3 as a new ABX3-type advanced perovskite structure is designed in the plan of the material genome initiative (MGI), which helps to widen the nowadays nitride perovskite material's application.
The content of this RSS Feed (c) The Royal Society of Chemistry




las

Microwave roasting of blast furnace slag for carbon dioxide mineralization and energy analysis

RSC Adv., 2020, 10,17836-17844
DOI: 10.1039/D0RA02846K, Paper
Open Access
Zike Han, Jianqiu Gao, Xizhi Yuan, Yanjun Zhong, Xiaodong Ma, Zhiyuan Chen, Dongmei Luo, Ye Wang
This paper highlights the potential of microwave roasting in solid-waste treatment and carbon dioxide storage.
The content of this RSS Feed (c) The Royal Society of Chemistry




las

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.




las

Coronavirus | 390 new cases, 24 deaths in Gujarat; clashes in Ahmedabad

Two prominent medical experts — AIIMS director Dr Randeep Guleriya and Dr. Manish Suneja — flew into Ahmedabad on Friday following instructions from the Home Minister to guide local doctors




las

Muslim villagers help Hindu woman's last rites




las

Success in selling [electronic resource] : developing a world-class sales ecosystem / Reza Sisakhti

Sisakhti, Reza, author




las

Surviving the tech storm [electronic resource] : strategy in times of technological uncertainty / Nicklas Bergman

Bergman, Nicklas, author




las

Target opportunity selling [electronic resource] : top sales performers reveal what really works / Nicholas A.C. Read

Read, Nicholas A. C




las

Tibco spotfire [electronic resource] : a comprehensive primer : create innovative enterprise-class informatics solutions using TIBCO Spotfire / Michael Phillips

Phillips, Michael, author




las

Value-driven business process management [electronic resource] : the value-switch for lasting competitive advantage / Peter Franz ; Mathias Kirchmer

Franz, Peter




las

VersaStack solution by Cisco and IBM with Oracle RAC, IBM FlashSystem V9000, IBM Spectrum Protect [electronic resource] / Jon Tate, Dharmesh Kamdar, Dong Hai Yu, Randy Watson

Tate, Jon, author




las

Wetland for water pollution control [electronic resource] / Miklas Scholz

Scholz, Miklas, author