Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
yati
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
yati
3y ago
Much of theoretical computer science is math, like much of modern theoretical physics is also math. “Computational science” brings up images of computational complexity theory, computability, information theory, distributed consensus, type
2.
▲
by
yati
4y ago
I was thinking we could run what is being said in a call from an unknown number through a scam detector. The detector, upon noticing an established fingerprint of scam activity, would alert the caller. There is Call Screen in the native And
3.
▲
by
yati
4y ago
My impression (I work at Google) is that internal interfaces to some of these services have a lot of Google-specific stuff that are hard to map to non-Google requirements.
4.
▲
by
yati
5y ago
You also have to see how easy these will be to use, with a dedicated app and all, compared to hiding a camera. In practice, if I spot a hidden cam on someone interacting with me in public, I’d call them out, but socially it would e super a
5.
▲
by
yati
5y ago
I gave up on it after the free trial. The search extremely shitty for anything except popular Western music, and oh the recommendations! You like some Shiv Kumar Sharma? How about also trying $random_hiphop_dude? YT Music has its flaws, but
6.
▲
by
yati
5y ago
Yeah, more like 20 (19 CHF/h). Switzerland is expensive, and Starbucks ensures that their prices reflect that -- "caramel frappuccino" is 8.90 CHF for the big bucket of a cup they have, while the same thing in the US is what,
7.
▲
by
yati
5y ago
Yes I confirmed, this was what happened. The shitty part is that there was no obligation for this person to declare, they did it to be transparent, and their contract was never renewed. This in a store that is understaffed, constantly hirin
8.
▲
by
yati
5y ago
> A spokesperson for Starbucks said in an email in response to the union organizing drive: “While Starbucks respects the free choice of our partners, we firmly believe that our work environment, coupled with our outstanding compensation
9.
▲
by
yati
5y ago
Why flag the account and report it if the only goal is to politely prevent people from uploading? Like you say, a “code change can do anything” and we simply don’t know how the current feature is done or how it will evolve. edit: like many
10.
▲
by
yati
5y ago
I grew up and studied in Kolkata, and have lived elsewhere in India, but I haven’t quite seen anything like the daily adda outside of West Bengal. The article is spot on with most of us not even realizing how special it is unless we move ou
11.
▲
by
yati
6y ago
मुफ़्त (muft) means free of cost, मुक्त (mukt) is free as in freedom. मुफ़्त नहीं। मुक्त (muft nehi, mukt) reads like "not free (of charge), but free as in freedom."
12.
▲
by
yati
6y ago
I was replying to the comment above -- Go or Rust did not simply rename exception related keywords, they have a completely different approach. I don't know of any language that does mudane error handling with exceptions that is not a m
13.
▲
by
yati
6y ago
Panic/recover isn't used nearly as much for error handling in Go as in Java. An online resource being unreachable does not cause the net package functions to panic.
14.
▲
by
yati
6y ago
Git+your OS make it easy to acquire this software, Your browser and OS collude together to make it easy to run it, The elecric supply to your house makes it easy to run the computer that runs the OS, ... Do you really want a world where thi
15.
▲
by
yati
6y ago
Sorry, I cannot exhaustively list all possible issues with the country's politicians everytime I have something to say about the current government that is supposed to be accountable to Indians (because they are in power, Sonia Gan
16.
▲
by
yati
6y ago
Why does speaking up about the Indian government inevitably bring up questions like this? Ambani's relationship with this government bothers me a lot (among many other things about any government, particularly this one).
17.
▲
by
yati
6y ago
I used to work at a Perl shop. The language makes it so easy to use regexes that you risk abusing them, but nevertheless that exposure has helped me become quite proficient with regexes. I use Perl one liners whenever I need to deal with te
18.
▲
by
yati
6y ago
Yes, I think this is what they'd argue too. But something to think about: Recently Google was asked (in France[1]) to start paying publishers for including news snippets in search results. That data is also "public" in the se
19.
▲
by
yati
6y ago
See the talk "Hammock driven development" by Rich Hickey on the topic: https://youtu.be/f84n5oFoZBc
20.
▲
Software Engineering at Google (Book)
(shop.oreilly.com)
5 points
by
yati
7y ago
|
0 comments
21.
▲
by
yati
7y ago
That seems pretty patronizing of that "crowd". Is the topic of this thread (the top-level, not the topic of audio latency) something that matters to that crowd you represent?
22.
▲
by
yati
7y ago
Internet access was cut off recently also in the states of UP and Karnataka, where terror attacks are totally not the norm. It was done in response to protests against the CAA. Edit: I mention this to call out the tendency of this governmen
23.
▲
by
yati
7y ago
I see, I guess then that's where we disagree. It is very confusing for people from my limited experience, for little gain. Plus you make it harder to do things like put these tokens in e.g., a vector without resorting to decltype. Goin
24.
▲
by
yati
7y ago
I kind of understand what you describe, but I still don't understand why the type needs to be private. You can return opaque objects of a public type just as well for this job, can't you? class Token { virtual ~Token()
25.
▲
by
yati
7y ago
I am curious how you achieve encapsulation this way, please elaborate (I tried to find uses for this pattern. Even the author of the code I'm talking about, and other much better C++ programmers than myself seemed to call this an overs
26.
▲
by
yati
7y ago
You can prevent instantiation of the nested type already by using private ctors and friending the wrapper class from this type, while keeping the class itself public. That is a much cleaner expression of intent. I believe that if a class is
27.
▲
by
yati
7y ago
You can do member access into the object! That breaks encapsulation or whatever was the reason to keep the type private. Passing it around usefully isn't possible except to friend or member functions of the same class (since you can&#x
28.
▲
by
yati
7y ago
I also use C++ everyday, and find it quite powerful, but I also feel that it is ill designed. The other day I had to work with code that involved a public member function that returns a private type. You can only bind to the return value of
29.
▲
by
yati
7y ago
There's some boilerplate (a bit less compared to Go) required to deal with errors in Rust too, but additionally, the compiler can enforce you can't get at the return value without dealing with the error variant. I just checked tha
30.
▲
by
yati
7y ago
I agree with your pointa. A note though, I also used to think exceptions are "essential", but after working with code that forbids exceptions and uses explicit error status passing, I find exceptions very awkward to work with. I f
More ›