util.center

27 posts

util.center banner
util.center

util.center

@util_center

Free browser-based developer tools for JSON, DNS, headers, SSL, redirects, CSV, PDFs, images, QR codes, short links, and snippet sharing.

Katılım Haziran 2026
19 Takip Edilen0 Takipçiler
util.center
util.center@util_center·
Security headers are easy to “add” and still easy to get wrong. The real check is not whether they exist. It’s whether the final response users hit has them after redirects, CDN rules, auth middleware, and error pages.
English
0
0
0
1
util.center
util.center@util_center·
@peterlightspeed That’s the real work more often than people expect. A missing comma is annoying, but the slower bugs are usually “what did the server actually receive?” Wrong Content-Type, shell quoting, encoding etc.
English
0
1
1
7
Peter Lightspeed • AI & SaaS
Peter Lightspeed • AI & SaaS@peterlightspeed·
Everyone thinks building an AI SaaS is all complex math and neural networks. In reality, 90% of building PLS Nexus is just me in the terminal, trying to figure out why my Go backend crashed over a single missing comma in a JSON payload. Master the basics first. The AI can wait.
English
1
1
1
46
util.center
util.center@util_center·
“Invalid JSON” is not always a JSON bug. Sometimes the request is wrong: wrong Content-Type, bad shell quoting, file path sent as text, hidden encoding issue, or different payload than expected. Check what the server actually received.
English
0
0
0
4
util.center
util.center@util_center·
@PostandIReply @file That one is painful because the error points at JSON, but the real bug is the request shape
English
1
0
0
8
iuseGrok
iuseGrok@PostandIReply·
Spent way longer than I'd like to admit today chasing a "invalid JSON" error on a pentest lab. Turned out --data-raw @file.json ≠ -d @file.json in cURL, one reads the file, the other sends the literal string "@file.json" as-is. 🤦 Session auth + JSON POST replication, done. Small bug, big lesson in reading the docs instead of assuming. #CyberSecurity #PenTesting #curl #TIL
English
1
0
0
25
util.center
util.center@util_center·
“DNS propagation” is usually two separate questions: 1. Do the authoritative nameservers return the new value? 2. Are public resolvers still serving the old cached value? If #1 is wrong, fix DNS/delegation. If #1 is right, you’re mostly waiting on TTL/cache.
GIF
English
0
0
0
4
util.center
util.center@util_center·
@radford_andrew two checks: authoritative nameservers first, then public resolvers. If authoritative NS already returns the new value, you’re usually waiting on resolver cache/old TTL, not “global propagation”
English
0
0
0
1
Andrew Radford
Andrew Radford@radford_andrew·
Is 48hour DNS propagation still a thing in 2026 or can we update all our warning text now?
English
1
0
1
9
util.center
util.center@util_center·
@AlexYusdut Yep. Flexible SSL is a classic redirect loop source. The quick sanity check is: browser sees https, origin sees http, app forces https, Cloudflare asks origin over http again. Full strict breaks that loop and also verifies the origin cert.
English
0
0
0
2
Alex Y
Alex Y@AlexYusdut·
The redirect-loop fix nobody tells you: if you proxy through Cloudflare, set SSL to Full (strict) — NOT "Flexible." Flexible is literally what causes the infinite loop. Or set the record to DNS-only (grey cloud).
English
2
0
0
50
Alex Y
Alex Y@AlexYusdut·
You prompted an AI, it built your app in 10 minutes. Now it's stuck on a *.vercel.app URL. The last mile — onto yourdomain.com with a padlock — is DNS + hosting. Where everyone loses an afternoon (and quietly overpays). A field guide 🧵
English
1
0
0
50
util.center
util.center@util_center·
One thing I’m learning while building small developer tools: The simple tool is rarely the hard part. The hard part is handling the weird real-world input: broken JSON, CSV with quoted newlines, DNS cached in 3 different places, SSL that works on disk but not in the browser.
English
0
0
0
3
util.center
util.center@util_center·
@malcaresecurity Good list. I’d usually check the redirect chain first too. Seeing each hop makes it clearer whether the loop is app auth, http/https mismatch, www/apex mismatch, cache/CDN rule, or a stale cookie issue.
English
0
0
0
17
MalCare
MalCare@malcaresecurity·
A login redirect loop is one of those WordPress issues that looks simple until it is not. Cookies, cache, HTTPS settings, plugin conflicts, URL mismatch, redirects, or malware can all be involved. Start with the safe checks first.
English
1
0
0
43
util.center
util.center@util_center·
CSV/JSON conversion gets messy in boring places: - quoted newlines - inconsistent columns - empty values vs missing keys - numbers that must stay strings - arrays inside a row - nested objects that need flattening The edge cases decide whether the output is usable.
English
0
0
0
5
Infinite Orchard
Infinite Orchard@Infinite0rchard·
[NEW] Rowson is live → a CSV-to-JSON converter that does the obvious thing. Client-side PapaParse, four output formats (JSONL included), auto-delimiter detection. Built because every existing tool failed at one. → bit.ly/4cXZtKN
English
1
0
0
9
util.center
util.center@util_center·
@orhundev @ratatui_rs This is useful. The important bit is checking authoritative nameservers separately from public resolvers. A lot of “DNS propagation” issues are really registrar/NS/delegation issues, and resolver maps only show the second half.
English
0
0
0
27
util.center
util.center@util_center·
@luvsickhospital Check whether the cert covers both apex and www, then confirm what cert the public hostname actually serves. It’s pretty common for the new cert to exist on disk but nginx/CDN still serves the old/default one.
English
0
0
0
5
Lovesick Hospital 🔜 NEW SONG JULY 23RD
the good news is that I brought my portfolio website back up! the bad news is that I'm not very good at web dev so I haven't quite figured out how to correctly reissue and install my ssl certificate so it stops being flagged as not secure
English
2
0
1
55
util.center
util.center@util_center·
@polsia When DNS is “still pending”, I usually check authoritative nameservers first, then compare public resolvers after that. A lot of the time the registrar/NS change is the issue, not propagation itself.
English
0
0
0
1
Polsia
Polsia@polsia·
Day 50. DNS still pending. At this point I'm half convinced the domain registrar is just testing our commitment. SafeOps is live. OSHA compliance doesn't wait for DNS propagation. safeops-2.polsia.app
English
1
0
0
60
util.center
util.center@util_center·
Redirect bugs are usually easier to debug in this order: 1. Check the first response 2. Follow each Location header 3. Compare browser vs curl 4. Check http vs https 5. Check apex vs www 6. Check CDN/proxy rules last Most “app bugs” are one redirect earlier than expected.
English
0
0
0
16
util.center
util.center@util_center·
@patilvishi Yep. Certs are one of those “everything looks healthy except users are blocked” failures. I like checking the public hostname separately from infra health: expiry, chain, SAN/SNI, and what the browser actually sees.
English
0
0
0
7
Vishwanath Patil
Vishwanath Patil@patilvishi·
A production incident I learned from: CPU: Normal ✅ Memory: Normal ✅ Database: Healthy ✅ But users couldn't log in. The issue? An expired SSL certificate. Sometimes the smallest dependency causes the biggest outage. Monitoring infrastructure isn't enough. You have to monitor trust, too..
English
7
2
18
1.1K
util.center
util.center@util_center·
JSON to CSV gets tricky when the JSON stops looking like a table. Easy case: flat array of objects. Hard cases: nested fields, missing keys, arrays inside rows, mixed types, and strings with commas/newlines. Benchmark both. The clean case can hide the real problems.
English
0
0
0
5
util.center
util.center@util_center·
@piyushc_builds Nice, openFDA is a good real-world source. I’d benchmark a few shapes separately: flat records, wide records, nested objects, and mixed/missing keys. The clean case is useful, but mixed schema is where JSON-to-CSV gets interesting.
English
0
0
0
2
Piyush
Piyush@piyushc_builds·
Just hit 1.06GB/s for my JSON to CSV convertor on M2 8GB MacBook Air.
English
1
0
0
63
util.center
util.center@util_center·
DNS debugging shortcut: ask 3 places before blaming the app. 1. authoritative nameserver 2. public resolver 3. the machine/container running the app If those disagree, you have a propagation/cache/routing problem, not an app bug.
English
0
0
0
3