one

[ASAP] One-Day Construction of Multiplex Arrays to Harness Natural CRISPR-Cas Systems

ACS Synthetic Biology
DOI: 10.1021/acssynbio.9b00489




one

[ASAP] Multicomponent Microscale Biosynthesis of Unnatural Cyanobacterial Indole Alkaloids

ACS Synthetic Biology
DOI: 10.1021/acssynbio.0c00038




one

[ASAP] Discovery, Structure–Activity Relationship, and Biological Activity of Histone-Competitive Inhibitors of Histone Acetyltransferases P300/CBP

Journal of Medicinal Chemistry
DOI: 10.1021/acs.jmedchem.9b02164




one

[ASAP] Discovery of Orally Bioavailable Chromone Derivatives as Potent and Selective BRD4 Inhibitors: Scaffold Hopping, Optimization, and Pharmacological Evaluation

Journal of Medicinal Chemistry
DOI: 10.1021/acs.jmedchem.0c00035




one

[ASAP] Discovery of Peptide Boronate Derivatives as Histone Deacetylase and Proteasome Dual Inhibitors for Overcoming Bortezomib Resistance of Multiple Myeloma

Journal of Medicinal Chemistry
DOI: 10.1021/acs.jmedchem.9b02161




one

[ASAP] Discovery and Structure–Activity Relationship Study of (<italic toggle="yes">Z</italic>)-5-Methylenethiazolidin-4-one Derivatives as Potent and Selective Pan-phosphatidylinositol 5-Phosphate 4-Kinase Inhibitors

Journal of Medicinal Chemistry
DOI: 10.1021/acs.jmedchem.0c00227




one

[ASAP] Exploration of the Structural Space in 4(3<italic toggle="yes">H</italic>)-Quinazolinone Antibacterials

Journal of Medicinal Chemistry
DOI: 10.1021/acs.jmedchem.0c00153




one

[ASAP] Discovery of CPI-1612: A Potent, Selective, and Orally Bioavailable EP300/CBP Histone Acetyltransferase Inhibitor

ACS Medicinal Chemistry Letters
DOI: 10.1021/acsmedchemlett.0c00155




one

China’s New Large Solar-Powered Drone Reaches 20,000 Meters in Altitude

China’s first domestically designed large solar-powered unmanned plane reached above 20,000 meters in altitude on its test flight in the country’s northwest regions recently. The drone was developed by the China Academy of Aerospace Aerodynamics (CAAA), it’s developers kept the exact size of the drone as a secret, but it is believed to be about 14 …

The post China’s New Large Solar-Powered Drone Reaches 20,000 Meters in Altitude appeared first on LatestSolarNews.




one

Nesting Components

Using CSS components is somewhat straightforward. We add the markup and give it the component’s class name and all is good. Where it gets trickier is when we try to nest components. And when they need to be tweaked based on the context. Where should the styles be defined? It’s a question I’ve been asking myself a few times and what this article is trying to explore.

Just to clarify before we start, with “CSS components”, I mean the small building blocks that get used to assemble a website or app. Like buttons, inputs, navs, headers etc. Some also call them modules or patterns. Also I’m using the SUIT naming convention in the examples below, but any other convention would be fine as well. And just a heads, there isn’t some awesome solution at the end that solves all the problems. It’s just me whining most of the time.

Ok, best is to go straight into it and look at an example. Let’s say we have a Header component where we would like to add a Button component inside.

<header class=“Header”>
  <button class=“Button”>Button</button>
</header>

Now because the Button is inside the Header, we want to make the Button a bit smaller than it would be on its own.

Here a few approaches how to do that:

Option 1 - Descendant selector

Maybe the most common way is to use a descendant selector to change the font-size whenever a Button is inside a Header.

.Header .Button {
  font-size: .75em;
}

This works great but the question is, where should this rule be added? We probably split our components into separate files, so is it in header.scss or in button.scss? In other words, should the Header know about what other components might get nested or should the Button know in what environment it will get placed?

But wait, the point of creating components is to separate them, make them modular. Each component should be kept isolated and shouldn’t know about other components. So we can make changes, rename or remove them without having to check if they might get used somewhere else.

Option 2 - Variations

Another way is to create variations. We add a .Button--small class that we can use whenever we would like the button to be smaller without having to worry about ancestors.

.Button--small {
  font-size: .75em;
}
<header class=“Header”>
  <button class=“Button Button--small>Button</button>
</header>

This works great too, but could get out of hand quickly. What do you do if at some point you want the font-size to be .9em? Create yet another variation? Button--justALittleSmaller. As the project keeps growing, the number of variations will too. We will start to loose sight where they actually get used and we’re not sure anymore if we can change a variation or if it will have side effects in some other place. We could create “contextual” variations like Button--header or Button--footer, but then we’re back at the beginning and could just as well use “descendant selectors”.

