other

Control of coupled partial differential equations [electronic resource] / Karl Kunisch [and others], editors

Basel, Switzerland ; Boston [Ma.] : Birkhäuser, [2007]




other

Contributions to nonlinear analysis [electronic resource] : a tribute to D.G. de Figueiredo on the occasion of his 70th birthday / Thierry Cazenave [and others], editors

Basel ; Boston : Birkhäuser Verlag, [2006]




other

Contemporary cryptology [electronic resource] / Dario Catalano [and others]

Basel ; Boston : Birkhäuser Verlag, [2005]




other

Microgrids and other local area power and energy systems / Alexis Kwasinski (University of Pittsburgh), Wayne Weaver (Michigan Technological University), Robert S. Balog (Texas A&M University)

Kwasinski, Alexis, 1970- author




other

Advances in energy systems : the large-scale renewable energy integration challenge / edited by Peter D. Lund (Aalto University, Finland) [and three others]




other

Samsung starts taking online pre-orders for TVs, ACs, and other electronics

Consumers pre-booking on Samsung Shop will get 15 per cent cashback when paying with HDFC cards




other

United SC removes one rape-accused,E. Bengal retains another



  • DO NOT USE West Bengal
  • India

other

With Mamata Banerjee as CM,WB moved from one dictatorship to another: Jairam Ramesh



  • DO NOT USE West Bengal
  • India

other

Lalgarh movement: Chhatradhar Mahato, five others get life in jail



  • DO NOT USE West Bengal
  • India

other

Ranaghat: Another church vandalised in an attempt to robbery



  • DO NOT USE West Bengal
  • India

other

Interview: ‘LBA opened doors to resolve other issues like Teesta’, says Bangladesh Dy High Commissioner



  • DO NOT USE West Bengal
  • India

other

Nickel alloys and high-alloy special stainless steels / Ulrich Heubner [and 7 others]




other

Another case emerges in Vizianagaram district

Migrant labourer, who returned from Vijayawada, tests positive




other

The yipping tiger and other tales from the neuropsychiatric clinic [electronic resource] / Perminder Sachdev

Sachdev, Perminder




other

You never call! you never write! [electronic resource] : a history of the Jewish mother / Joyce Antler

Antler, Joyce




other

Young brothers massacre [electronic resource] / Paul W. Barrett and Mary H. Barrett

Barrett, Paul W




other

Your boss is not your mother [electronic resource] : eight steps to eliminating office drama and creating positive relationships at work / Debra Mandel

Mandel, Debra




other

Zen and psychotherapy [electronic resource] : integrating traditional and nontraditional approaches / Christopher J. Mruk ; with Joan Hartzell

Mruk, Christopher J




other

For Kejriwal, challenging Modi in Varanasi is yet another high-stakes foray

Lacking a cohesive national campaign, Kejriwal has yet again taken recourse to insurgent tactics – projecting himself as Modi’s only rival when Congress is yet to declare its nominee for Varanasi.




other

Star Wars, 2014: BJP and Congress target each others’ biggies in candidate selection, but not consistently

By fielding one of its vice-presidents – former television soap star Smriti Irani – against Congress’s Rahul Gandhi in Amethi Lok Sabha constituency, BJP has shown it is inclined to take the electoral battle to one of two Gandhi pocket boroughs in Uttar Pradesh.




other

[ASAP] Ultrasmall Rhodium Nanozyme with RONS Scavenging and Photothermal Activities for Anti-Inflammation and Antitumor Theranostics of Colon Diseases

Nano Letters
DOI: 10.1021/acs.nanolett.9b05035




other

[ASAP] Overcoming Hypoxia-Restrained Radiotherapy Using an Erythrocyte-Inspired and Glucose-Activatable Platform

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




other

Water policy and planning in a variable changing climate : insights from the Western United States/ edited by Kathleen A. Miller [and three others]




other

Australia state of the environment 2016 overview / W.J. Jackson [and 17 others]

Jackson, W. J., author




other

Fuel property estimation and combustion process characterization: conventional fuels, biomass, biocarbon, waste fuels, refuse derived fuel, and other alternative fuels / Yen-Hsiung Kiang

Online Resource




other

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




other

Brother of Jesus, friend of God : studies in the Letter of James / Luke Timothy Johnson

Johnson, Luke Timothy, author




other

Slavery, gender, truth, and power in Luke-Acts and other ancient narratives / Christy Cobb

Cobb, Christy, author




