#string-functions

[ follow ]
Artificial intelligence
fromComputerworld
3 hours ago

This problem might not need a solution: customer-service bots that code for free

GenAI can enhance customer service by addressing complex dietary needs, but its tendency to hallucinate poses significant risks for direct interactions.
#ai
Software development
fromTheregister
3 days ago

AI slop got better, so now maintainers have more work

AI-generated reports improve quality but increase workload for maintainers, necessitating more reviewers in open-source projects.
#javascript
Node JS
fromFrontendmasters
1 week ago

What To Know in JavaScript (2026 Edition)

JavaScript's ECMAScript 2025 introduces new iterator methods and improved set functionalities, enhancing performance and usability for developers.
JavaScript
fromTreehouse Blog
2 months ago

JavaScript Basics: From Syntax to the DOM

JavaScript enables interactive, dynamic, and responsive web pages by connecting user actions to browser logic and updating content without reloading.
JavaScript
fromSubstack
1 month ago

Friday Links #34: Fresh JavaScript Tools & Releases

Pinterest claims parity with ChatGPT in search volume and emphasizes visual search and e-commerce integrations to capture commercial intent and buying journeys.
Node JS
fromFrontendmasters
1 week ago

What To Know in JavaScript (2026 Edition)

JavaScript's ECMAScript 2025 introduces new iterator methods and improved set functionalities, enhancing performance and usability for developers.
#ai-coding
Software development
fromInfoQ
4 days ago

Dynamic Languages Faster and Cheaper in 13-Language Claude Code Benchmark

Dynamic languages like Ruby, Python, and JavaScript are faster and cheaper for AI coding tasks compared to statically typed languages.
Software development
fromInfoQ
4 days ago

Dynamic Languages Faster and Cheaper in 13-Language Claude Code Benchmark

Dynamic languages like Ruby, Python, and JavaScript are faster and cheaper for AI coding tasks compared to statically typed languages.
Python
fromRealpython
2 weeks ago

Understanding CRUD Operations in SQL - Real Python

CRUD operations are essential for creating, reading, updating, and deleting data in applications.
fromRubyflow
2 weeks ago

The tool I wish I had 25 apps ago

Every iOS app I've shipped over the last nine years started the same way: a Rails developer with a great web app, users who want it in the App Store, and weeks spent on Xcode, signing certificates, and Swift boilerplate that has nothing to do with the actual product.
Web frameworks
fromSubstack
2 weeks ago

Blob Objects in JavaScript: A Practical Guide to Files, Previews, Downloads, and Memory

Blob objects are essential for efficient file handling in frontend development, addressing issues like memory management and performance.
Web development
fromCSS-Tricks
3 weeks ago

JavaScript for Everyone: Destructuring | CSS-Tricks

JavaScript is accessible to designers and non-specialists; writing any JavaScript code qualifies someone as a JavaScript developer regardless of formal training or background.
JavaScript
fromMedium
2 weeks ago

Metaprogramming: teaching the compiler to explain your data.

Contextual information enhances debugging by providing field names, types, and nested structures.
Python
fromDEV Community
2 weeks ago

I Analyzed the Readability of 10 Popular Developer Documentation Sites

Readability of developer documentation is crucial; many popular docs score below standard readability levels.
#ai-assisted-coding
fromMedium
3 weeks ago
Artificial intelligence

The AI Coding Pitfalls Report: Facts, Trivia, and Structural Solutions

fromMedium
2 months ago
Artificial intelligence

3 Practical Tips for Making Most of Claude for Coding UI Components

Artificial intelligence
fromMedium
3 weeks ago

The AI Coding Pitfalls Report: Facts, Trivia, and Structural Solutions

Engineers must shift from treating LLMs as chatbots to treating them as compilers, implementing a dedicated diagnostic phase to identify AI-specific defects before code merges.
fromMedium
2 months ago
Artificial intelligence

3 Practical Tips for Making Most of Claude for Coding UI Components

#claude-code
JavaScript
fromMedium
2 weeks ago

7 Essential Claude Code Slash Commands

Claude Code offers various slash commands to enhance user interaction and control over AI outputs.
UX design
fromMedium
1 month ago

Claude Code Best Practices

Plan before executing when using Claude Code to avoid spending excessive time fixing errors and redirecting the AI toward correct solutions.
JavaScript
fromMedium
2 weeks ago

7 Essential Claude Code Slash Commands

Claude Code offers various slash commands to enhance user interaction and control over AI outputs.
UX design
fromMedium
1 month ago

