IoT Full-Stack Technology
Author

IoT Full-Stack Technology

Dedicated to sharing IoT cloud services, embedded systems, and mobile client technology, with no spam ads.

87
Articles
0
Likes
552
Views
0
Comments
Recent Articles

Latest from IoT Full-Stack Technology

87 recent articles
IoT Full-Stack Technology
IoT Full-Stack Technology
Jun 18, 2026 · Fundamentals

How to Make var [a, b] = {a:1, b:2} Work in JavaScript?

This article explains why the destructuring statement var [a, b] = {a:1, b:2} throws a TypeError, explores the iterator protocol and Symbol.iterator, and shows how redefining Object.prototype[Symbol.iterator] enables the object to be iterable so the destructuring succeeds.

DestructuringIterator ProtocolJavaScript
0 likes · 6 min read
How to Make var [a, b] = {a:1, b:2} Work in JavaScript?
IoT Full-Stack Technology
IoT Full-Stack Technology
Jun 17, 2026 · Interview Experience

How to Make var [a, b] = {a: 1, b: 2} Work in JavaScript?

The article explains why the destructuring statement var [a, b] = {a: 1, b: 2} throws a TypeError, details the iterator requirement for the left‑hand side, and shows how to add a Symbol.iterator method to Object.prototype so any object becomes iterable and the assignment succeeds.

DestructuringIterator ProtocolJavaScript
0 likes · 6 min read
How to Make var [a, b] = {a: 1, b: 2} Work in JavaScript?
IoT Full-Stack Technology
IoT Full-Stack Technology
Jun 17, 2026 · Backend Development

When Java Streams Crash: A Real‑World Performance Disaster

A production outage caused by a Java Stream pipeline processing one million orders revealed massive memory overhead and CPU‑bound garbage collection, prompting a benchmark that showed a handcrafted for‑loop to be up to twenty times faster and far more memory‑efficient.

Garbage CollectionJavaStream API
0 likes · 10 min read
When Java Streams Crash: A Real‑World Performance Disaster
IoT Full-Stack Technology
IoT Full-Stack Technology
Jun 15, 2026 · Artificial Intelligence

Step‑by‑Step Guide to Building an AI‑Powered Knowledge Base with Obsidian, Claude Code, and Claudian

This article walks you through installing Obsidian, Claude Code, and the Claudian plugin, then shows how to let a large language model automatically ingest, compile, query, and maintain a markdown‑based knowledge vault, comparing the AI‑driven workflow with traditional manual methods and highlighting concrete time‑saving benefits.

AIAutomationClaude
0 likes · 10 min read
Step‑by‑Step Guide to Building an AI‑Powered Knowledge Base with Obsidian, Claude Code, and Claudian
IoT Full-Stack Technology
IoT Full-Stack Technology
Jun 15, 2026 · Backend Development

Quickly Secure Spring Boot APIs with RSA Encryption

This article walks through the fundamentals of RSA encryption, illustrates two communication scenarios, and provides a step‑by‑step guide to add RSA‑based request/response encryption to a Spring Boot project—including Maven setup, annotation usage, key configuration, front‑end JavaScript encryption, testing, and common pitfalls.

API EncryptionBackendJSEncrypt
0 likes · 11 min read
Quickly Secure Spring Boot APIs with RSA Encryption
IoT Full-Stack Technology
IoT Full-Stack Technology
Jun 10, 2026 · Fundamentals

How to Use JLINK Script in VS Code: A Complete Guide

This article walks MCU developers through three ways to invoke JLINK Script within the MCUXpresso for VS Code plugin, showing step‑by‑step configuration of .jlink files, .jlinkscript files, and the Flash Programmer's custom script field, and explains which method is best for debugging versus flashing only.

DebuggingJLinkMCUXpresso
0 likes · 6 min read
How to Use JLINK Script in VS Code: A Complete Guide
IoT Full-Stack Technology
IoT Full-Stack Technology
Jun 8, 2026 · Artificial Intelligence

Spring AI 2.0 vs LangChain4j: Which Should You Choose?

This article compares Spring AI 2.0 and LangChain4j for integrating large language models into Java enterprise applications, examining their positioning, version alignment, programming models, RAG capabilities, tooling, observability, learning curves, and suitability for different team stacks to help you make an informed selection.

AI frameworksJavaLLM Integration
0 likes · 12 min read
Spring AI 2.0 vs LangChain4j: Which Should You Choose?