bra

Fundamental modeling of membrane systems: membrane and process performance / edited by Patricia Luis

Online Resource




bra

Injection molding advanced troubleshooting guide / Randy Kerkstra, Steve Brammer

Barker Library - TP1151.R43 K47 2018




bra

Re-creating nature: science, technology, and human values in the twenty-first century / James T. Bradley

Hayden Library - TP248.2.B73 2019




bra

Coulson and Richardson's chemical engineering. volume editors, Raj Chhabra, Madivala G. Basavaraj

Online Resource




bra

Abraham our father : Paul and the ancestors in postcolonial Africa / Israel Kamudzandu

Kamudzandu, Israel, author




bra

The Pastoral Epistles / Gerald L. Bray

Bray, Gerald Lewis, author




bra

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

Crowe, Brandon D., author




bra

Superior performance of surface-treated NaX@Pebax-1657 membranes for O2/N2 separation

RSC Adv., 2020, 10,17061-17069
DOI: 10.1039/D0RA02255A, Paper
Open Access
Mohammad Salehi Maleh, Ahmadreza Raisi
In this study, the performances of mixed matrix composite membranes (MMCMs) containing surface-treated NaX nanocrystals (ST-NaX-NCs) were experimentally and theoretically investigated for O2/N2 separation.
The content of this RSS Feed (c) The Royal Society of Chemistry




bra

An ionic diode based on a spontaneously formed polypyrrole-modified graphene oxide membrane

RSC Adv., 2020, 10,17079-17084
DOI: 10.1039/D0RA01145B, Paper
Open Access
Rifeng Luo, Tianliang Xiao, Wenping Li, Zhaoyue Liu, Yao Wang
We described an ionic diode based on polypyrrole-modified graphene oxide membrane, which was prepared by a spontaneous oxidation polymerization of pyrrole monomers.
The content of this RSS Feed (c) The Royal Society of Chemistry




bra

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




bra

Retraction: Effect of temperature and large guest molecules on the C–H symmetric stretching vibrational frequencies of methane in structure H and I clathrate hydrates

RSC Adv., 2020, 10,16904-16904
DOI: 10.1039/D0RA90048F, Retraction
Open Access
  This article is licensed under a Creative Commons Attribution 3.0 Unported Licence.
Go Fuseya, Satoshi Takeya, Akihiro Hachikubo
The content of this RSS Feed (c) The Royal Society of Chemistry




bra

A superhydrophilic bilayer structure of a nylon 6 nanofiber/cellulose membrane and its characterization as potential water filtration media

RSC Adv., 2020, 10,17205-17216
DOI: 10.1039/D0RA01077D, Paper
Open Access
Ahmad Fauzi, Dian Ahmad Hapidin, Muhammad Miftahul Munir, Ferry Iskandar, Khairurrijal Khairurrijal
The SEM image of (a) cellulose membrane and (b) the bilayer structure of a nylon 6 nanofibrous membrane on a cellulose membrane as water filter media.
The content of this RSS Feed (c) The Royal Society of Chemistry




bra

Wrist flexible heart pulse sensor integrated with a soft pump and a pneumatic balloon membrane

RSC Adv., 2020, 10,17353-17358
DOI: 10.1039/D0RA02316G, Paper
Open Access
Takafumi Yamaguchi, Daisuke Yamamoto, Takayuki Arie, Seiji Akita, Kuniharu Takei
Wearable and flexible heart pulse sensor is proposed to monitor the detailed pulse signal from a wrist stably and reliably by integrating a tactile pressure sensor and a soft pneumatic balloon operated by a soft pump.
The content of this RSS Feed (c) The Royal Society of Chemistry




bra

Effect of temperature and large guest molecules on the C–H symmetric stretching vibrational frequencies of methane in structure H and I clathrate hydrates

RSC Adv., 2020, 10,17473-17478
DOI: 10.1039/D0RA02748K, Paper
Open Access
  This article is licensed under a Creative Commons Attribution 3.0 Unported Licence.
Go Fuseya, Satoshi Takeya, Akihiro Hachikubo
Temperature effect on C–H symmetric stretching frequencies of CH4 in water cages of sI and sH clathrate hydrates were clarified.
The content of this RSS Feed (c) The Royal Society of Chemistry




bra

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.




bra

Making SVG icon libraries for React apps

Using SVG is currently the best way to create icon libraries for apps. Icons built with SVG are scalable and adjustable, but also discrete, which allows them to be incrementally loaded and updated. In contrast, icons built as fonts cannot be incrementally loaded or updated. This alone makes SVG icons the better choice for high-performance apps that rely on code-splitting and incremental deploys.

