Code Mala Tang
Author

Code Mala Tang

Read source code together, write articles together, and enjoy spicy hot pot together.

451
Articles
0
Likes
1.4k
Views
0
Comments
Recent Articles

Latest from Code Mala Tang

100 recent articles max
Code Mala Tang
Code Mala Tang
Oct 11, 2025 · Fundamentals

What’s New in Python 3.14? Free Threads, t‑Strings, and More

Python 3.14, released on October 7 2025, introduces free threading, t‑strings, multiple interpreters, delayed annotation evaluation, enhanced UUIDs, zero‑cost debugging, improved error messages, experimental JIT, Android‑embeddable binaries, built‑in HMAC, Sigstore signing, and several C‑API changes, reshaping both beginner and advanced development.

Free ThreadingPEP 750PEP 779
0 likes · 6 min read
What’s New in Python 3.14? Free Threads, t‑Strings, and More
Code Mala Tang
Code Mala Tang
Oct 10, 2025 · Fundamentals

Why async/await Doesn’t Give You Concurrency – And How to Make It Work

Although Python’s async/await syntax lets you pause and resume functions, it alone doesn’t run tasks concurrently; you must explicitly schedule coroutines with tools like asyncio.create_task(), gather(), or TaskGroup, and understand when to use sequential versus concurrent execution to avoid common pitfalls.

async/awaitasyncioconcurrency
0 likes · 10 min read
Why async/await Doesn’t Give You Concurrency – And How to Make It Work
Code Mala Tang
Code Mala Tang
Oct 9, 2025 · Artificial Intelligence

Discover 10 Underrated Machine Learning Algorithms That Can Supercharge Your Models

This article explores several powerful yet often overlooked machine‑learning techniques—including symbolic regression, isolation forest, Tsetlin machines, random kitchen sinks, field‑aware factorization machines, CRFs, ELMs, and VAEs—detailing their principles, code implementations, and real‑world application scenarios.

Algorithmsisolation forestmachine learning
0 likes · 23 min read
Discover 10 Underrated Machine Learning Algorithms That Can Supercharge Your Models
Code Mala Tang
Code Mala Tang
Oct 9, 2025 · Artificial Intelligence

Fine‑Tune a Language Model for Band Trivia with Hugging Face PEFT

This tutorial walks through installing Python dependencies, preparing a JSON‑based QA dataset, and using Hugging Face's PEFT library to fine‑tune a small FLAN‑T5 model so it can answer questions about AC/DC and other bands without passing knowledge at inference time.

FAQ modelHugging FaceLLM fine-tuning
0 likes · 12 min read
Fine‑Tune a Language Model for Band Trivia with Hugging Face PEFT
Code Mala Tang
Code Mala Tang
Oct 8, 2025 · Artificial Intelligence

Quickly Add NLP to Node Apps with Hugging Face Transformers.js

This tutorial shows how to integrate Hugging Face's open‑source Transformers.js library into Node.js projects, covering setup, the Pipeline API, and practical code examples for sentiment analysis, zero‑shot classification, text generation, translation, and question answering, while also discussing when to prefer Python alternatives.

NLPPipelinehuggingface
0 likes · 15 min read
Quickly Add NLP to Node Apps with Hugging Face Transformers.js
Code Mala Tang
Code Mala Tang
Oct 6, 2025 · Frontend Development

Why the ‘use client’ Directive Is a Game‑Changer for React Apps

This article explains how the ‘use client’ directive in Next.js 13 transforms component rendering by separating server and client code, enabling fine‑grained performance optimizations, clearer architecture, and a new full‑stack development model for modern React applications.

Next.jsReActServer Components
0 likes · 17 min read
Why the ‘use client’ Directive Is a Game‑Changer for React Apps