pack

NASA’s New X-Plane Looks Goofy But Packs Some Serious Tech

The X-57 will be essentially like flying a Tesla. It's part of NASA’s goals to reduce fuel use, emissions, and noise with innovative aircraft design.




pack

Liquids Are So 2015. Here’s How to Package Them in Spheres

Liquids. They’re so… liquidy. But our friends at ChefSteps have a quick and easy way to trap them, in beautiful delicious little spheres.




pack

See Everything That Happens When a Package is Shipped

Ever wonder what happens to a package when it gets shipped? We stuck a GoPro in a clear acrylic box, had it filming the entire time, and got a chance to see what the package went through on its way to your doorstep.




pack

Ultrafast spectroscopy : quantum information and wavepackets / Joel Yuen-Zhou, Jacob J. Krich, Ivan Kassal, Allan S. Johnson, Alan Aspuru-Guzik

Yuen-Zhou, Joel, author




pack

[ASAP] Oxygen Uncoupling Property and Kinetics of a Copper Manganese Composite Oxygen Carrier in a Packed-Bed Reactor

Energy & Fuels
DOI: 10.1021/acs.energyfuels.0c00574




pack

Samsung Galaxy S20 Plus review: Wholesome package justifies premium pricing

Several major upgrades to predecessor Galaxy S10 Plus but the same price tag of Rs 73,999 make the Galaxy 20 Plus a worthy premium smartphone




pack

Expeditions unpacked: what the great explorers took into the unknown / Ed Stafford

Dewey Library - G200.S727 2019




pack

Family Businesses' Growth: Unpacking the Black Box / by Laura K.C. Seibold

Online Resource




pack

Microchip AVR microcontroller primer: programming and interfacing / Steven F. Barrett, Daniel J. Pack

Online Resource




pack

Skills and jobs in Brazil: an agenda for youth / Rita K. Almeida and Truman G. Packard

Online Resource




pack

2401-2019 - IEEE Standard Format for LSI-Package-Board Interoperable Design - Redline [electronic journal].

IEEE / Institute of Electrical and Electronics Engineers Incorporated




pack

2401-2019 - IEEE Standard Format for LSI-Package-Board Interoperable Design [electronic journal].

IEEE / Institute of Electrical and Electronics Engineers Incorporated




pack

2019 IEEE 25th International Symposium for Design and Technology in Electronic Packaging (SIITME) [electronic journal].

IEEE / Institute of Electrical and Electronics Engineers Incorporated




pack

2019 Electrical Design of Advanced Packaging and Systems (EDAPS) [electronic journal].




pack

2019 14th International Microsystems, Packaging, Assembly and Circuits Technology Conference (IMPACT) [electronic journal].




pack

Medical device packaging handbook / edited by Max Sherman

Online Resource




pack

Sharon Kay - Adler's Information Packed Primer

Sharon Kay – Adler’s Information Packed Primer




pack

Modern Full-Stack development: using Typescript, React, node.js, Webpack, and Docker / Frank Zammetti

Online Resource




pack

Express Newslist: Modi meets Fortune 500 CEOs, Gujarat announces Rs 1,000 cr package for EW




pack

Infra spending, MSME package on the cards: Nitin Gadkari

The minister said he has suggested providing low-cost capital to MSMEs through NBFCs and called for speedy payment of their outstanding dues.




pack

Package for infra sectors may be announced soon: Gadkari

Road Transport and Highways Secretary Giridhar Aramane on Thursday had said: "Government of India, Prime Minister's Office and the Department of Economic Affairs are already working on a package, which includes not only the MSME but also the entire industry.




pack

Tubular structures XI: proceedings of the 11th International Symposium and IIW International Conference on Tubular Structures, Québec City, Canada, 31 August-2 September 2006 / editors, J.A. Packer & S. Willibald

Online Resource




pack

Structural universality in disordered packings with size and shape polydispersity

Soft Matter, 2020, Advance Article
DOI: 10.1039/D0SM00110D, Paper
Ye Yuan, Wei Deng, Shuixiang Li
Normalized free volume collapses on normalized particle size in polydisperse-sized packings for a given non-spherical particle.
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




pack

Thiruvananthapuram: Dead snake found in soft drink tetrapack

The two and a half year old girl was later rushed to a hospital, condition stated to be stable.




pack

CII seeks ₹15 lakh crore as immediate stimulus package

Suggests ₹2 lakh crore cash transfer to JAM account holders




pack

JSJ 357: Event-Stream & Package Vulnerabilities with Richard Feldman and Hillel Wayne

Sponsors

Panel

  • Aaron Frost
  • AJ O’Neal
  • Chris Ferdinandi
  • Joe Eames
  • Aimee Knight
  • Charles Max Wood

Joined by special guests: Hillel Wayne and Richard Feldman

Episode Summary

In this episode of JavaScript Jabber, Hillel Wayne kicks off the podcast by giving a short background about his work, explains the concepts of formal methods and the popular npm package - event-stream, in brief. The panelists then dive into the recent event-stream attack and discuss it at length, focusing on different package managers and their vulnerabilities, as well as the security issues associated with them. They debate on whether paying open source developers for their work, thereby leading to an increase in contribution, would eventually help in improving security or not. They finally talk about what can be done to fix certain dependencies and susceptibilities to prevent further attacks and if there are any solutions that can make things both convenient and secure for users.

Links

Picks

Joe Eames:

Aimee Knight:

Aaron Frost:

Chris Ferdinandi:

Charles Max Wood:

Richard Feldman:

Hillel Wayne:




pack

[ASAP] Propagation of Spin-Wave Packets in Individual Nanosized Yttrium Iron Garnet Magnonic Conduits

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




pack

How to test React components using Karma and webpack

I’m working on a project at Twitter that uses React and webpack. After a few conversations with @sokra last year, this is the setup I put in place for testing React components (authored using JSX and ES6) using Karma.

Dependencies

You’ll need to install various packages. It looks like a lot of dependencies, but all the non-Karma packages will be necessary for general module bundling during development.

Full set of required packages:

webpack entry file

If you use webpack-specific features in your modules (e.g., loaders, plugins) you will need to use webpack to build a test bundle. The fastest and simplest approach is to create a single, test-specific entry file.

Create a file named tests.bundle.js. Within this file, you create a webpack context to match all the files that conform to a naming pattern – in this case *.spec.js(x).

var context = require.context('.', true, /.+.spec.jsx?$/);
context.keys().forEach(context);
module.exports = context;

Next, you point Karma to this file.

Karma config

Karma is configured using a karma.conf.js file. The browsers, plugins, and frameworks are specified in the standard way.

Point Karma at the tests.bundle.js file, and run it through the relevant preprocessor plugins (see example below).

The karma-webpack plugin relies on 2 custom properties of the Karma config: webpack and webpackMiddleware. The value of the former must be a webpack config object.

module.exports = function (config) {
  config.set({
    browsers: [ 'Chrome' ],
    // karma only needs to know about the test bundle
    files: [
      'tests.bundle.js'
    ],
    frameworks: [ 'chai', 'mocha' ],
    plugins: [
      'karma-chrome-launcher',
      'karma-chai',
      'karma-mocha',
      'karma-sourcemap-loader',
      'karma-webpack',
    ],
    // run the bundle through the webpack and sourcemap plugins
    preprocessors: {
      'tests.bundle.js': [ 'webpack', 'sourcemap' ]
    },
    reporters: [ 'dots' ],
    singleRun: true,
    // webpack config object
    webpack: {
      devtool: 'inline-source-map',
      module: {
        loaders: [
          {
            exclude: /node_modules/,
            loader: 'babel-loader,
            test: /.jsx?$/
          }
        ],
      }
    },
    webpackMiddleware: {
      noInfo: true,
    }
  });
};

Rather than duplicating your webpack config, you can require it in the Karma config file and override the devtool value to get sourcemaps working.