This post describes how to make a package of React components from a library of SVG icons. Although I’m focusing on React, making any other type of package is also possible. At Twitter I used the approach described here to publish the company’s SVG icon library in several different formats: optimized SVGs, plain JavaScript modules, React DOM components, and React Native components.

Using the icons

The end result is a JavaScript package that can be installed and used like any other JavaScript package.

yarnpkg add @acme/react-icons

Each icon is available as an individually exported React component.

import IconCamera from '@acme/react-icons/camera';

This allows your module bundler to package only the icons that are needed, and icons can be efficiently split across chunks when using code-splitting. This is a significant advantage over icon libraries that require fonts and bundle all icons into a single component.

// entire icon library is bundled with your app
import Icon from '@acme/react-icons';
const IconCamera = <Icon name='camera' />;

Each icon is straightforward to customize (e.g., color and dimensions) on a per-use basis.

import IconCamera from '@twitter/react-icons/camera';
const Icon = (
  <IconCamera
    style={{ color: 'white', height: '2em' }}
  />
);

Although the icons render to SVG, this is an implementation detail that isn’t exposed to users of the components.

Creating components

Each React component renders an inline SVG, using path and dimensions data extracted from the SVG source files. A helper function called createIconComponent means that only a few lines of boilerplate are needed to create a component from SVG data.

import createIconComponent from './utils/createIconComponent';
import React from 'react';
const IconCamera = createIconComponent({
  content: <g><path d='...'></g>,
  height: 24,
  width: 24
});
IconCamera.displayName = 'IconCamera';
export default IconCamera;

This is an example of what the createIconComponent function looks like when building components for a web app like Twitter Lite, which is built with React Native for Web.

// createIconComponent.js
import { createElement, StyleSheet } from 'react-native-web';
import React from 'react';

const createIconComponent = ({ content, height, width }) =>
  (initialProps) => {
    const props = {
      ...initialProps,
      style: StyleSheet.compose(styles.root, initialProps.style),
      viewBox: `0 0 ${width} ${height}`
    };

    return createElement('svg', props, content);
  };

const styles = StyleSheet.create({
  root: {
    display: 'inline-block',
    fill: 'currentcolor',
    height: '1.25em',
    maxWidth: '100%',
    position: 'relative',
    userSelect: 'none',
    textAlignVertical: 'text-bottom'
  }
});

Setting the fill style to currentcolor allows you to control the color of the SVG using the color style property instead.

All that’s left is to use scripts to process the SVGs and generate each React component.

Creating icon packages

A complete example of one way to do this can be found in the icon-builder-example repository on GitHub.

The project structure of the example tool looks like this.

.
├── README.md
├── package.json
├── scripts/
    ├── build.js
    ├── createReactPackage.js
    └── svgOptimize.js
└── src/
    ├── alerts.svg
    ├── camera.svg
    ├── circle.svg
    └── ...

The build script uses SVGO to optimize the SVGs, extract SVG path data, and extract metadata. The example packager for React then uses templates to create a package.json and the React icon components shown earlier.

import createIconComponent from './utils/createIconComponent';
import React from 'react';
const ${componentName} = createIconComponent({
  height: ${height},
  width: ${width},
  content: <g>${paths}</g>
});
${componentName}.displayName = '${componentName}';
export default ${componentName};

Additional packagers can be included to build other package types from the same SVG source. When the underlying icon library changes, it only takes a couple of commands to rebuild hundreds of icons and publish new versions of each package.




bra

Coronavirus lockdown | With no work or food, workers brave the long march home from Uttar Pradesh

"We don’t want anything from the government. We just want to be dropped home," says a migrant worker from Chhattisgarh.




bra

Crime Branch busts cigarette, tobacco smuggling racket

Material brought illegally in vehicles that had permission to carry fruits and vegetables




bra

Us vs. them [electronic resource] : redefining the multi-generational workplace to inspire your employees to love your company, drive innovation, and embrace change / Jeff Havens

Havens, Jeff, author




bra

Waste to wealth - a distant dream? [electronic resource] : challenges in the waste disposal supply chain in Bangalore, India / Chuck Munson with M. Ramasubramaniam and P. Chandiran

Munson, Chuck, author




bra

What is a high performance work organization? [electronic resource] / Bradley L. Kirkman, Kevin B. Lowe, Dianne P. Young

Kirkman, Bradley Lane, author







bra

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



  • DO NOT USE Indians Abroad
  • World

bra

Tanishq Abraham, a child genius, graduates from college at the age of 11



  • DO NOT USE Indians Abroad
  • World

bra

At 111, Britain’s oldest man celebrates birthday in Punjabi style



  • DO NOT USE Indians Abroad
  • World

bra

