Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
LukeLambert
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
12 ms
·
1.
▲
Fly.io is deprecating 17 regions
(fly.io)
7 points
by
LukeLambert
1y ago
|
2 comments
2.
▲
by
LukeLambert
2y ago
The big problem with statement-based replication is that many queries are non-deterministic. e.g. Inserting a row with current_timestamp or random()
3.
▲
by
LukeLambert
2y ago
Yes, it was the Ghost URL. Thank you for correcting it! I read just about every post, so I have a lot of catching up to do.
4.
▲
by
LukeLambert
2y ago
This is really cool and I can't wait to read all about it. Unfortunately, I've missed a month of blog posts because Cloudflare changed their blog's RSS URL without notice. If you change blogging platforms and can't imple
5.
▲
We're Cutting L40S Prices in Half
(fly.io)
59 points
by
LukeLambert
2y ago
|
30 comments
6.
▲
Removing data transfer fees when moving off Google Cloud
(cloud.google.com)
404 points
by
LukeLambert
3y ago
|
106 comments
7.
▲
An APPR Claim with Air Canada
(daemonology.net)
3 points
by
LukeLambert
3y ago
|
0 comments
8.
▲
by
LukeLambert
3y ago
I don't think Starlink has any data caps. On average, the tests download 140 MB and upload 15 MB each run (560 MB and 60 MB daily).
9.
▲
by
LukeLambert
3y ago
Note that the timestamps are UTC, while Texas is UTC-6:00 during Standard Time and UTC-5:00 during Daylight Saving Time. The biggest dip is during prime streaming hours.
10.
▲
by
LukeLambert
3y ago
Yep! speedtest -f json -I eth0 I also test the WISP connection on eth1
11.
▲
by
LukeLambert
3y ago
My parents in rural Northeast Texas use Starlink as their primary connection (they have a WISP as failover). Since Sept. 2022, I've been running automated speed tests four times a day (1 and 7, AM and PM). Speeds vary a lot throughout
12.
▲
by
LukeLambert
3y ago
Can someone explain what it looks like from a user's perspective when an article is blocked? Is there an error message? Limited reach? Plain link instead of rich preview? If the publishers don't want their photo, headline, and fir
13.
▲
by
LukeLambert
3y ago
I think Simon has a lot of experience solving hard problems: https://simonwillison.net/about/
14.
▲
Tell HN: My Disney account works on at least 31 domains
5 points
by
LukeLambert
3y ago
|
2 comments
15.
▲
by
LukeLambert
3y ago
With Messages and Music in particular (and perhaps other apps), you can sign into a different Apple ID than the one used for the system-level iCloud account.
16.
▲
by
LukeLambert
3y ago
That's likely due to the page having a canonical URL meta tag: <link rel="canonical" href="https://www.twintown.com/collections/acoustic-guitars"/>
17.
▲
by
LukeLambert
4y ago
javascript:prompt('URL',window.location.origin+window.location.pathname) Edit: But be aware that some sites (like this one) need the parameters in the query string.
18.
▲
After four years of SMR storage, here's what we love–and what comes next
(dropbox.tech)
2 points
by
LukeLambert
4y ago
|
0 comments
19.
▲
by
LukeLambert
4y ago
Thank you for following up. IMHO, object-fit is not the right model for server-side image manipulation, since its behavior is only specified when both width and height are supplied. I've also never seen a real world use case for stretc
20.
▲
by
LukeLambert
4y ago
In nearly two decades developing for the web, I've never found a good reason to enlarge an image server-side, so thank you for anticipating that footgun. So many of your competitors get it wrong. However, it's unclear from the doc
21.
▲
by
LukeLambert
4y ago
div { width: 640px; aspect-ratio: 16 / 9; }
22.
▲
by
LukeLambert
4y ago
No, Argo optimizes the route of traffic from the edge (your closest Cloudflare data center) to the origin (the server hosting your website). With Pages, everything is served from the edge.
23.
▲
by
LukeLambert
4y ago
Static sites benefit from being low-maintenance and highly-portable. You can easily switch from generous free services (Cloudflare Pages, Netlify, Vercel, Firebase, etc.) to highly-available paid services (Amazon S3, Cloudflare R2, Backblaz
24.
▲
by
LukeLambert
4y ago
The benefit of a static site generator like Next.js is that you can cache everything at the edge. It’s not surprising to me that the initial page loads quickly (via Cloudflare’s cache). But the multi-megabyte JSON embedded in the HTML as we
25.
▲
by
LukeLambert
4y ago
While looking for the blog’s RSS feed (sadly it doesn’t appear to have one anymore), I noticed that the size of the HTML alone was nearly 5 MB uncompressed. Over the course of scrolling to the bottom of the page, it loads tons of 4+ MB JSON
26.
▲
The DigitalOcean Blog homepage loads 100 MB of resources
(digitalocean.com)
38 points
by
LukeLambert
4y ago
|
8 comments
27.
▲
by
LukeLambert
5y ago
This is the second security issue with a TLS-based challenge [1]. This was a good reminder to switch to the HTTP challenge for the one remaining server I had that was affected. [1] https://letsencrypt.org/docs/challenge
28.
▲
by
LukeLambert
5y ago
fit=crop and fit=cover only work well if the source dimensions are greater than 512×512. If either dimension of the source is smaller, the behavior is useless. fit=cover will return a square (as requested), but will enlarge it (which you ne
29.
▲
by
LukeLambert
5y ago
I want to maintain the aspect ratio of my crop, not that of the source image. Perhaps `fit=cover-scale-down` would be a more appropriate name. In other words, I always want a square image <= 512px wide. I think this is a very common use
30.
▲
by
LukeLambert
5y ago
That’s why many image CDNs allow signed URLs. With Cloudflare Image Resizing, you’d need to implement that functionality using Workers.
More ›