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.

74
Articles
0
Likes
282
Views
0
Comments
Recent Articles

Latest from IoT Full-Stack Technology

74 recent articles
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
IoT Full-Stack Technology
IoT Full-Stack Technology
Jun 26, 2026 · Databases

Are You Still Using These 8 Inefficient SQL Patterns?

This article examines eight common SQL pitfalls—including misuse of LIMIT offsets, implicit type conversion, sub‑query updates, mixed ordering, EXISTS clauses, condition push‑down, early limiting, and intermediate result set handling—showing how each can degrade performance and providing rewritten queries with execution‑plan evidence that dramatically improve speed.

MySQLQuery OptimizationSQL
0 likes · 12 min read
Are You Still Using These 8 Inefficient SQL Patterns?
IoT Full-Stack Technology
IoT Full-Stack Technology
Jun 26, 2026 · Artificial Intelligence

How Developers Can Use AI Skills to Generate Technical Diagrams

The article introduces three AI‑powered drawing tools—fireworks‑tech‑graph, markdown‑viewer, and architecture‑diagram—showing how developers can install them via npx, describe architecture in natural language, and automatically produce publication‑grade SVG or PNG diagrams with concrete command examples and screenshots.

AI drawingCLISVG
0 likes · 4 min read
How Developers Can Use AI Skills to Generate Technical Diagrams
IoT Full-Stack Technology
IoT Full-Stack Technology
Jun 25, 2026 · Artificial Intelligence

How CC GUI Turns IDEA into a Full‑Featured Claude Code & Codex Workbench (Free, Open‑Source)

The article explains how the MIT‑licensed CC GUI plugin consolidates Claude Code and Codex CLI capabilities into a single IDEA panel, eliminating context‑switching, offering diff view, token cost tracking, slash commands, and compares it with JetBrains ACP, Qoder, and CodeBuddy while outlining installation steps, usage scenarios, and limitations.

AI codingCC GUIClaude Code
0 likes · 11 min read
How CC GUI Turns IDEA into a Full‑Featured Claude Code & Codex Workbench (Free, Open‑Source)
IoT Full-Stack Technology
IoT Full-Stack Technology
Jun 20, 2026 · Backend Development

A Minimalist HTTP Client: One‑Line Requests with OKHttpUtil

OKHttpUtil wraps Square's OkHttp library to provide a lightweight, easy‑to‑use HTTP client for Java and Kotlin, automatically handling HTTP/HTTPS detection, cookies, redirects, gzip, proxy and User‑Agent configuration, with Maven coordinates, Spring Boot starter support and concise code examples for GET, POST, file upload, download and custom API wrappers.

API wrapperJavaSpring Boot
0 likes · 10 min read
A Minimalist HTTP Client: One‑Line Requests with OKHttpUtil
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.

DestructuringInterview QuestionIterator Protocol
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.

DestructuringInterview QuestionIterator Protocol
0 likes · 6 min read
How to Make var [a, b] = {a: 1, b: 2} Work in JavaScript?