fix

BCCI in fix over Indo-Pak tie




fix

Strain induced rich planar defects in heterogeneous WS2/WO2 enable efficient nitrogen fixation at low overpotential

J. Mater. Chem. A, 2020, Advance Article
DOI: 10.1039/C9TA13812A, Paper
Ying Ling, Farhad M. D. Kazim, Shuangxiu Ma, Quan Zhang, Konggang Qu, Yangang Wang, Shenglin Xiao, Weiwei Cai, Zehui Yang
Incorporation of WO2 to WS2 nanosheets can efficiently suppress the competitive hydrogen evolution reaction (HER) due to the reduction of edge defects and create new planar defects at heterointerfaces for nitrogen reduction reaction (NRR).
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




fix

Shatter and glide: for string trio and fixed media (2013) / Eric Chasalow

STACK SCORE Mu pts C3872 sha




fix

Roads to reference: an essay on reference fixing in natural language / Mario Gómez-Torrente

Online Resource




fix

Unemployment Insurance Reform: Fixing a Broken System / Stephen A. Wandner, editor

Online Resource




fix

Why do so many incompetent men become leaders?: (and how to fix it) / Tomas Chamorro-Premuzic

Dewey Library - HD6060.6.C47 2019




fix

Babri demolition case: SC fixes August 31 as new deadline for judgment

The top court asked special judge S K Yadav to control the proceedings in accordance with law so that inordinate delay that is beyond the time-frame is no longer breached




fix

You can fix your brain: just 1 hour a week to the best memory, productivity, and sleep you've ever had / Dr. Tom O'Bryan

Hayden Library - QP376.O37 2018




fix

[ASAP] Fe Single-Atom Catalyst for Visible-Light-Driven Photofixation of Nitrogen Sensitized by Triphenylphosphine and Sodium Iodide

ACS Catalysis
DOI: 10.1021/acscatal.0c00920




fix

Preventing augmented-reality overload, fixing bone with tiny bubbles, and studying human migrations

This week we have stories on blocking dangerous or annoying distractions in augmented reality, gene therapy applied with ultrasound to heal bone breaks, and giving robots geckolike gripping power with Online News Editor David Grimm. Deputy News Editor Elizabeth Culotta joins Sarah Crespi to discuss a special package on human migrations—from the ancient origins of Europeans to the restless and wandering scientists of today. Listen to previous podcasts. Download the show transcript. Transcripts courtesy of Scribie.com. [Image: Public domain; Music: Jeffrey Cook]




fix

Blind spots: how unhealthy corridors harm communities and how to fix them / primary author, Heather Zaccaro

Rotch Library - HE308.Z33 2019




fix

Coronavirus: Football teams will be allowed to use five substitutes to deal with fixture backlog

The International Football Association Board said in a statement that it had agreed to a proposal by Fifa for a temporary rule change to protect players.




fix

Fixed it : violence and the representation of women in the media / Jane Gilmore

Gilmore, Jane, author




fix

A new micro clearfix hack

The clearfix hack is a popular way to contain floats without resorting to using presentational markup. This article presents an update to the clearfix method that further reduces the amount of CSS required.

Demo: Micro clearfix hack

Known support: Firefox 3.5+, Safari 4+, Chrome, Opera 9+, IE 6+

The “micro clearfix” method is suitable for modern browsers and builds upon Thierry Koblentz’s “clearfix reloaded”, which introduced the use of both the :before and :after pseudo-elements.

Here is the updated code (I’ve used a shorter class name too):

/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
    *zoom: 1;
}

This “micro clearfix” generates pseudo-elements and sets their display to table. This creates an anonymous table-cell and a new block formatting context that means the :before pseudo-element prevents top-margin collapse. The :after pseudo-element is used to clear the floats. As a result, there is no need to hide any generated content and the total amount of code needed is reduced.

Including the :before selector is not necessary to clear the floats, but it prevents top-margins from collapsing in modern browsers. This has two benefits:

  • It ensures visual consistency with other float containment techniques that create a new block formatting context, e.g., overflow:hidden
  • It ensures visual consistency with IE 6/7 when zoom:1 is applied.

N.B.: There are circumstances in which IE 6/7 will not contain the bottom margins of floats within a new block formatting context. Further details can be found here: Better float containment in IE using CSS expressions.

The use of content:" " (note the space in the content string) avoids an Opera bug that creates space around clearfixed elements if the contenteditable attribute is also present somewhere in the HTML. Thanks to Sergio Cerrutti for spotting this fix. An alternative fix is to use font:0/0 a.

Legacy Firefox

Firefox < 3.5 will benefit from using Thierry’s method with the addition of visibility:hidden to hide the inserted character. This is because legacy versions of Firefox need content:"." to avoid extra space appearing between the body and its first child element, in certain circumstances (e.g., jsfiddle.net/necolas/K538S/.)

Alternative float-containment methods that create a new block formatting context, such as applying overflow:hidden or display:inline-block to the container element, will also avoid this behaviour in legacy versions of Firefox.




fix

Using canvas to fix SVG scaling in Internet Explorer