Claude Code Best Practices

Plan before executing when using Claude Code to avoid spending excessive time fixing errors and redirecting the AI toward correct solutions.
#python
Python
fromThepythoncodingstack
2 months ago

What's The Point of `itemgetter()` in Python? * [Club]

itemgetter provides a concise callable to extract items from sequences or mappings, offering clearer and often faster alternatives to equivalent lambda functions.
Node JS
fromAllthingssmitty
3 weeks ago

Native JSON modules are finally real - Matt Smith

Import attributes enable native JSON module support in JavaScript, eliminating the need for bundler transforms by allowing explicit type declaration with the `with { type: "json" }` syntax.
Django
fromRealpython
1 month ago

Introduction to Python SQL Libraries Quiz - Real Python

A 9-question interactive quiz assesses proficiency in Python SQL libraries for database connectivity, query execution, and cross-database scripting with SQLite, MySQL, and PostgreSQL.
Software development
fromMedium
3 weeks ago

From Concept to Production: The Complete Guide to XML Prompt Engineering for Software Developers

Treat LLMs as compilers, not chatbots, using Structured XML Prompting to generate professional-grade code through a five-stage AI-assisted development cycle with rigid constraints.
Artificial intelligence
fromZDNET
1 month ago

Why AI is both a curse and a blessing to open-source software - according to developers

AI can benefit open source when properly applied for security analysis, but causes harm when generating low-quality automated bug reports that overwhelm maintainers with false positives.
Python
fromRealpython
4 weeks ago

Working With Files in Python Quiz - Real Python

A 12-question interactive quiz assesses proficiency in Python file and directory operations including opening, iterating, filtering, creating, deleting, copying, and renaming files.
Online marketing
fromPractical Ecommerce
1 month ago

AI Bots Don't Need Markdown Pages

Serving Markdown versions of web pages to AI bots resembles cloaking tactics and risks diluting essential signals without proven effectiveness in improving visibility.
Artificial intelligence
fromMedium
1 month ago

Top 7 Claude Code Plugins

Claude Plugins extend capabilities by integrating external tools and APIs, while Skills teach Claude to perform tasks through reusable prompt workflows.
Python
fromRealpython
1 month ago

Working With APIs in Python: Reading Public Data - Real Python

Python with the Requests library enables efficient consumption of REST, SOAP, and GraphQL APIs through HTTP communication, supporting various authentication methods like API keys and OAuth.
Software development
fromTheregister
4 weeks ago

AI has made the CLI more important and powerful

Command line interfaces are resurging because graphical user interfaces poorly accommodate autonomous agents, threatening software design and development practices.
Software development
fromInfoWorld
1 month ago

Coding for agents

AI agents reward explicit, consistent, well-documented code over clever or personally-preferred approaches, fundamentally changing software engineering standards toward machine-legibility.
fromInfoWorld
1 month ago

What I learned using Claude Sonnet to migrate Python to Rust

If there's one universal experience with AI-powered code development tools, it's how they feel like magic until they don't. One moment, you're watching an AI agent slurp up your codebase and deliver a remarkably sharp analysis of its architecture and design choices. And the next, it's spamming the console with "CoreCoreCoreCore" until the scroll-back buffer fills up and you've run out of tokens.
Software development
#terminal
fromMedium
2 months ago

Algorithms Are Just Real Life, Formalized

Which Algorithm Is This? If you step back, this maps almost perfectly to the Top K Frequent Elements problem.We usually solve it for integers in a list. Here, the "elements" are audience profiles age and body-type combinations. First, define what an audience profile looks like: case class Profile(age: Int, height: Int, weight: Int) What we want is a function like this:
Scala
jQuery
fromjQuery Script
2 months ago

Exporting HTML Table Into CSV File - jQuery csvExport

jQuery plugin converts HTML tables into downloadable CSV files with configurable filename, automatic escaping, and before/on-string-ready callbacks.
Data science
fromTreehouse Blog
2 months ago

Beginning SQL: 10 Essential Query Patterns

Recognizing common SQL query patterns enables beginners to retrieve, filter, summarize, and reason about data effectively across industries.
fromTreehouse Blog
2 months ago

Coding for Beginners: What You Really Need to Know Before You Start

Coding is simply the act of giving instructions to a computer. Those instructions are written in programming languages that follow specific rules, but at a beginner level, the focus is not on perfection or complexity. It is on learning how to think through problems step by step. Learning to code helps you: understand how websites and applications work break problems into smaller, manageable pieces think logically and clearly about processes build confidence through hands-on creation develop skills that transfer across many roles
Online learning
Web development
fromLogRocket Blog
1 month ago

