> There is an official way for travelers to bypass long TSA waits if they’re willing to spend: hiring concierge services to escort them through security.
> Perq Soleil is an airport arrival and departure assistance service that can help travelers through TSA in about a minute flat by accessing alternative lines usually reserved for airport staff and airline personnel. The company — which operates in more than 300 airports and 150 countries — charges a base rate that varies by location.
Talk about burying the lede. Apparently the airports “highly discourage” line-sitters, but if you use services that pre-bribed airports you can skip the lines entirely.
Why should private plane passengers be subject to TSA? TSA (paid for by you and me by the way, not for free) exists to protect the public from harm, on public flights by common carriers. It used to be contracted by airlines themselves. Unless you are the most extreme of pro-seatbelt law people, it would make little sense for TSA to screen anyone on a private plane manifest unless the client asked them to.
No, the TSA exists because 19 people hijacked 4 flights and succeeded in crashing 3 of them into various important buildings in the US on 9/11/2001.
Private planes are just as capable of crashing into buildings as commercial jets. The TSA has picked up some ancillary public safety functions over the years, but their raison d'etre is to prevent hijackings.
No, the TSA exists because politicians felt they needed to be seen doing something after 9/11. If there were actually much political will for it to fulfill actual security purposes, it surely would’ve been reformed after it’s continually abysmal performance on security audits.
In terms of menace potential, any private plane will lose to a van full of fertilizer and a baddie intent on causing destruction. It's a matter of scale.
Little planes, like this one [1] just don't do damage on the same scale as airliners.
No argument though, just saying it's a hard problem, and the scaling issue makes it somewhat awkward to deploy security resources in proportion to the threat.
I don't have a solution. I'm not exactly thrilled with the current setup, but I try to stay quiet since I can't think of anything better.
Government building codes already anticipate the "van full of fertilizer" attack, as a result of the Oklahoma City bombing in 1995. Federal building security is a separate matter though, with its own agency called FPS that predates DHS and TSA by decades.
Lots of things can crash into buildings. Should they all be screened by TSA? Drones and their operators prior to every launch? 30 minute helicopter tours and high-rise HVAC drop offs? Private satellites?
Or is licensing and registration (of pilots and aircraft and manifest and flight plan) enough?
Governments are reactive. So if any of these other things ever successfully destroy a building then you can absolutely count on new rules and laws that, at a minimum, will include screening.
So it’s complete building destruction that is the protective mission here? Not loss of life or general terrorism or something else? I’m glad we are clarifying
I wasn’t aware that DJI drone with 60lb payload was subject to more regulations than a Citation leaving TEB but I guess I’m open to learning what those are.
Hell the TSA doesn’t do much to prevent that on commercial flights, but requiring private flights to start going through commercial security would be completely pointless
The danger of Steve Jobs hijacking his own private plane was obviously quite high! We can only thank the dutiful TSA officers for their brave service. I’m sure they risked their lives averting this danger. Have they been awarded any medals yet?
> An official United States government app is injecting CSS and JavaScript into third-party websites to strip away their cookie consent dialogs, GDPR banners, login gates, and paywalls.
Giving people a taste of web with Ublock Origin annoyance filters applied, refreshing. Can’t believe orange man regime is doing one thing right.
You can define your own rm shell alias/function and it will use that. I also have cp/mv aliases that forces -i to avoid accidental clobbering and it confuses Claude to no end (it uses cp/mv rare enough—rarer than it should, really—that I don’t bother wasting memory tokens on it).
This is terrifying. I have not used agents because I do not have a sandbox machine I do not care about. Am I crazy to worry about a sandboxed agent running on my home network? Anyone experienced anything weird by doing that?
Yeah, I actually have both an alias for `rm` and a custom seatbelt sandbox which means the agent can only delete stuff within the directory it’s working in, so wasn’t an issue, was just fun to watch it say “hm, that doesn’t seem to work. Looks like the user has aliased rm. I’ll just go ahead and work around it”
Well grep is just better sometimes. Like you want to copy some lines and grep at the end of a pipeline is just easier than rg -N to suppress line numbers. Whatever works, no need to facepalm.
Does M5 series have better video encoding chip/chiplet/whatever it is called than M4 series? Because while I’m happy with my M4 Pro overall, H.264 encoding performance with videotoolbox_h264 is disappointingly basically exactly the same as a previous 2018 model Intel Mac mini, and blown out of water by nvenc on any mid to high end Nvidia GPU released in the last half-decade, maybe even full decade. And video encoding is a pretty important part of video editing workflow.
If you mean editing ProRes is a better fit, if you mean final export software always beats hardware encoders in terms of quality, if you mean mass h.264 transcoding a Mac workstation is probably not the right place though.
This is interesting and I’d like to see a follow-up from Cursor, but the tone is unbearable and egregiously misrepresent the Cursor blog post, I guess for a circle of followers who won’t bother to check the original anyway and is just there for the dunking.
> So how cursor came up with such a beautiful solution only in 2026? Is everyone around dumb and never did anything like this before?
Cursor post doesn’t claim anything original, they attribute every approach discussed to someone else, including the one they claim to have settled on:
> Here's another very smart idea. You may have seen it used in ClickHouse for their regular expression operator, and also at GitHub, in the new Code Search feature that shipped a couple years ago and which does allow matching regular expressions. It's called Sparse N-grams, and it is the sweetest of the middle grounds.
The very next sentence in the fff article is amusing
> No, actually all the theory in the blog post they made (that makes sense) is coming from the paper https://swtch.com/~rsc/regexp/regexp4.html that is stated behind google code search project.
Because 1. the paper is prominently cited in the original, and 2. no it doesn’t cover all the subsequent optimizations discussed. “That makes sense” is doing a lot of work apparently.
Now, the main claims in the fff article are:
- Few/no people need to search entire repos that large;
- For large repos (no one needs to search), fff’s index is smaller (~100MB for chromium vs ~1GB for Cursor) and faster to create (~8s vs ~4m) and still fast (~100ms vs ?).
But all the comparisons are weirdly fixated on the MAX_FILE_SIZE query used for algorithm demonstration purposes in the original. That’s hardly a fucking regex search. Readers have no idea of how, say, MAX_.+_SIZE does after reading that rebuttal.
So, again, interesting, unbearable tone and egregious misrepresentation, would like a follow up.
No way something that compiles as slowly as Swift dethrones Python.
Edit: Plus Swift goes directly against the Zen of Python
> Explicit is better than implicit.
> Namespaces are one honking great idea -- let's do more of those!
coupled with shitty LSP support (even to this day) makes code even harder to understand than when you `import *` in Python.
Edit 2: To expand a little on how shitty the LSP support is for those who don't work with Swift: any trivial iOS or macOS project that builds fine in Xcode can have a bunch of SourceKit-LSP (the official Swift LSP) errors because it fails to resolve frameworks/libraries. The only sane way to work with Swift in VS Code or derivatives I've found is to turn off SourceKit diagnostics altogether and only keep swiftc diagnostics. And I have the swift-lsp plugin in Claude Code, there's a routine baseline of SourceKit errors ignored. So you have symbols without explicit namespaces, and the LSP simply can't resolve lots of them, so no lookup for you. Good luck.
The same thing you'd do yoursef if you wanted to assign it to a namesake local variable even if it was in a dict to begin with: you'd make the dash an underscore.
It would be extremely unlikely that you would replicate the name as a local variable if it was in a dict, but regardless a dict doesn't have that limitation. The namespace thing is atrocious and bad design -- no straightforward way to iterate over them, merging/updating them is awful, collides with keyword methods (keys, items, etc.), and so on; thankfully more modern argument parsing libraries didn't repeat this mistake. It's just a shame this ended up in the standard library, but then Python standard library has never really been any good, e.g. logging and urllib1234567.
That's funny. To me magic is implicit by definition and Python strikes me as a very magical language compared to something like Java that is way more explicit.
Given that subagents have different thinking/effort behavior from the main agent and very limited control on that front (I’m not completely sure about this but see https://github.com/anthropics/claude-code/issues/14321 and I’ve also noticed very different behavior when the same prompt is used in the main agent or passed to a subagent), I’m not sure this skill will be the same.
(That said I’m rather skeptical of this and would like to see more details of the process that produced this, and proof.)
Edit: Just noticed this official GitHub blog post from last month advertising Raycast, making this story a lot more believable: https://github.blog/changelog/2026-02-17-assign-issues-to-co...
reply