Internet Explorer 9–11 suffer from various bugs that prevent proper scaling of inline SVG’s. This is particularly problematic for SVG icons with variable widths. This is the canvas-based hack I’ve been using to work around the issue.

A popular way to use SVG icons is to generate a spritemap of SVG symbol‘s that you then reference from elsewhere in a document. Most articles on the topic assume your icon dimensions are uniformly square. Twitter’s SVG icons (crafted by @sofo) are variable width, to produce consistent horizontal whitespace around the vectors.

Most browsers will preserve the intrinsic aspect ratio of an SVG. Ideally, I want to set a common height for all the icons (e.g., 1em), and let the browser scale the width of each icon proportionally. This also makes it easy to resize icons in particular contexts – just change the height.

Unfortunately, IE 9–11 do not preserve the intrinsic aspect ratio of an inline SVG. The svg element will default to a width of 300px (the default for replaced content elements). This means it’s not easy to work with variable-width SVG icons. No amount of CSS hacking fixed the problem, so I looked elsewhere – and ended up using canvas.

canvas and aspect ratios

A canvas element – with height and width attributes set – will preserve its aspect ratio when one dimension is scaled. The example below sets a 3:1 aspect ratio.

<canvas height="1" width="3"></canvas>

You can then scale the canvas by changing either dimension in CSS.

canvas {
  display: block;
  height: 2rem;
}

Demo: proportional scaling of canvas.

Fixing SVG scaling in IE

This makes canvas useful for creating aspect ratios. Since IE doesn’t preserve the intrinsic aspect ratio of SVG icons, you can use canvas as a shim. A canvas of the correct aspect ratio provides a scalable frame. The svg can then be positioned to fill the space created by this frame.

The HTML is straightforward:

<div class="Icon" role="img" aria-label="Twitter">
  <canvas class="Icon-canvas" height="1" width="3"></canvas>
  <svg class="Icon-svg">
    <use fill="currentcolor" xlink:href="#icon-twitter"></use>
  </svg>
</div>

So is the CSS:

.Icon {
  display: inline-block;
  height: 1em; /* default icon height */
  position: relative;
  user-select: none;
}

.Icon-canvas {
  display: block;
  height: 100%;
  visibility: hidden;
}

.Icon-svg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

Setting the canvas height to 100% means it will scale based on the height of the component’s root element – just as SVG’s do in non-IE browsers. Changing the height of the Icon element scales the inner SVG icon while preserving its 3:1 aspect ratio.

Demo: proportional scaling of svg in IE.

Creating an Icon component

The hack is best added to (and eventually removed from) an existing icon component’s implementation.

If you’re generating and inlining an SVG spritemap, you will need to extract the height and width (usually from viewBox) of each of your icons during the build step. If you’re already using the gulp-svgstore plugin, it supports extracting metadata.

Those dimensions need to be set on the canvas element to produce the correct aspect ratio for a given icon.

Example React component (built with webpack):

import iconData from './lib/icons-data.json';
import React from 'react';
import './index.css';

class Icon extends React.Component {
  render() {
    const props = this.props;
    const height = iconData[props.name.height];
    const width = iconData[props.name.width];

    // React doesn't support namespaced attributes, so we have to set the
    // 'use' tag with innerHTML
    const useTag = `<use fill="currentcolor"
                      xlink:href="#icon-${props.name}">
                    </use>`;

    return (
      <span className="Icon">
        <canvas className="Icon-canvas"
          height={height}
          width={width}
        />
        <svg className="Icon-svg"
          dangerouslySetInnerHTML={{__html: useTag}}
          key={props.name}
        />
      </span>
    );
  }
}

export default Icon;

When I introduced this hack to a code base at Twitter, it had no impact on the the rest of the team or the rest of the code base – one of the many benefits of a component-based UI.




fix

Why American elections are flawed (and how to fix them) [electronic resource] / Pippa Norris

Norris, Pippa, author




fix

Dual-fixations of europium cation and TEMPO species on metal-organic frameworks for aerobic oxidation of alcohols

Dalton Trans., 2020, Accepted Manuscript
DOI: 10.1039/D0DT01324B, Paper
Seongwoo Kim, Jooyeon Lee, Sungeun Jeoung, Hoi Ri Moon, Min Kim
The efficient and selective aerobic oxidation of alcohols has been investigated with judicious combinations of europium-incorporated and/or TEMPO ((2,2,6,6-tetramethylpiperidin-1-yl)oxyl)-functionalized zirconium-based porous metal-organic frameworks (MOFs). Although MOFs are well-known catalytic platform...
The content of this RSS Feed (c) The Royal Society of Chemistry




fix

Umar Akmal didn’t show remorse for failing to report fixing approaches, says PCB disciplinary panel head

Justice (retired) Fazal-e-Miran Chauhan submitted his detailed judgement on the case to the Pakistan Cricket Board, which made it public on Friday.




fix

City limits: why Australia's cities are broken and how we can fix them / Jane-Frances Kelly and Paul Donegan

Online Resource




fix

The urban fix: resilient cities in the war against climate change, heat islands and overpopulation / Doug Kelbaugh