Anti-libraryism: 10 web APIs that replace modern JavaScript libraries - LogRocket Blog

Major browsers provide native Web APIs that replace many common JavaScript libraries, enabling smaller bundles, improved runtime performance, and reduced dependency maintenance.
fromRubyflow
2 months ago

The Ruby AI Newsletter

This edition features tons of content, articles, and open source releases.
fromInfoWorld
2 months ago

Are you ready for JavaScript in 2026?

React tutorial: Get started with the React libraryDespite the endless churn of new frameworks, React remains the quintessential reactive engine. This updated guide walks you through the fundamentals of React development, including a This is Spinal Tap variant on the canonical counter application. Sometimes, your components just need to go to 11.
Web frameworks
Ruby on Rails
fromRubyflow
2 months ago

A JSON Logic implementation that actually works: ShinyJsonLogic

A new Ruby JSON Logic gem provides 92% standards compliance, Ruby 2.7+ compatibility, zero dependencies, and reliable cross-language rule sharing with JavaScript.
#gemini-cli
Artificial intelligence
fromZDNET
1 month ago

7 AI coding techniques that quietly make you elite

Agentic AI tools make a single developer far more productive, enabling rapid cross-platform product creation by encoding design systems, user profiles, and permanent bug lessons.
fromSubstack
2 months ago

Friday Links #33 - Fresh JavaScript Tools & Trends

OpenAI has introduced ChatGPT Health, a dedicated section inside ChatGPT focused entirely on personal health. It's more than a themed chat - users can discuss symptoms, interpret lab results, track metrics over time, and get clear explanations of medical terms. A key feature is integration with health and fitness services. Users can connect Apple Health, MyFitnessPal, and similar apps so the AI can analyze sleep, activity, nutrition, and wellness trends.
Web development
Ruby on Rails
fromRubyflow
2 months ago

FixtureBot: the speed of fixtures with the syntactic sugar of factories

FixtureBot provides Ruby-based fixtures to address slow FactoryBot performance and eliminate YAML tedium, without being a drop-in FactoryBot replacement.
fromRubyflow
1 month ago

Servactory - Typed service objects with declarative actions for Ruby

The core idea is three separate attribute layers: inputs (what comes in), internals (working state), and outputs (what goes out). Each is a distinct declaration with its own namespace and type checking. Combined with declarative make calls that define action order, the data flow through a service is visible at a glance: class Payments::Process < ApplicationService::Base input :payment, type: Payment internal :charge_result, type: Servactory::Result output :payment, type: Payment make :validate_status! make :perform_request! make :handle_response! make :assign_payment
Python
fromPythonmorsels
2 months ago

All iteration is the same in Python

All Python iteration forms use the same iterator protocol; iterating over an object yields its defined iteration items (e.g., dictionary yields keys, string yields characters).
Artificial intelligence
fromDigiday
1 month ago

WTF is Markdown for AI agents?

AI systems and agents prefer structured markdown or APIs over raw HTML, making automated HTML-to-markdown conversion essential for efficient content ingestion and visibility.
Software development
fromRaymondcamden
2 months ago

Using Chrome AI to Rewrite Monstrous JSON

Gen AI can transform structured JSON game data into creative, human-readable descriptions that produce randomized, engaging summaries for monsters and other datasets.
fromInfoWorld
1 month ago

Claude Sonnet 4.6 improves coding skills

Anthropic has launched Claude Sonnet 4.6, an update to the company's hybrid reasoning model that brings improvements in coding consistency and instruction following, Anthropic said. Introduced February 17, Claude Sonnet 4.6 is a full upgrade of the model's skills across coding, computer use, long-context reasoning, agent planning, design, and knowledge work, according to Anthropic. the model also features a 1M token context window in beta.
Artificial intelligence
fromSlicker
1 month ago

Mini Logo Interpreter in 100 lines of pure JS

Logo is a programming language designed in the 60s. Its most famous feature is turtle graphics: the programmer controls the "turtle" (cursor) with instructions like forward, left, right, repeat and the turtle leaves a 'trace' on the screen. Today we'll build a compact, single-file logo interpreter in about 100 lines of pure JavaScript. To keep the code short, we'll only implement the four instructions above, plus color_cycle (not part of the standard Logo) that cycles through 36 HSV hues.
JavaScript
fromMedium
2 months ago

JSON Serialisation Explained with a Recipe