var webpackConfig = require('./webpack.config');
webpackConfig.devtool = 'inline-source-map';

module.exports = function (config) {
  config.set({
    ...
    webpack: webpackConfig
  });
};

That’s all you need to do to configure Karma to use webpack to load your JSX, ES6 React components.




pack

How to Publish an Updated Version of an npm Package

What’s typically involved in an npm version release? How can you determine the release process for an existing project? Can project maintainers do anything to make it easier for new contributors?




pack

Street vendors demand inclusion in relief package

Street vendors are unhappy that they have been left out from the list of people in different sectors that will receive compensation from the State. Th




pack

Opening plastic packaging produces microplastics

Tearing and cutting lead to measurable debris from various forms of plastic




pack

Demand package of Rs 50,000 cr: Siddaramaiah

Former chief minister of Karnataka and Congress leader Siddaramaiah on Friday asked the state government to demand a special economic package of at least Rs 50,000 crore from the centre to deal with the coronavirus crisis.




pack

Lockdown 2.0: Consumers' focus shifts to packaged, high-value food items

Meanwhile, several retailers have reported an increase in sales of their private labels, which filled the gaps as supply lines from other manufacturers were disrupted.





pack

USDA Handwashing and Lunch Packing Tips for Parents and Caregivers

Summer is coming to an end and families across the country are trading in beach balls and roller blades for backpacks and notebooks.




pack

American Beef Packers, Inc. Recalls Raw Beef Products Deemed Unfit for Human Consumption

American Beef Packers, Inc., a Chino, Calif. establishment, is recalling approximately 24,428 pounds of raw beef products that are deemed unfit for human consumption.




pack

Fisher Packing Company Recalls Ready-To-Eat Pork Products Due to Possible Listeria Contamination

Fisher Packing Company, a Redkey, Ind. establishment, is recalling approximately 744 pounds of ready-to-eat (RTE) pork products that may be adulterated with Listeria monocytogenes.




pack

Morris Meat Packing Recalls Pork Products Produced Without Benefit of Inspection

Morris Meat Packing, a Maywood, Ill. establishment, is recalling approximately 515,000 pounds of various raw, intact pork products that were produced without the benefit of federal inspection and outside inspection hours.




pack

Amity Packing Company Inc. Recalls Raw Ground Beef Products Due to Possible Foreign Matter Contamination

Amity Packing Company Inc., a Chicago, Ill. establishment, is recalling approximately 2,020 pounds of raw ground beef products that may be contaminated with extraneous materials, specifically clear, thin pliable plastic.




pack

CO activation and methanation mechanism on hexagonal close-packed Co catalysts: effect of functionals, carbon deposition and surface structure

Catal. Sci. Technol., 2020, Advance Article
DOI: 10.1039/D0CY00499E, Paper
Hai-Yan Su, Changlin Yu, Jin-Xun Liu, Yonghui Zhao, Xiufang Ma, Jie Luo, Chenghua Sun, Wei-Xue Li, Keju Sun
Regardless of the functionals used and the presence of graphitic carbon, the CO methanation rate on Co(0001) is mainly controlled by CHO decomposition.
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




pack

Covid-19: Chhattisgarh CM asks Rs 30,000 cr package for state from PM

CM Baghel has urged the prime minister to release Rs 10, 000 crore immediately, out of the total amount.




pack

USF Phi Beta Kappa preliminary application packet




pack

Men preparing to pack tomatoes




pack

Packing Plant, Seminole Bridge-St. Petersburg, Fla.-City Sales Room, 26-2nd ST. SO




pack

Tarpon Springs, Fla. Sponge Packing House




pack

Packing House interior, Waverly Growers Cooperative, Waverly, Florida




pack

Celery harvest and packing, Palmer Farms, Sarasota, Fla




pack

Women packing strawberries at Kruse's, Inc.




pack

Workers rolling and packaging cigars in a factory




pack

An investigation of BGA electronic packaging using Moiré interferometry