Impacts of hydrogen bonding interactions with Np(V/VI)O2Cl4 complexes: vibrational spectroscopy, redox behavior, and computational analysis

Dalton Trans., 2020, Advance Article
DOI: 10.1039/D0DT00848F, Paper
Mikaela M. Pyrch, Jennifer L. Bjorklund, James M. Williams, Daniel L. Parr IV, Sara E. Mason, Johna Leddy, Tori Z. Forbes
Crystallization of neptunyl(V) tetrachlorides over neptunyl(VI) species occurs simultaneously with charge assisted hydrogen bonding in our solid state materials, which we explored by DFT calculations, cyclic voltammograms, and Raman spectroscopy.
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




bra

A Letter is Better: Love and Remembrance

Messenger of Sympathy and Love Servant of Parted Friends Consoler of the Lonely Bond of the Scattered Family Enlarger of the Common Life Carrier of News and Knowledge Instrument of Trade and Industry Promoter of Mutual Acquaintance Of Peace and of Goodwill Among Men and Nations. A business consultant once passed around copies of the

The post A Letter is Better: Love and Remembrance appeared first on Berkshire Publishing.




bra

Karen’s Letter: The Libraries We Love

Last month I wrote about third places ("What is a “third place,” and do you have one?"). Along with some great stories about your favorite third places, I received a few emails blasting me for not mentioning libraries. That was a shock, since Berkshire Publishing has close ties to libraries: we’ve written and published about

The post Karen’s Letter: The Libraries We Love appeared first on Berkshire Publishing.




bra

Una finestra sul mondo del lavoro / editado por Riccardo Bonato y Francesca Campini ; prefacio de Emilio Reyneri ; la traducción realizada por Blanca Bravo Moríñigo

Online Resource




bra

Personhood in the Age of Biolegality: Brave New Law.

Online Resource




bra

Of privacy and power: the transatlantic struggle over freedom and security / Henry Farrell, Abraham L. Newman

Dewey Library - K3263.F37 2019




bra

International taxation of trust income / Mark Brabazon

Dewey Library - K4536.T78 B73 2019




bra

Luxury brands quietly sourcing Indian embroiderers for their goods

For years Dior, Saint Laurent and other fashion brands have been quietly using Indian embroiderers, while offering little in the way of employment protection




bra

Muslim girl embraces Lingayat sect

Sri Shiva Basava Swami of the Virakta Mutt in Hukkeri has welcomed a Muslim girl into Lingayat sect, in Hukkeri. The girl went through a short ceremon




bra

W 2 University Professor (m/f/d) for Hybride Integration for Optical Quantum Metrology: TU Braunschweig

€Attractive: TU Braunschweig
For more latest jobs and jobs in Germany visit brightrecruits.com




bra

With judiciary embracing technology, time to push dispute resolution online

Experts say online dispute resolution cannot take off in India without active work from the government and the judiciary




bra

What is a madrasa? / Ebrahim Moosa

Moosa, Ebrahim, author




bra

Singapore : identity, brand, power / Kenneth Paul Tan (National University of Singapore)

Tan, Kenneth Paul, author




bra

Malaysian films / National Library of Australia, Film Division

National Library of Australia. Film Division




bra

[ASAP] Comparative Proteomics Analysis Reveals That Lignin Biosynthesis Contributes to Brassinosteroid-Mediated Response to <italic toggle="yes">Phytophthora sojae</italic> in Soybeans

Journal of Agricultural and Food Chemistry
DOI: 10.1021/acs.jafc.0c00848




bra

[ASAP] Construction and Application of Membrane-Bound Angiotensin-I Converting Enzyme System: A New Approach for the Evaluation of Angiotensin-I Converting Enzyme Inhibitory Peptides

Journal of Agricultural and Food Chemistry
DOI: 10.1021/acs.jafc.9b08082




bra

Bracing for climate change, the chemical industry learns from Hurricane Harvey

Preparations for storms include an emphasis on worker recovery




bra

Historic launches: A chemstronaut celebrated and Geoffrey Chaucer app-reciated




bra

C&amp;EN's 2020 Trailblazers: Celebrating badass women entrepreneurs in chemistry

With guest editor Jennifer Doudna, CRISPR pioneer




bra

Braskem to test olefin separation membrane




bra

A radial setup helps automated synthesis branch out

Reactors arranged around a central switching station gives chemists more options for making molecules remotely




bra

Bottle-brush antibiotic busts bacterial membranes

A bristled molecule is designed to kill microbes and guard against resistance by degrading rapidly in the environment




bra

As they scramble to shore up supplies, small firms brace for a recession

Early signs of a downturn in demand herald a season of unprecedented uncertainty