All Articles

140381 articles · Page 26 of 7020
Machine Heart
Machine Heart
Jun 27, 2026 · Artificial Intelligence

FTP-1: First Generalist Tactile Foundation Model Unifying 21 Sensors for Diverse Robots

FTP-1, a new generalist tactile foundation policy trained on the 3,000‑hour FTP‑1‑Dataset covering 21 heterogeneous sensors from 26 sources, introduces a morphology‑aware token space and an independent tactile transformer expert, achieving up to 31.6‑percentage‑point gains on unseen sensors and consistently outperforming prior VLA baselines across 14 real‑world manipulation tasks.

Multimodaldatasetfoundation model
0 likes · 12 min read
FTP-1: First Generalist Tactile Foundation Model Unifying 21 Sensors for Diverse Robots
Machine Heart
Machine Heart
Jun 27, 2026 · Industry Insights

Do Traditional VC Rules Still Work in the AI Era?

The article analyzes the explosive revenue growth of AI firms like Anthropic and OpenAI, the still‑low penetration of AI in the broader economy, the rapidly rising VC exit thresholds, and why venture capitalists must rethink their investment playbook for the AI‑driven market.

AIAnthropicInvestment Strategy
0 likes · 6 min read
Do Traditional VC Rules Still Work in the AI Era?
Linux Tech Enthusiast
Linux Tech Enthusiast
Jun 27, 2026 · Fundamentals

Why Chinese Input Methods Are the First Hurdle for New Linux Desktop Users

The article explains that while modern Linux desktop distributions are user‑friendly, configuring Chinese input methods can be the most confusing step for newcomers, detailing differences between Chinese‑focused and international distributions, common input frameworks like IBus, Fcitx5 and Rime, and practical ways to overcome the barrier.

Chinese input methodFcitx5Fedora
0 likes · 9 min read
Why Chinese Input Methods Are the First Hurdle for New Linux Desktop Users
IoT Full-Stack Technology
IoT Full-Stack Technology
Jun 27, 2026 · Artificial Intelligence

How Developers Use SKILL to Generate AI Diagrams Quickly

The article introduces three open‑source AI drawing tools—fireworks‑tech‑graph, markdown‑viewer, and architecture‑diagram—showing how developers can install them with a single npx command, feed natural‑language architecture descriptions, and instantly obtain SVG, PNG, or HTML diagrams for communication and documentation.

AI drawingGitHubarchitecture diagram
0 likes · 4 min read
How Developers Use SKILL to Generate AI Diagrams Quickly
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Jun 27, 2026 · Backend Development

Stop Building Code “Shit Mountains” – 10 Java Clean‑Code Techniques

This article presents ten practical Java clean‑code techniques—from meaningful naming and single‑purpose methods to avoiding magic numbers, writing purposeful comments, proper logging, defensive programming, DTO separation, Stream API usage, Optional handling, and safe ThreadPoolExecutor configuration—each illustrated with concrete code examples and explanations.

DTODefensive ProgrammingJava
0 likes · 12 min read
Stop Building Code “Shit Mountains” – 10 Java Clean‑Code Techniques
AI Engineer Programming
AI Engineer Programming
Jun 27, 2026 · Artificial Intelligence

Loop Engineering: Designing Autonomous AI Agent Loops for Automated Action and Decision

Loop Engineering is a practice that replaces manual prompting of AI agents with a self‑running cycle of action, observation, reasoning and decision, using clear goals, verifiable termination conditions, context management, tool integration, and error handling to enable reliable, unattended autonomous workflows.

AI agentsAutonomous workflowsContext Management
0 likes · 22 min read
Loop Engineering: Designing Autonomous AI Agent Loops for Automated Action and Decision
Architect's Guide
Architect's Guide
Jun 27, 2026 · Information Security

A Comprehensive Guide to Front‑End and Back‑End Authentication Strategies

This article systematically explains ten common authentication approaches—from basic HTTP authentication and session‑cookie mechanisms to token, JWT, SSO, OAuth 2.0, QR‑code login, and one‑click login—detailing their principles, workflows, advantages, drawbacks, and typical usage scenarios with concrete examples and code snippets.

CookieJWTOAuth2.0
0 likes · 42 min read
A Comprehensive Guide to Front‑End and Back‑End Authentication Strategies
TonyBai
TonyBai
Jun 27, 2026 · Operations

How I Migrated a 20‑Year‑Old WordPress Blog to Hugo with AI Assistance

In June 2026, the author migrated a 15‑year‑old WordPress blog containing nearly 2,000 posts, 2,200 comments and 2.6 GB of images to a Hugo static site, using Claude Code for planning, a custom Go converter, Dockerized Waline for comments, and Caddy on a VPS, achieving 99.3% URL compatibility in about two days.

