Costco code of ethics:
1. Obey the law.
2. Take care of our members.
3. Take care of our employees.
4. Respect our suppliers.
Ponder for a moment why Musk, Bezos, Ellison and Zuck run companies share none of these values.
https://t.co/VMygrGDwWX
I encountered this same thing last June. X doesn’t moderate the names/website/icon of developer apps which makes account takeover phishing trivially easy.
X took weeks to pull the app running and my HackerOne submission was rejected.
https://t.co/XkruX6DCfu
PSA: I just survived the best phishing attempt I've ever seen.
A "reporter" at TechCrunch with a 10-year-old account and 9k followers DMed me asking if I'd be interested in giving input to an article that sounded relevant. When I said yes, they sent me to a real https://t.co/ohsY3XX3Ys link to book with the name of an actual TC reporter. After booking, I got redirected to another page saying I had to verify myself to complete the booking. The auth request looks somewhat legit, except for a small red note that it's not approved.
My spidey sense had been tripped and I realized the domain was sketchy, but if I wasn't on autopilot (or if I was an OpenClaw) I might have easily given them full access to my account.
Stay safe out there.
Here's the DM we got to @zeddotdev claiming to be someone from @TechCrunch. The user's profile (since deleted) had a a bunch of TechCrunch retweets and ~1000 followers.
@joeybeastmarket Zoomers will never know what it was like to be with 300 other good-looking non-seed oil afflicted non-septum pierced teenagers next to a lake around a bonfire with zero cell phone cameras and everybody living purely in the moment.
Just literally impossible now.
@nerdstakeover A potential solution to this is to have a CI job that compiles your binaries on a platform with an older glibc. Ubuntu 22 github actions runner will give you 2.35. (User’s PopOS! is ubuntu22 based; glibc 2.35). Or with docker build under `almalinux:8` and you can support >= 2.28.
@miaaowing@cursedconnector I had one. It would only power the MacBook not charge. I never flew a plane that had EmPower and without charging it was not very useful.
https://t.co/0TqOUuVYrr
@Shawnsg_@miaaowing@cursedconnector The end is an EmPower to cigarette adapter. The markings are confusing for sure. It was the “Auto/Air” adapter cable because it came with the adapter to support both.
@schrockn It’s not perfect, but ActionLint will catch a bunch of sharper corners around interpolated/incorrect syntax and can be run locally pre-commit (and in CI).
https://t.co/fNoZJIy6Hc
I did a mini version of this on a BOS->SF flight a few years ago and New Years rollovers in 3 timezones. We took off at ~10pm and at Eastern/Central/Mountain time midnights I popped a mini bottles of bubbly and celebrated each with a meek outloud “Woo!” while everyone else slept.
Time travel is real!
Flight CX880 departs Hong Kong in 2026 and lands in Los Angeles back in 2025 😲✈️
Welcome to the time zone glitch.
#BackToTheFuture
Trying to revisit every idea we’ve said “no” to in the past in case it makes sense to say “yes” now with the help of AI…
Is there anything you’ve built that’s been game changing for your business that was just impossible to justify pre-AI?
@thorstenball Research has a distinct system prompt that asks you some questions and to confirm a plan before kicking off. My guess is it yields better results as it gives users two bites at the apple rather than attempting the 1shot.
@dexhorthy I did this earlier today, ruthlessly cutting status/info output from build scripts to save context. Something as simple as `make -s || make` (silent if successful; on fail rerun with output) can make a big difference.
Six months later and the security issue remains.
Using links that redirect in a tweet/DM will:
(1) hide the url of your link
(2) only show 't. co' on hover
(3) show domain & preview card of redirect target
(4) clicks go to the original (hidden) link/domain
Quote tweets too:
P.P.S They hide links from tweets too 🫠
That tweet contains a link to 'https://t.co/OCT6YUrIgK' not https://t.co/QGWiijiekX and hovering shows 'https://t.co/M1VQE45qc8 / AzNOkFoo4F' with no hint of the original link whatsoever. Sigh🙃
https://t.co/XGLb5cMhP7
Normal accordion vs. upward accordion
I was scrolling on social media and noticed that when you collapse replies on a comment, the collapse button stays in the exact same spot.
Really nice UX, so I tried building it myself. (flex-col-reverse did not work LOL)
“He sent a message to jerks all over the country, their hour had arrived. Enough of this idealism. Enough of the Kennedy uplift. We’re going to have our day. The day of the jerk. The silent majority, which is the apotheosis of jerkhood.”
https://t.co/BHvqgc9z7H
@pmarsceill@zeddotdev You can check Zed.log (`zed: open Zed log` from the command palette) to see the underlying error.
Alternatively you can re-download a specific release if you're having trouble with the auto-updater.
https://t.co/MLiPsnbJp0
@JimLuo_@zeddotdev You can add a keybind to `editor::RestartLanguageServer` in your keymap:
{
"context": "Editor && mode == full",
"bindings": {
"ctrl-alt-cmd-i": "editor::RestartLanguageServer"
}
},
It'll restart any language servers associated with the current buffer.