Same goes for using states. .Button.is-small should only be used if there is a change in state and not to fit a certain context.

Option 3 - Adopted Child

I can’t remember where I read about this approach but somehow it stuck with me. I also forgot how it was called. So for now I’ll just call it “Adopted Child”.

Let’s switch it around and look at it from the Header’s perspective. What would we do if we wouldn’t know what the components are called that might get nested? But we know that we want to make them a bit smaller. Well, we probably would create a generic .Header-item class and use it like this:

.Header-item {
  font-size: .75em;
}
<header class=“Header”>
  <div class=“Header-item”></div>
</header>

Ok, that gets us a bit closer. Now, it’s probably strange saying it like that when talking about CSS, but what would we do if we don’t want to create an own child, but still have one. Right, we could adopt one. In our example we adopt a Button component as our own child. We didn’t create it, but now we can tweak.. erm.. I mean “raise” it like it’s our own:

// born in button.scss
.Button {
  font-size: 1em;
}

// raised in header.css
.Header .Header-item {
  font-size: .75em;
}
<header class=“Header”>
  <button class=“Header-item Button>Button</button>
</header>

It is a bit uncommon that the same HTML element shares classes from two different components. And it’s not without any risks. More about them later. But I really like this approach because it keeps the components independent without having to know about each other.

Another nice thing is that if we want to add other components to the Header that also need the same adjustments, we can reuse the same Header-item class, like for example on a text Input.

<header class=“Header”>
	<input class=“Header-item Input>
  <button class=“Header-item Button>Button</button>
</header>

Ok, about those risks. Well, depending on what properties we wanna change, it might not always be ideal. For example, because the Button already had font-size defined, we had to increase specificity by using .Header .Header-item. But that would also override variations like .Button--small. That might be how we want it, but there are also situations where we’d like the variation to always be “stronger”. An example would be when changing colors. When the color of Buttons should be different inside a Header, but not when its a variation, like .Button—primary. Yeah, we could take a look inside button.scss or our style-guide, but remember our goal.. we actually don’t want to make decisions by looking how other components are made.

So, as a general rule, don’t use “adopted children” for any properties that are theme related and only where you can be sure that you want to override them all the time. Like for layout/size related properties or adjusting the position.

More options?

There are some more ways to do contextual styling that came to mind. I’ll just mention them briefly for completeness, but think the 3 above are better suited.

Option 4 - We could use a preprocessor to extend an existing component. In our example it would be a clone of the Button with some tweaks added and used as a new child component .Header-button. Now we only rely that the Button exists in the source, but don’t have to worry about other contexts. Downside is inflating our CSS output. As well as having to remember lots of new child component classes.

Option 5 - We could create a utility class like .u-small. It’s similar to variations, but not scoped to a single component and could be used for other components as well. And for that reason it becomes very risky to ever change later.

Option 6 - And of course, we could use inline styles. But I would leave that to JavaScript only.


So after all that, which is best? I’m afraid there isn’t a clear winner. It would be nice to keep it consistent with a single approach throughout the entire project, but I guess we just have to decide on a per case basis:

  1. Descendant selectors if we can expect that components don’t change much. Like when using a UI Kit or library.
  2. Variations if it makes sense that a component has different versions that get reused anyways, and not just for a specific context.
  3. Adopted Child for layout, sizing, positioning or where we are sure to always want to override a property. Also for changing multiple child components at once.
  4. Extending when we truly want the components to be separated and don’t mind inflating the CSS output.
  5. Utilities for very specific things, that once the class is defined, it will never change, like clearing floats.
  6. Inline styles if it needs to be dynamically added with JavaScript.

As said at the beginning, I haven’t found a “fits all” solution and maybe the conclusion is: Try to keep contextual styling to a minimum.

Updates

The “Adopted Child” approach is called “Mixes” in BEM. Here some more infos.


SUIT also recommends using “Adopted Child/Mixes”. But also another option:

Option 7 - Adding a wrapper element. It’s the <div class="Excerpt-wrapButton"> in that example. I think it works great in most cases. But for example when using Flexbox, because it has this parent/child relationship, adding an extra wrapper in between would break it. And then you might still need to set the width of the wrapped component to 100% or so. Anyways, this is a great addition. Thanks Pablo in the comments.


Option 8 - Single Purpose Classes. It’s where every class has only a single property. It’s somewhere between utilities (Option 5) and inline styles (Option 6). Atomic CSS and Tachyons use this approach. I haven’t used them on a real project, but just from looking at it, the concerns are similar to the ones from utilities. If you want to change the value in a SP class, it seems unpredictable. Because in another place (where that same class is used), you might want to keep the current value. So you would have to first check if the change has any unwanted effects somewhere else.