AI-assisted migrationCaddyDocker
0 likes · 20 min read
How I Migrated a 20‑Year‑Old WordPress Blog to Hugo with AI Assistance
Lisa Notes
Lisa Notes
Jun 27, 2026 · Fundamentals

How to Create, Manipulate, and Compare Java Strings Effectively

This article explains Java's immutable String class, covering three ways to instantiate strings, methods for length, concatenation (concat and +), character access, substring extraction, splitting, replacing, searching, and comparison using equals versus ==, with concrete code examples and key rules for each operation.

ComparisonConcatenationImmutable
0 likes · 12 min read
How to Create, Manipulate, and Compare Java Strings Effectively
Lisa Notes
Lisa Notes
Jun 27, 2026 · Artificial Intelligence

Getting Started with Stanford CoreNLP: Tokenization, POS, NER, and Parsing

This guide introduces Stanford CoreNLP, a Python interface for fundamental NLP tasks such as tokenization, part‑of‑speech tagging, named‑entity recognition, constituency and dependency parsing, showing installation steps, model download links, and example outputs.

NLPNamed Entity RecognitionPOS tagging
0 likes · 4 min read
Getting Started with Stanford CoreNLP: Tokenization, POS, NER, and Parsing
Java Tech Workshop
Java Tech Workshop
Jun 27, 2026 · Backend Development

Why Do final, static, and private Methods Escape Spring AOP Proxying?

The article explains that Spring AOP cannot intercept methods marked as private, static, or final because JDK dynamic proxies only work on public interface methods and CGLIB subclasses cannot override such methods, leading to static matching but dynamic execution failure, self‑invocation bypass, and complete loss of advice for these method types.

AOPCGLIBJDK Proxy
0 likes · 11 min read
Why Do final, static, and private Methods Escape Spring AOP Proxying?
Black & White Path
Black & White Path
Jun 27, 2026 · Information Security

Can't Find Vulnerabilities? Try Nuclei, the Lightweight Template Scanner

The article introduces Nuclei, a fast, template‑driven vulnerability scanner that outperforms heavyweight tools like OpenVAS and Nessus, explains how to install it on Kali, update templates, run single‑target and bulk scans with various options, and demonstrates writing custom YAML templates and using its new AI‑assisted detection feature.

AI integrationNucleiYAML templates
0 likes · 6 min read
Can't Find Vulnerabilities? Try Nuclei, the Lightweight Template Scanner
Black & White Path
Black & White Path
Jun 27, 2026 · Information Security

Using AI to Uncover a Long‑Hidden OAuth Combo Vulnerability

The article details a step‑by‑step recreation of an OAuth client‑credential leak in a web application, showing how hidden credentials in commented JavaScript enable registration of admin accounts, and compares three AI‑driven penetration testing approaches to exploit the vulnerability.

AI penetration testingOAuthclient credentials
0 likes · 10 min read
Using AI to Uncover a Long‑Hidden OAuth Combo Vulnerability
Black & White Path
Black & White Path
Jun 27, 2026 · Information Security

Mastering the PMKID Attack: A Step‑by‑Step Guide to Wi‑Fi Penetration Testing

This article walks through the theory and practical exploitation of the Wi‑Fi PMKID attack, covering authentication basics, the WPA/WPA2 handshake, PMKID generation, and detailed step‑by‑step instructions using tools such as hcxdumptool, hashcat, aircrack‑ng, Airgeddon and bettercap to capture and crack PMKID hashes.

PMKIDWi-Fi securityaircrack-ng
0 likes · 16 min read
Mastering the PMKID Attack: A Step‑by‑Step Guide to Wi‑Fi Penetration Testing
Black & White Path
Black & White Path
Jun 27, 2026 · Information Security

What the 905 GB BreachForums CDN Leak Reveals About Hacker Infrastructure

A 905 GB BitTorrent seed of BreachForums’ CDN cache, containing raw databases, exploit tools, proof‑of‑concept media, and detailed forum metadata, was publicly released, offering an unprecedented view into the full inventory of a major underground hacker market and highlighting the risks of CDN misconfiguration.

BreachForumsCDN leakMetadata
0 likes · 6 min read
What the 905 GB BreachForums CDN Leak Reveals About Hacker Infrastructure
Machine Heart
Machine Heart
Jun 27, 2026 · Artificial Intelligence

Why Robots Shouldn’t Dream in Pixels: Introducing μ₀’s 3D Interaction Traces as a Physical Language

The article argues that pixel‑level world models are too low‑level and costly for robotics, proposes the μ₀ representation—compact 3D interaction traces that capture object, tool and contact dynamics—demonstrates its training pipeline, experimental speed and success rates, and suggests it as a scalable, interpretable physical language for embodied agents.

3D interaction tracesEmbodied AIrepresentation learning
0 likes · 11 min read
Why Robots Shouldn’t Dream in Pixels: Introducing μ₀’s 3D Interaction Traces as a Physical Language