Skip to main content

8,000+ Asus routers popped in 'advanced' mystery botnet plot

3 months 2 weeks ago
No formal attribution made but two separate probes hint at the same suspect

Thousands of Asus routers are currently ensnared by a new botnet that is trying to disable Trend Micro security features before exploiting vulnerabilities for backdoor access.…

Connor Jones

Look forward to having a Slack teammate, says Salesforce's Benioff

3 months 2 weeks ago
No, that's not someone on your team who doesn't pull their weight

Salesforce is promising every Slack user a "digital teammate" to help with tasks such as providing summaries of channels and taking notes from meetings. And responding to office banter on the user's behalf, The Register can only assume.…

Lindsay Clark

California Has Got Really Good at Building Giant Batteries

3 months 2 weeks ago
California's battery power capacity rose from 500 megawatts in 2018 to nearly 16,000 megawatts in 2025. Nearly a quarter of America's battery capacity is now in California alone, according to Bloomberg. At their daily peak around 8pm, batteries can provide as much as 30% of the state's electricity. The batteries charge in the afternoon when solar power is cheap and release energy in the evenings when Californians get home and crank up their air conditioners. In the middle of the day, when the sun is strongest, as much as three-quarters of the state's electricity can come from solar. California relied on regulation to achieve this scale. In 2013, the California Public Utilities Commission ordered the state's three big investor-owned utilities to procure 1,325 megawatts of energy storage by 2020 to help meet renewable targets and stabilize the grid. That goal was easily met. Mark Jacobson, an engineering professor at Stanford University, told Economist that most days this year contained periods when solar, hydropower and wind, helped by batteries, met 100% of California's demand -- even though just 54% of the state's electricity generation comes from renewables.

Read more of this story at Slashdot.

msmash

Transform Your Workflow With These 10 Essential Yet Overlooked Linux Tools You Need to Try

3 months 2 weeks ago
by George Whittaker

Linux is a treasure trove of powerful tools, many of which remain undiscovered by casual users. While staples like grep, awk, sed, and top dominate tutorials and guides, there's a second layer of utilities—lesser-known yet immensely powerful—that can dramatically improve your daily efficiency and control over your system.

In this article, we dive into 10 underrated Linux tools that can help you streamline your workflow, improve productivity, and unlock new levels of system mastery. Whether you’re a developer, sysadmin, or Linux hobbyist, these tools deserve a place in your arsenal.

1. fd: Find Files Fast with Simplicity

The traditional find command is incredibly powerful but notoriously verbose and complex. Enter fd, a modern, user-friendly alternative.

Why It Stands Out
  • Cleaner syntax (fd pattern instead of find . -name pattern)

  • Recursive by default

  • Colorized output

  • Ignores .gitignore files for cleaner results

Example

fd ".conf"

Finds all files containing .conf in the name, starting from the current directory.

Use Case

Quickly locate configuration files, scripts, or assets without navigating nested directories or crafting complex expressions.

2. bat: cat on Steroids

bat is a drop-in replacement for cat with superpowers. It adds syntax highlighting, Git integration, and line numbers to your file viewing experience.

Why It Stands Out
  • Syntax highlighting for dozens of languages

  • Git blame annotations

  • Works as a pager with automatic line wrapping

Example

bat /etc/ssh/sshd_config

You’ll get a beautifully highlighted and numbered output, much easier to parse than with cat.

Use Case

Perfect for reading scripts, configs, and logs with visual clarity—especially helpful during debugging or code reviews.

3. ripgrep: Blazing-Fast Text Search

Also known as rg, ripgrep is a command-line search tool that recursively searches your current directory for a regex pattern, similar to grep—but much faster and more intuitive.

Go to Full Article
George Whittaker