one

DuoTone themes

Double-hue syntax themes for Atom.

DuoTone themes use only 2 hues (7 shades in total). It tones down less important parts (like punctuation and brackets) and highlights only the important ones. This leads to a more calm color scheme, but still lets you find the stuff you’re looking for.

A big thanks goes to @braver who did most of the initial language support.

Color variations

And here some more color variations created by other theme authors.




one

Women, art and money in late Victorian and Edwardian England: the hustle and the scramble / Maria Quirk

Rotch Library - N8354.Q57 2019




one

Dorothy Iannone: a cookbook / Dorothy Iannone ; [edited by Clément Dirié]

Rotch Library - N6537.I26 A4 2018




one

The M.V.M. Cappellin glassworks and the young Carlo Scarpa: 1925-1931 / edited by Marino Barovier and Carla Sonego

Rotch Library - NK5205.S28 A4 2018




one

Padiglione Indonesiano all Biennale di Venezia 2019 / team artistico, Syagini Ratna Wulan, Handiwirman Saputra, artisti ; Asmudjo J. Irianto, Yacobus Ari Respati, curatore

Rotch Library - N6488.I8 V433 2019 I5




one

Isuma: padiglione Canada, May 11-November 29, 2019

Rotch Library - N6488.I8 V433 2019 C2




one

T.C. Cannon: at the edge of America / edited by Karen Kramer ; with contributions by heather ahtone, Sherwin Bitsui, Caitlin Cooper, Frank Buffalo Hyde, Trevor Fairbrother, Santee Frazier, Joy Harjo, Joan Naviyuk Kane, Karen Kramer, Deana McCloud, America

Rotch Library - NX512.C36 A4 2018




one

Yves Netzhammer: Installationen 2008-2018 / Gesamtverantwortung, Katharina Epprecht ; Hrsg. von Jennifer Burkard ; Autoren, Claudia Bader [and four others]

Rotch Library - N7153.N47 A4 2018




one

Studies in Armenian art: collected papers / by Nira Stone ; edited by Michael E. Stone, Asya Bereznyak

Rotch Library - N7274.S76 2019




one

Casa Wabi / Tadao Ando, Gloria Cabral and Solano Benítez, Damián Comas for Jorge Ambrosi and Gabriela Etchegaray, Dakin Hart, Alberto Kalach, Kengo Kuma, Alfonso Quiñones, Alberto Ríos de la Rosa, Álvaro Siza, Bosco Sodi, Carla S

Rotch Library - N8520.A53 2018




one

Everyone's a critic: the ultimate cartoon book by the world's greatest cartoonists / Bob Eckstein, editor

Rotch Library - NC1426.E94 2020




one

Art after money, money after art: creative strategies against financialization / Max Haiven

Rotch Library - N8353.H35 2018




one

Leonardo da Vinci: the 100 milestones / Martin Kemp

Rotch Library - N6923.L33 K449 2019




one

Algorithms for Functional Programming / by John David Stone

Stone, John David, author




one

Nine coins: Nueve monedas / by Carlos Pintado ; translated from Spanish by Hilary Vaughn Dobel ; with an introduction by Richard Blanco

Hayden Library - PQ7392.P58 N564 2015




one

La historia de mis dientes / Valeria Luiselli ; ilustraciones de Daniela Franco

Hayden Library - PQ7298.422.U37 H57 2014




one

Campeón gabacho / Aura Xilonen

Hayden Library - PQ7298.434.I46 C36 2015




one

The gringo champion / Aura Xilonen ; translated from the Spanish by Andrea Rosenberg

Hayden Library - PQ7298.434.I46 C3613 2017




one

Lyra mínima: del cancionero medieval al cancionero tradicional moderno / Aurelio González, Mariana Masera, María Teresa Miaja (editores)

Online Resource




one

Borges: desesperaciones aparentes y consuelos secretos / Rafael Olea Franco, editor

Online Resource




one

Building Blocks: How One State Is Working to Measure and Improve Schools’ Contributions to Early Learning

To better understand its schools’ contributions to students’ learning in the first four grades, the Maryland State Department of Education partnered with the Regional Educational Laboratory Mid-Atlantic to explore constructing a school-level growth measure for kindergarten to grade 3.




one

Pourquoi les homophones?