other

Yet another HTML5 fallback strategy for IE

If you’re using HTML5 elements then you’re probably also using a JavaScript shiv to help make it possible to style those elements in versions of Internet Explorer prior to IE9. But when JavaScript is disabled the accessibility of the content may be affected in these versions of IE. This is one way to provide a more accessible fallback.

The concept is to ensure that all modern browsers are served the default style sheet(s) and that people using older versions of IE only download them if JavaScript is enabled. When JavaScript is not enabled, people using those browsers can be served either no styles at all (as Yahoo! suggests for browsers receiving C-Grade support) or simple fallback styles.

Client-side method: conditional comments

Doing this on the client-side comes at the cost of having to litter your code with proprietary conditional comments. First, it’s necessary to comment out the default style sheet(s) from versions of IE earlier than IE9. All other browsers will be able to read the file(s).

<!--[if ! lt IE 9]><!-->
<link rel="stylesheet" href="/css/default.css">
<!--<![endif]-->

For earlier versions of IE, an HTML5 shiv is included and the necessary link elements are created and added to the DOM using JavaScript. This means that when JavaScript is not enabled in IE7 or IE8 the style sheet will not be present, resulting in an unstyled HTML page. In this example, IE6 won’t be served CSS at all.

<!--[if (IE 7)|(IE 8)]>
<script src="/js/html5.js"></script>
<script>
   (function() {
      var link = document.createElement("link");
      link.rel = "stylesheet";
      link.href = "/css/default.css";
      document.getElementsByTagName("head")[0].appendChild(link);
   }());
</script>
<![endif]-->

To support multiple style sheets, an array and for loop can be used.

<!--[if (IE 7)|(IE 8)]>
<script src="/js/html5.js"></script>
<script>
   (function() {
      var css = [
         '/css/default.css',
         '/css/section.css',
         '/css/custom.css'
      ];
      var i;
      var link = document.createElement('link');
      var head = document.getElementsByTagName('head')[0];
      var tmp;

      link.rel = 'stylesheet';

      for(i = 0; i < css.length; i++){
         tmp = link.cloneNode(true);
         tmp.href = css[i];
         head.appendChild(tmp);
      }
   }());
</script>
<![endif]-->

Thanks to Remy Sharp and Mathias Bynens for helping me to improve this script. Fork it.

Rather than serving unstyled content, it may be preferable to provide some simple fallback styles. This can be done by linking to a separate style sheet wrapped in noscript tags. In this example, IE6 will always use these legacy styles while IE7 and IE8 will do so only when JavaScript is disabled.

<!--[if lt IE 9]>
<noscript>
   <link rel="stylesheet" href="/css/legacy.css">
</noscript>
<![endif]-->

You may wish to use a generic style sheet, such as “Universal IE6 CSS”, or spend a few minutes crafting your own and ensuring that the typography and colours approximate those in the default style sheet.

The complete example code is as follows:

<!--[if ! lt IE 9]><!-->
<link rel="stylesheet" href="/css/default.css">
<!--<![endif]-->

<!--[if (IE 7)|(IE 8)]>
<script src="/js/html5.js"></script>
<script>
   (function() {
      var link = document.createElement("link");
      link.rel = "stylesheet";
      link.href = "/css/default.css";
      document.getElementsByTagName("head")[0].appendChild(link);
   }());
</script>
<![endif]-->

<!--[if lt IE 9]>
<noscript>
   <link rel="stylesheet" href="/css/legacy.css">
</noscript>
<![endif]-->

Server-side method: user-agent string detection

The drawbacks of current client-side approaches to IE fallbacks is that they are IE-specific, make extensive use of conditional comments, and have to use JavaScript to create or rewrite link elements. This blog makes use of an alternative approach: server-side user-agent detection. It was inspired by Yahoo!’s Graded Browser Support strategy – created by Nate Koechley – which recommends that all CSS and JavaScript is withheld from legacy browsers (not limited to IE).

The source code in the head of this blog changes when viewed in modern browsers, IE8, and legacy browsers that are incapable of styling HTML5 elements (e.g. Firefox 2) or lack adequate CSS2.1 support (e.g. IE7).

Browsers are assumed to be capable; there is no need to update the script every time a new browser is released. Only when a browser is deemed to be severely incapable is it added to a “blacklist” and served simple styles to ensure that the accessibility of the content is maintained. This is the method I prefer, although it does require more time upfront.




other

