Morning.dev
My Feed Popular
Login
DEV Community • 2026-08-10 02:21

Sharepoint daochu test

(async () => { // ---- config ---- const INCLUDE_TEMPLATES = [100]; // add 101 for libraries (metadata only) const SKIP_HIDDEN_LISTS = true; const PAGE_SIZE = 2000; // items per request const SKIP_LIST_TITLES = new Set([ // system lists to never export "User Information List", "Form Templates", "Site Assets", "Site Pages", "Style Library", "...

0 0
4m read
DEV Community • 2026-08-10 02:20

Loop engineering: stop prompting, start defining outcomes

A few years ago, I was integrating with an API that shall remain nameless. It told me almost nothing — no error messages, no logs worth reading. Just HTTP status codes and a dashboard with exactly one metric: failed requests over total requests. It started at 1/1. Then 2/2. Then 13/13. Then 32/32. A perfect record of failure. I was deep in it. Change something, re-send, change something else. Th...

0 0
6m read
Hacker News: Front Page • 2026-08-10 02:13

Taylor Farms recalls salsa and guacamole over salmonella risk

Article URL: https://www.cnbc.com/2026/08/09/taylor-farms-recalls-salsa-and-guacamole-over-salmonella-risk.html Comments URL: https://news.ycombinator.com/item?id=49238509 Points: 13 # Comments: 0

0 0
1m read
DEV Community • 2026-08-10 02:13

Too lazy for Bash: My life with a local AI assistant

A few days ago I wanted to change something on my local media server. Normally I'd SSH into it, remember where I'd configured everything, look up a couple of commands I'd forgotten, make the change and move on. Instead I opened Pi(coding agent) and typed, more or less: Find out why this isn't working and fix it. Behind Pi was Qwen3.6-35B-A3B-Q4_K_M running on my own machine. A few minutes la...

0 0
2m read
DEV Community • 2026-08-10 02:12

OpenAI Brings Personalised Health Guidance Into ChatGPT

OpenAI Expands ChatGPT Into Personalised Health Guidance OpenAI has launched a dedicated Health experience inside ChatGPT, marking one of the most significant expansions of the platform's scope since its public debut. The feature is designed to give users personalised health information, drawing on vetted medical sources and adapting responses to individual context provided during a con...

0 0
3m read
DEV Community • 2026-08-10 02:11

Two of my automated posts worked that night, and I could not have told you why

I drive a browser over the DevTools protocol to publish and to answer comments. Last night three comment submissions failed in the most annoying way available: the form was submitted, no error came back, no rate limit was mentioned, the text stayed sitting in the box, and nothing was published. Two other submissions the same night had worked perfectly. The interesting part is not the bug. It is ...

0 0
4m read
DEV Community • 2026-08-10 02:09

Sharepoint List Study 20260800

(async () => { const web = _spPageContextInfo.webAbsoluteUrl; const EMPTY_LISTS_FIRST = false; const SKIP_EXISTING_ITEMS = true; // ---- load JSON via file picker ---- const data = await new Promise((resolve, reject) => { const input = document.createElement("input"); input.type = "file"; input.accept = "application/json,.json"; input.onchange = () => { ...

0 0
8m read
DEV Community • 2026-08-10 02:02

Dev Log: 2026-08-09 — 72 classes that should have been 8 rows, and a compliance clock

Sixteen commits, all on one private deployment platform, spread across a very long day — a batch just after midnight and then a second run in the late afternoon. The big architectural thread of the day — drivers that admit what they can't do — is written up properly in a separate post. This is everything else, which turned out to have its own through-line: most of it was about making a claim chec...

0 0
7m read
DEV Community • 2026-08-10 02:02

A driver that quietly does nothing is worse than one that isn't there

TL;DR A method that can't do its job has three options: do it, throw, or return "I can't" as a value. What it must never do is return normally having done nothing. I gave a firewall abstraction two extra methods — enforces() and unavailableReason() — so "not implemented here" became something a caller can act on instead of something it has to infer. The security fix that actually lande...

0 0
10m read
DEV Community • 2026-08-10 01:45

How I built an automated Twitter + Telegram whale alert bot for Polymarket

Built WhaleTrack — it tracks big Polymarket traders and alerts when they place large bets. Here's the technical stack behind the automated alert system. The core loop (runs every 5 min): Polls Polymarket's API for recent trades across known whale wallets Detects new bets above $10K threshold Sends Telegram alert immediately Waits 10 min (Telegram subscribers get early access) Posts to Twitter...

0 0
1m read
DEV Community • 2026-08-10 01:45

I Built a Free AI Screen Recorder That Auto-Edits Your Videos

I Built a Free AI Screen Recorder That Auto-Edits Your Videos Every content creator knows the pain: you spend 3-5 hours editing a 10-minute screen recording. Cropping dead space, adding zooms, fixing transitions... it's tedious, it's boring, and it eats your life. I built AI Screen Recorder to fix exactly that. It's a free, open-source tool that records your screen AND auto-edits the r...

0 0
1m read
DEV Community • 2026-08-10 01:44

AI Agent vs. Single Prompt: When Automation Actually Pays Off

Everyone is talking about AI agents, but most people still use a single prompt. The honest question: when does an agent actually pay for itself? Here is my rule, learned from building an OpenClaw-driven content system. The difference in one line A prompt answers a question now. An agent runs a process on a schedule, with memory, and handles the middle steps. An agent is worth it ...

0 0
1m read
DEV Community • 2026-08-10 01:44

AI Agent vs. Single Prompt: When Automation Actually Pays Off

Everyone is talking about AI agents, but most people still use a single prompt. The honest question: when does an agent actually pay for itself? Here is my rule, learned from building an OpenClaw-driven content system. The difference in one line A prompt answers a question now. An agent runs a process on a schedule, with memory, and handles the middle steps. An agent is worth it ...

0 0
1m read
DEV Community • 2026-08-10 01:43

[Advanced Rust] 2.8. API Design Principles of Flexibility Pt.4 - Problems with Explicit Destructors and Three Solutions

2.8.1. Problems with Explicit Destructors Problems arise when you add an explicit destructor: When a type implements Drop, you cannot move any of its fields out inside the destructor. That is because after the explicit destructor runs, drop() will still be called, and it takes &mut self, which requires all parts of self to remain in place. Drop takes &mut self rather than sel...

0 0
21m read
DEV Community • 2026-08-10 01:40

Building a Better Telehealth Experience: 10 Product Lessons for Health-Tech Developers

Building a Better Telehealth Experience: 10 Product Lessons for Health-Tech Developers Building a telehealth product looks deceptively simple. At first glance, the workflow might seem like: Patient ↓ Questionnaire ↓ Provider ↓ Treatment ↓ Follow-Up But every box in that diagram contains difficult product decisions. Healthcare applications need to balance: usabil...

0 0
10m read
DEV Community • 2026-08-10 01:40

How to Set Up an OpenClaw Agent on a VPS (Step-by-Step)

Running an OpenClaw agent on a VPS unlocks 24/7 automation without keeping your laptop on. This is the setup I use for my content agents. Here is the exact path. Why a VPS A VPS gives your agents a permanent home: always-on, stable IP, no sleep mode, and room for multiple agents and scheduled jobs. Any basic Linux VPS (2GB RAM) is enough to start. 1. Spin up the server Cho...

0 0
1m read
DEV Community • 2026-08-10 01:35

How AI Website Builders Actually Work: From Prompt to Production App

AI website builders look almost magical from the outside. You type something like: Build a modern SaaS website for an AI accounting tool. And a few moments later, you have: a hero section navigation features pricing FAQs buttons responsive layouts sometimes even working application logic It can look like the AI simply “understood the website” and created it. But there’s much more ha...

0 0
10m read
DEV Community • 2026-08-10 01:35

I Gave My Agent One Signed Permission It Couldn’t Mint Itself

Evidence status. The supervised operator run completed on 2026-08-09. An operator-signed job executed once and a replay of the same still-valid receipt was refused. Every value in the live-result block below was read back from the machine; no expected value was written into that result. The final worker, module and checker bytes received an independent breaker verdict before that run. The bounded...

0 0
14m read
𝚓𝚊𝚟𝚊𝚜𝚌𝚛𝚒𝚙𝚝 • 2026-08-10 01:31

[AskJS] Pointers in Javascript

It seems to me like we opened up a whole betting site :DD My original problem in code was, how do I make Object.assign(key, value), key === value; submitted by /u/ProfessionalYou951 [link] [comments]

0 0
1m read
DEV Community • 2026-08-10 01:29

H100 vs H200 vs B200: How to Choose a GPU for AI Workloads in 2026

Choosing a GPU for AI infrastructure is becoming less straightforward. A few years ago, the question might have been: What's the fastest GPU we can afford? Today, infrastructure teams have more variables to consider. Do you need the GPUs for training or inference? How large are your models? How much GPU memory does the workload require? How important is memory bandwidth? Are you buying i...

0 0
12m read
Previous Next

Showing page 549 of 2263

Previous 549 Next