Urgent.News

the world's headlines, one feed

Editions

Tech

Paper Goods Company Is Investigating an Alternative to Trees

The Dallas Business Journal reported Monday that the U.S. multinational paper goods company Kimberly-Clark announced "that its researchers identified and advanced patented technology transforming fibers from hesperaloe, a low-water-use plant with pointy leaves that thrives in the southwest region of the country, into material for paper towels." Discovering an alternative to conventional wood…

Abstract editorial illustration

Kimberly-Clark, a multinational paper goods company based in Dallas, has been testing a new material derived from the hesperaloe plant for use in paper towels. The plant, native to the southwest region of the United States, is a low-water-use crop that thrives in dry, low-quality farmland. Kimberly-Clark's researchers identified and advanced patented technology to transform hesperaloe fibers into a suitable material for paper products.

The company has invested over $250 million in the project and filed more than 30 patents related to the technology. Hesperaloe can be harvested much more quickly than trees and can be grown on farmland unsuitable for most food crops. While products made from hesperaloe are still years away from reaching supermarket shelves, the company sees this as a significant milestone in its materials and plant science expertise, which has been developing for over two decades.

Written by urgent.news from Slashdot's reporting — not their text. Machine-written — it may contain errors, so check the original before relying on it.

Read the original at news.slashdot.org →

More in Tech

Safeguarding Your Systems: An Introduction to the Circuit Breaker Pattern

The circuit breaker pattern is a modern software design strategy used to detect failures and prevent an application from repeatedly executing an operation that is highly likely to fail.

  • Circuit breaker pattern prevents continuous execution of likely-failing operations
  • Acts as protective shield around external calls, halting traffic to broken services
  • Operates in Closed, Open, and Half-Open states to manage service recovery

Thinking and Decision Making: Cognitive Processes Explained

Introduction Every day you make thousands of decisions: what to eat, which route to take, whether a news headline is true. You probably think you're reasoning logically through each choice.

  • Decision-making relies on algorithms and heuristics
  • Heuristics are mental shortcuts, not always reliable
  • Common heuristics: availability and representativeness

Linux Memory Region Data Structures

The memory descriptor ( mm_struct ) maintains information about a process's address space (current memory it owns). One of its members is a linked list of Virtual Memory Areas (VMAs) , represented by…