Quick tip: git-checkout specific files from another branch

The git-checkout command can be used to update specific files or directories in your working tree with those from another branch, without merging in the whole branch. This can be useful when working with several feature branches or using GitHub Pages to generate a static project site.

The git-checkout manual page describes how the git checkout command is not just useful for switching between branches.

When <paths> or --patch are given, git checkout does not switch branches. It updates the named paths in the working tree from the index file or from a named <tree-ish> (most often a commit)…The <tree-ish> argument can be used to specify a specific tree-ish (i.e. commit, tag or tree) to update the index for the given paths before updating the working tree.

In git, a tree-ish is a way of referring to a particular commit or tree. This can be a partial sha or the branch, remote, and tag name pointers.

The syntax for using git checkout to update the working tree with files from a tree-ish is as follows:

git checkout [-p|--patch] [<tree-ish>] [--] <pathspec>…

Therefore, to update the working tree with files or directories from another branch, you can use the branch name pointer in the git checkout command.

git checkout <branch_name> -- <paths>

As an example, this is how you could update your gh-pages branch on GitHub (used to generate a static site for your project) to include the latest changes made to a file that is on the master branch.

# On branch master
git checkout gh-pages
git checkout master -- myplugin.js
git commit -m "Update myplugin.js from master"

The need to update my gh-pages branch with specific files from my master branch was how I first found out about the other uses of the checkout command. It’s worth having a read of the rest of the git-checkout manual page and experimenting with the options.




other

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




other

Strategic risk management [electronic resource] : new tools for competitive advantage in an uncertain age / Paul C. Godfrey, [and three others]

Godfrey, Paul C., author




other

Supply chain design (collection) [electronic resource] / Marc J. Schniederjans [and six others]

Schniederjans, Marc J., author




other

Tivoli Storage Manager V6.1 Technical Guide [electronic resource] / Mary Lovelace and 6 others

Lovelace, Mary




other

The truth about managing effectively (collection) [electronic resource] / Cathy Fyock [and three others]

Fyock, Catherine D., author




other

Organisational change : development and transformation / Dianne Waddell [and three others]









other

JAMA Cardiology : Simvastatin-Ezetimibe Compared With Simvastatin Monotherapy Among Patients 75 Years or Older

Interview with Richard G. Bach, MD, author of Effect of Simvastatin-Ezetimibe Compared With Simvastatin Monotherapy After Acute Coronary Syndrome Among Patients 75 Years or Older: A Secondary Analysis of a Randomized Clinical Trial, and Antonio M. Gotto, MD DPhil, author of Intensive Lipid Lowering in Elderly Patients






other

13-yr-old Braigo inventor Shubham Banerjee keen to work on other products



  • DO NOT USE Indians Abroad
  • World

other

十九世紀天主教在灣仔的慈善工作 / 夏其龍, 譚永亮, 申頌詩[and 5 others].

Edition 第 1 版.
Location Multiple Locations
Call No. BV4404.C6 X53 2016




other

Revised Goa University circular includes six other courses

The revised terms for the new academic year 2019-20 issued by Goa University on May 5 will also be applicable for the bachelor of education, bachelor of physical education, bachelor of performing art, bachelor of social work, master of education and master of performing art programmes.




other

Stress and animal welfare : key issues in the biology of humans and other animals / Donald M. Broom, Ken G. Johnson

Broom, Donald M., author




other

Cancer Chemotherapy: Basic Science to the Clinic, 2nd Edition


 

Provides a clear and accessible summary of all stages and aspects of the discovery, design, development, validation and clinical use of anticancer drugs

This new edition provides an update on the current state of the art of cancer chemotherapy and clinical practice and presents new pipeline anticancer agents and promising therapeutic strategies that are emerging alongside new breakthroughs in cancer biology. Its unique approach enables students to



Read More...




other

High-efficiency and safe sulfur-doped iron oxides for magnetic resonance imaging-guided photothermal/magnetic hyperthermia therapy

Dalton Trans., 2020, 49,5493-5502
DOI: 10.1039/D0DT00297F, Paper
Guoqiang Guan, Bo Li, Wenlong Zhang, Zhe Cui, Shu-Ang He, Rujia Zou, Xinwu Lu, Junqing Hu
Highly efficient body-clearance sulfur-doped iron oxides were developed for magnetic resonance imaging-guided photo-magnetic hyperthermia therapy.
The content of this RSS Feed (c) The Royal Society of Chemistry