SShortSingh.
Back to feed

nohello.net Urges Professionals to Skip Greetings and Ask Questions Directly

0
·2 views

A website called nohello.net is promoting a workplace communication norm that discourages sending standalone greeting messages like 'Hello' or 'Hi' in chat platforms. The core idea is that opening with just a greeting forces the recipient to wait before learning the actual purpose of the message. Instead, the site encourages users to combine their greeting and question into a single message from the start. This approach is aimed at improving efficiency in asynchronous digital communication environments such as Slack or instant messaging tools. The post gained modest traction on Hacker News, attracting 22 points and a small number of comments.

Read the full story at Hacker News

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

CSS Position Property: 5 Types Every Web Developer Should Know

The CSS position property determines how HTML elements are placed and displayed on a webpage. There are five distinct position values available to developers: static, relative, absolute, fixed, and sticky. Each type offers different behavior, from the default static flow to sticky elements that toggle between relative and fixed positioning. Understanding these values is essential for controlling layout and element placement in web design.

0
ProgrammingDEV Community ·

How OpenHiggsfield Eliminated Next.js Server Action Bottlenecks for AI Video Generation

OpenHiggsfield, an open-source studio UI for multi-model video and image generation, tackled a core Next.js performance problem where Server Actions are serialized per client connection, causing UI freezes during concurrent AI tasks. The naive approach of firing individual polling actions for each generation job created a request queue that stalled user interactions like form submissions. To fix this, the team built a client-side coalescing engine that pools all active generation job IDs and dispatches a single batched Server Action per interval instead of multiple isolated ones. This single-flight fan-out architecture eliminates queue contention, keeping the UI responsive even while dozens of long-running inference tasks run in parallel. The platform also addresses API schema fragmentation across 38 AI providers — including Kling, ByteDance Seedance, and Black Forest Labs Flux — through a declarative multi-model catalog translation layer that unifies parameter validation and routing.

0
ProgrammingDEV Community ·

Anthropic Redesigns Claude Projects as Multi-Session AI Coordinator for Parallel Tasks

Anthropic launched a redesigned version of Claude Projects on September 17, 2026, shifting its core function from a folder-based context organizer to an active task coordinator. The new architecture features a two-tier system: a persistent coordinator that receives high-level goals and distributes work, and multiple independent threads that each run as full Claude Code cloud sessions on separate branches and repo copies. When two threads edit the same code, conflicts are not prevented but deferred and resolved like standard pull requests. The system also introduces shared memory across all threads, allowing Claude to retain project-specific context — such as deployment decisions or team conventions — that cannot be inferred from a codebase alone. A key trade-off noted in the announcement is that parallel threads consume usage limits faster, since each thread counts as a full session.

0
ProgrammingDEV Community ·

Developer Admits StareBrain Lacks the Verification System a User Praised It For

A developer building a tool called StareBrain received a compliment describing it as something that 'forces receipts,' meaning it produces concrete, verifiable proof of actions taken. The developer acknowledged the praise was premature, noting that while the system has architecture for evaluating trust, it lacks the actual evidence-generation machinery to produce checkable artifacts like timestamps or hashes. Recent work has focused on labeling confidence levels and handling unresolvable outcomes, but no receipt format exists yet for most action types. The post also reflected on a broader pattern in build-in-public culture, where confident language often substitutes for actual verification. The developer outlined an honest roadmap, starting with defining a specific, checkable receipt format for each action type the system performs.