Ask anyone to define “homophone” and chances are they will a) look at you as if you have fallen out of a tree, and, b) be unable to give you an answer. Linguistic terms are generally consigned to the area of the brain housing other nuggets of redundant school knowledge such as the complete noble gases, a conjugation of être and the Fibonacci sequence. We all know that we should remember such facts (if only for vital pub quiz answers) but most of us never do. The homophone is however rather useful and I intend to explain why. Shakespeare would never have arisen to the dizzy heights of fame had he not known how to wield a homophone or two. A virtuoso of the sixteenth century pun, he paved the way for this linguistic conceit to make its way into every corner of modern literature. The oft-ignored part of the Cobbler in Julius Caesar gives us the best example, ‘I am but as you would say a cobbler…a mender of bad soles.’ Little did the Cobbler know how many thousands of students would ponder this very phrase, dutifully recording its dual meaning. Years later, the very same people emblazon on-trend phrases such as “Give peas a chance” on T-Shirts and walls, unsure as to “the exact term” for such hilarity but confident in its linguistic prowess.

Now that we have got our heads around the homophone in English, imagine what happens when you translate into French…poetry. Cynics amongst you may think it cannot be done but in 1967 a little book named Mots d’heures: gousses, rames was published to the glee of dinner party guests across the land. Luis d’Antin van Rooten transformed forty well-known English nursery rhymes into French poetry all thanks to the humble homophone. The trick of the poems was to read phonetically in the manner of Molière, and slowly but surely the English rhyme would emerge. Here’s an example:

Lille beau pipe
Ocelot serre chypre
En douzaine aux verres tuf indemne
Livre de melons un dé huile qu’aux mômes
Eau à guigne d’air telle baie indemne.

Imagine the excitement when Blue Door decided to re-publish this forgotten classic much to the cheer of van Rooten devotees. Published in time for Christmas, this collection of j’aime se will have your sides splitting quicker than you can say ‘Vive les homophones!’




one

Digital Libraries [electronic resource] : International Collaboration and Cross-Fertilization 7th International Conference on Asian Digital Libraries, ICADL 2004, Shanghai, China, December 13-17, 2004. Proceedings / edited by Zhaoneng Chen, Hsinchun Chen

Berlin, Heidelberg : Springer Berlin Heidelberg, 2005




one

I William Zartman: a pioneer in conflict management and area studies: essays on contention and governance / I. William Zartman ; with a foreword by Francis Deng and a preface by Ellen Laipson

Online Resource




one

Capitalism, hegemony and violence in the age of drones / Norman Pollack

Online Resource




one

La carrera de relaciones internacionales en México: orígenes y situación actual / Luis Ochoa Bilbao

Online Resource




one

No fly zones and international security: politics and strategy / Stephen Wrage and Scott Cooper

Dewey Library - JZ6368.W73 2019




one

Justice and Peace: The Role of Justice Claims in International Cooperation and Conflict / Caroline Fehl, Dirk Peters, Simone Wisotzki, Jonas Wolff, editors

Online Resource




one

Construcción de territorios de paz: subjetivaciones, resistencias ciudadanas y pedagogías para la noviolencia / Doctorado en Estudios Sociales (UDFJC), Componente Escuela, Currículo y Pedagogía (IDEP) ; Claudia Luz Piedrahita Echand

Online Resource




one

The Story of International Relations, Part One: Cold-Blooded Idealists / Jo-Anne Pemberton

Online Resource




one

War-Time Care Work and Peacebuilding in Africa: the Forgotten One / Fatma Osman Ibnouf

Online Resource




one

The Oxford handbook of global policy and transnational administration / edited by Diane Stone, University of Canberra and University of Warwick and Kim Moloney, Murdoch University

Dewey Library - JZ4839.O94 2019




one

Proxy war: the least bad option / Tyrone L. Groh

Dewey Library - JZ6385.G76 2019




one

In person: reenactment in postwar and contemporary cinema / Ivone Margulies

Hayden Library - PN1995.9.R3 M36 2019




one

Re-envisaging the first age of cinematic horror, 1896-1934: quanta of fear / David Annwn Jones

Hayden Library - PN1995.9.H6 J66 2018




one

Kin: an extraordinary Australian filmmaking family: including Freda Glynn, Warwick Thornton, Erica Glynn, Dylan River, Tanith Glynn-Maloney / with contributions from Deborah Mailman [and twenty others] ; edited by Amanda Duthie

Hayden Library - PN1998.2.K45 2018




one

The cinema of Oliver Stone: art, authorship and activism / Ian Scott and Henry Thompson

Online Resource




one

Science fiction cinema and 1950s Britain: recontextualising cultural anxiety / Matthew Jones

Online Resource




one

Queer cinema in America: an encyclopedia of LGBTQ films, characters, and stories / Aubrey Malone

Online Resource




one

Could you survive the New Stone Age? : an interactive prehistoric adventure / by Thomas Kingsley Troupe ; illustrated by Juan Calle

Troupe, Thomas Kingsley, author