Rotch Library - HT241.K45 2019




fix

Need cash? Loan against fixed deposits is cheaper than a personal loan

Here is how the rares of loan against fixed offered by various banks stack up




fix

Effects of a Fixed-Dose Combination Strategy on Adherence and Risk Factors in Patients With or at High Risk of CVD: The UMPIRE Randomized Clinical Trial

Interview with Simon Thom, MB,BS, MD, author of Effects of a Fixed-Dose Combination Strategy on Adherence and Risk Factors in Patients With or at High Risk of CVD: The UMPIRE Randomized Clinical Trial




fix

Characterization of nitrogen-fixing bacteria from Phaseolus vulgaris L. in Kenya / by George Mutegi Mwenda

Mwenda, George Mutegi, author




fix

Nonlinear control of fixed-wing UAVs with time-varying and unstructured uncertainties Michail G. Michailidis, Kimon P. Valavanis, Matthew J. Rutherford

Online Resource




fix

How to fix your academic writing trouble : a practical guide / Inger Mewburn, Katherine Firth and Shaun Lehmann

Mewburn, Inger, author




fix

Bimetallic scorpionate-based helical organoaluminum complexes for efficient carbon dioxide fixation into a variety of cyclic carbonates

Catal. Sci. Technol., 2020, Advance Article
DOI: 10.1039/D0CY00593B, Paper
Marta Navarro, Luis F. Sánchez-Barba, Andrés Garcés, Juan Fernández-Baeza, Israel Fernández, Agustín Lara-Sánchez, Ana M. Rodríguez
The binuclear aluminum complexes [AlR22-NN';κ2-NN')AlR2] with TBAB/PPNCl behave as excellent systems for cyclic carbonate formation from CO2 with challenging epoxides.
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




fix

Extend ::before background in fixed element

Hi!

Does anyone have any idea how I can make the background gradient to continue when scrolling?

Code: https://jsfiddle.net/Lfpb8woa/1/

Thanks in advance!




fix

SBI Cards & Payment IPO price band fixed at Rs 750-755, opens on March 2

The second largest card issuer SBI Cards & Payment Services, which is hitting the primary market with a Rs 9,000-crore initial public offering, has set the price band for the share sale at Rs 750-755. The IPO, opening on March 2 and closing on 4, comprises fresh issue of equity shares aggregating to Rs 500 crore and an offer for sale where promoters will offload nearly 13 crore shares. Promoters SBI and Carlyle Group will offload 3.73 crore shares and 9.32 shares respectively. SBI holds 74 per cent in SBI Card and the rest by the Carlyle Group and they will pare their stakes by 4 per cent and 10 per cent respectively, SBI Managing Director Dinesh Khara told reporters kicking of the IPO roadshow. SBI Card's market share in terms of the number of credit cards outstanding is 18 per cent. The pure-play credit card company's gross NPA stood at 2.47 per cent in December 2019 compared to 2.44 per cent in March 2019 and 2.83 per cent in March 2018, he said. SBI Card managing director and




fix

SBI Cards IPO: Price band fixed in the range of Rs 750 to Rs 755 per share

At issue size of Rs 10,355 cr, the offering will be Asia's biggest this year and fourth-largest domestically




fix

Fixed-point “blasting” triggered by second near-infrared window light for augmented interventional photothermal therapy

Biomater. Sci., 2020, Advance Article
DOI: 10.1039/D0BM00372G, Paper
Yongbin Cao, Boshu Ouyang, Xiaowei Yang, Qin Jiang, Lin Yu, Shun Shen, Jiandong Ding, Wuli Yang
Tumors were effectively destroyed by a mild photothermal effect and the subsequent gas mechanical damage triggered by NIR-II light.
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




fix

Arbor vitae crucifixae jesu by Ubertino de Casale




fix

Arbor vitae crucifixae jesu by Ubertino de Casale




fix

Ornamental light fixture at the Columbia Restaurant




fix

A comparative simulation of Type I error and Power of Four tests of homogeneity of effects for random- and fixed-effects models of meta-analysis




fix

Detection and quantification of Karenia brevis using carbon fixation gene expression analysis




fix

Johnston Fixture Company on West Cass Street




fix

Profiles of U.S. urbanized areas with fixed guideway systems




fix

A study of coordination of local and regional public bus transit and fixed guideway transportation systems in Florida




fix

Manatee County Transit : fixed route service on-board survey results : appendix B




fix

Manatee County Transit : fixed-route ridership analysis: appendix A




fix

Research and evaluation of the potential for privatization of LYNX fixed route services final report




fix

Crucifixion with Stories of Passion and Holy Figures (detail)




fix

Crucifixion with Stories of Passion and Holy Figures




fix

Crucifixion (Panel from the Pisa Altar) (detail)




fix

Crucifixion (Panel from the Pisa Altar) (detail)




fix

Crucifixion (Panel from the Pisa Altar) (detail)




fix

Crucifixes




fix

Crucifixes & Wall Inscriptions




fix

Crucifixes




fix

Crucifixes & Wall Inscriptions