The project behind this post is intentionally a bit over-engineered - in the "let's see what breaks when things grow" sense. That's by design. While a simple recipe example could easily be modelled with plain strings and numbers, cookbook explores more advanced, real-world concerns: extensibility, customisation, validation, and precise handling of numeric values, including floating-point quantities. The recipe domain is just a familiar, low-stakes vehicle for discussing these deeper ideas.
Software development
Artificial intelligence
fromInfoQ
2 months ago

Working with Code Assistants: The Skeleton Architecture

Combining Vertical Slice architecture with Dependency Inversion and a Skeleton of base classes constrains AI code assistants' context, producing safer, consistent, and maintainable generated code.
Artificial intelligence
fromInfoQ
2 months ago

OpenAI Begins Article Series on Codex CLI Internals

Codex harness runs an LLM-driven agent loop that assembles prompts, manages context to reduce prompt cache misses, and invokes tools via the Responses API.
fromPythonbytes
2 months ago

Stack Overflow is Cooked

port-killer A powerful cross-platform port management tool for developers. Monitor ports, manage Kubernetes port forwards, integrate Cloudflare Tunnels, and kill processes with one click. Features: 🔍 Auto-discovers all listening TCP ports ⚡ One-click process termination (graceful + force kill) 🔄 Auto-refresh with configurable interval 🔎 Search and filter by port number or process name ⭐ Favorites for quick access to important ports 👁️ Watched ports with notifications 📂 Smart categorization (Web Server, Database, Development, System)
Python
fromThegreenplace
2 months ago

Compiling Scheme to WebAssembly

One of my oldest open-source projects - Bob - has celebrated 15 a couple of months ago. Bob is a suite of implementations of the Scheme programming language in Python, including an interpreter, a compiler and a VM. Back then I was doing some hacking on CPython internals and was very curious about how CPython-like bytecode VMs work; Bob was an experiment to find out, by implementing one from scratch for R5RS Scheme.
Artificial intelligence
fromZDNET
2 months ago

OpenAI's new GPT-5.3-Codex is 25% faster and goes way beyond coding now - what's new

GPT-5.3-Codex is a faster agentic coding model that can debug and deploy itself and perform a wide range of developer and professional computer tasks.
Python
fromThepythoncodingstack
2 months ago

Planning Meals, Weekly Shop, Alternative Constructors Using Class Methods

Use alternative constructors via class methods to build Meal and WeeklyMealPlanner objects and protect internal state with read-only properties and shallow copies.
Software development
fromInfoWorld
2 months ago

AI use may speed code generation, but developers' skills suffer

Using AI coding assistants can enable task performance but inhibit developers' acquisition of underlying skills needed to validate and debug code.
fromhttps://daniel.feldroy.com
2 months ago

Writing tools to download everything

Using AI to help download photos so we can consolidate all our images into one place. Over the years, [Audrey](https://audrey.feldroy.com) and I have accumulated photos across a variety of services. Flickr, SmugMug, and others all have chunks of our memories sitting on their servers. Some of these services we haven't touched in years, others we pay for but rarely use. It was time to bring everything home.
Python
Software development
fromTreehouse Blog
2 months ago

Intermediate Python: Files, Packages, and CLI Apps

Intermediate Python enables building file-based, package-enabled, command-line programs that automate tasks, process data, and integrate into real workflows.
fromMathspp
3 months ago

Recursive structural pattern matching

Structural pattern matching excels at... matching the structure of your objects! For the two examples in this article, we'll be using a number of dataclasses that you can use to build abstract Boolean expressions: from dataclasses import dataclass class Expr: pass @dataclass class And(Expr): exprs: list[Expr] @dataclass class Or(Expr): exprs: list[Expr] @dataclass class Not(Expr): expr: Expr @dataclass class Var(Expr): name: str
Python
Software development
fromMedium
1 month ago

Tcl vs. Bash: When Should You Choose Tcl?

Tcl is a command-oriented, fully-featured, simple, and versatile language well-suited as a productive Bash alternative for shell scripting.
Software development
fromRubyflow
1 month ago

A major shift in Ruby didn't come with new syntax - it came with fewer assumptions

Cannot access external URLs; please paste the article text or excerpts so I can produce the requested structured analysis.
Software development
fromInfoQ
2 months ago

VoidZero Announces Oxfmt Alpha with Rust-Powered Performance and Prettier Compatibility

Oxfmt is a Rust-based JavaScript/TypeScript formatter delivering up to 30× faster formatting than Prettier while preserving over 95% compatibility and supporting major Prettier options.
[ Load more ]