In 1997, the Justice Department decided that Operating Systems and Web Browsers must remain separate. Since then, the Web Browser has been becoming an Operating System.
HN user
typedef_struct
https://umfer.us
You mean CO2 is not the same as CFCs?
Confirms Rust is about where I thought it was. In a strange niche where you don’t need 100% the performance of C, but the 90% you get from a managed language isn’t enough. And you can’t run on the GPU.
How about 'click-to-bill'. If I don't touch your service you can't charge me.
Some good patterns here. An Event with a callback (what you're calling [context protocol](https://github.com/webcomponents-cg/community-protocols/blob...)) I think will prove useful.
My main gripe with web components is that while they expose the first half of the tree traversal (from the outside in, via connectedCallback), they don't provide access to the second half, after child elements have been created. (akin to Initialize and Load events from ye olde .NET)
You could start with something like this:
customElements.define('html-import', class extends HTMLElement {
connectedCallback() {
const href = this.getAttribute('href')
const fetch = new XMLHttpRequest()
fetch.responseType = 'document'
fetch.addEventListener('readystatechange', (function onfetch(e) {
if (fetch.readyState !== XMLHttpRequest.DONE) return
const document = fetch.response.querySelector('body') ?? fetch.response
this.replaceWith(document)
}).bind(this))
fetch.open('GET', href)
fetch.send()
}
})Amazon does not have this information, nor would a competitive seller wish to provider it. Who my suppliers are and what they charge? So what, Amazon can better decide whether to enter my market?
This looks to use Web Sockets, not WebRTC, right? I don't see any RTCPeerConnection, and the peerServer variable is unused.
I ask because I've spent multiple days trying to get a viable non-local WebRTC connection going with no luck.
view-source:https://thelongestyard.link/q3a-demo/?server=Seveja
My test is to take a sized chunk of memory containing a TrueType/OpenType font and output a map of glyphs to curves. Bot is nowhere close.
You can tell the authors realized this was a bad idea when they had to add the 'OVER' keyword, which isn't documented and hardly mentioned in the paper.
Oh science. Peer review, the ultimate "LGTM", stands in for replication.
You can't build a "for-real native desktop app" without building half of a browser anyway. Can't use a font without FreeType or HarfBuzz, can't use a secure socket without OpenSSL. Can't afford to redraw the entire screen each frame, so you need a DOM of some kind to cache rendered boxes. The OS doesn't do anything it didn't do 20 years ago. Stack's a mess rn. imo
So glad we poured 8.5 billion into this sinking ship. Thanks Joe. https://www.whitehouse.gov/briefing-room/statements-releases...
I read this and learned nothing.
If your idea is to 'save' developers from becoming experts in devops best practices, I think you're going the wrong way.
link to original source [pdf]: https://insideclimatenews.org/wp-content/uploads/2015/09/198...
I usually think actors, writers, athletes, doctors, lawyers.
For comparison, MSSQL has been able to provide query results in XML for quite some time. I've found it useful in a couple of situations. See https://learn.microsoft.com/en-us/sql/relational-databases/x...
If openssl and skia would switch [to cmake], we'd be on our way.
Working as intended
What is a mortgage banker? Is it a program?
"The Federal government will not allow depositors at too-big-to-fail banks such as Bank of America, Citigroup, and JPMorgan to lose money."
Alternatively, the Federal government provides a free-of-charge insurance product to banks who then drop ship it to me for profit.
War's easy to sell here. Say "these are the bad guys" and we'll say "oh thank God, I was starting to worry it was us."
Most of them
You're hired
"Captain, they've escaped." "How?" "Drove into freshwater"
Phreaking is back?
Yes yes. Let us catch up please.
I own an iPhone 14 and I'm vaguely worried it'll satcall an ambulance and bill me a few thousand if I drop it wrong.
Terraform creates a virtual infrastructure against which diffs can be performed.
1TB/mo is like 380B/s...shouldn't it have to be advertised as such? Burstable to whatever speed is offered.