Hacker News new | past | comments | ask | show | jobs | submit | s_ngularity's comments login

You should try a Vietnamese place if there’s one near by you. The ones around here at least don’t seem to skimp on the meat as much


In the UK, GMT is often used to refer to "the current British time" both GMT/BST. I've seen the same in the US where people say EST but mean EDT.


Whenever someone says GMT/PST/EST during the summer, I need to ask them to confirm whether they mean BST/PDT/EDT.

Whatever I assume, I might be off by an hour.


Is it? I mean, I'm British and I'm not aware of this.


I've seen a few people do it, but it's also usually corrected as been wrong.


Because software companies never charge for features?


Looking at archive.org, the page has had "to be released soon" since at least 2005 [1]. So I think your skepticism is in order.

[1] https://web.archive.org/web/20050130011942/https://www.openb...


I think the disproportionate noise about Slack is just due to it being (often without choice) used by so many people, and hence to cite that people only complain about Slack as evidence that Slack is worse than other Electron apps isn't very convincing.


> people only complain about Slack as evidence that Slack is worse than other Electron apps isn't very convincing.

Spotify is almost certainly used by many more people than Slack, and vscode's usage is probably at least within an order of magnitude. The general feedback in comments is that Spotify is bad but not exceptionally so, and that vscode is actually very performant (not when compared to Vim, but it seems to do fine in the context of GUI IDEs).

The other app that there has been a lot of complaints about in the past has been Atom. These have declined recently due to improvements by the Atom team, but also: Atom being the very first ever Electron app probably didn't help here either.


Attempting to sign in with google gave me a 500 Server Error


I just saw it pop up in the logs. Apparently Google doesn't have your last name, which confuses it. Will take a look in the morning


What language does have a deep copy/merge operation built into the language?


Rust has a Clone trait which provides the .clone() method, which isn’t a shallow clone or a deep clone, due to Rust’s ownership model—the terms “shallow clone” and “deep clone” actually don’t make sense in Rust.

For completeness, I must mention that when you get to types like Rc<T>, deep cloning becomes a meaningful operation, but even there it’s not exposed as a deep clone method, but rather via make_mut (https://doc.rust-lang.org/std/rc/struct.Rc.html#method.make_...) which skips the deep part of cloning if there are no other references to the inner value.

Rust’s ownership model is absolutely delightful to work with. I miss it all the time when working in Python or JavaScript, and encounter and write bugs that would have been structurally impossible in Rust from time to time—to say nothing of inefficiencies that would have been either inexpressible or unreasonable in Rust.



Rust's `Clone` trait is deep by default, except for

- Types with shared semantics (e.g. Rc<T>, Arc<T>), or holding onto these internally

- Types holding borrowed references (these will still reference the same data).

C++'s copy constructors are too, but there are more caveats, although they're similar in principal to Rust's caveats.


Most(all?) functional programming languages.


Most functional programming languages don't make a distinction between values and references, so this is kind of a moot point since the copying/merging is never exposed to the developer.


NPM is definitely usable as a package manager for frontend Javascript applications, just needs a little more complicated webpack or similar setup than a node.js app.


Ironic. Apparently we need a postmortem postmortem


What about fault-tolerance though? That's definitely a single point of failure scenario.


Run as many instances as your fault tollerance requirements needs. The expense of adding another physical box is trivial when that physically box is $99 to $250 total to own. They "pay for themselves" in their first month of use, versus any cloud configuration running any 'amp or node or Mean or simply "traditional" web stack.


Join us for AI Startup School this June 16-17 in San Francisco!

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: