Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
shub
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
4 ms
·
1.
▲
by
shub
8y ago
Sounds like they can do predicate pushdown to the storage nodes now. And...mainly beneficial for medium-to-highly selective scans of mostly uncached tables?
2.
▲
by
shub
8y ago
I am a dataologist, even if my title says software something something. Commercial software development is about getting data from point A to point B more than anything else. There's a little bit of logic, a little bit of munging, but
3.
▲
by
shub
8y ago
IOCP doesn't do it[1]. Well, if it does then it's not documented. You can post custom completion packets so at first glance it looks easy to make open/close be async...I think there is probably a good reason why NT won't
4.
▲
by
shub
8y ago
Reminds me of an IBM technical bulletin I found, somehow, about 10 years ago. It advised that if you were moving from this z9 hardware configuration to that one, you would have 30 minutes of downtime. Implying that other changes require
5.
▲
by
shub
8y ago
If you're using Spark's built-in scheduler then the cluster manager is a SPOF. Hadoop docs say you can get active/standy ResourceManager, not that I've tried it. Spark can also use k8s and nomad to schedule executors, an
6.
▲
by
shub
8y ago
In addition, a lot of the techniques used to write high-performance Java boil down to "write it like C". Avoid interfaces, avoid polymorphic virtual calls (as you can't avoid virtuals entirely), avoid complex object graphs, a
7.
▲
by
shub
8y ago
You're really stretching to find negative consequences there.
8.
▲
by
shub
8y ago
The short excerpt you can read for free says this is more about stuff like the two minutes between clocking out at closing time and locking the door on your way out. It might be wage theft in some sense but isn’t the same thing as requiring
9.
▲
by
shub
8y ago
Why, on the off chance one flies into someone’s open mouth and the surprise triggers a swallowing reflex? I wouldn’t have a lot of sympathy for an adult who ate the homemade pills a guy threw at him and then suffered serious side effects.
10.
▲
by
shub
8y ago
Hanlon's razor?
11.
▲
by
shub
8y ago
That's why I took 102. They give you the straight dope there.
12.
▲
by
shub
8y ago
I always thought that force would work pretty well to build a dystopian hellscape.
13.
▲
by
shub
8y ago
Spicy. The fundamental problem is that a lot of people have jobs that pay a lot of money, I take it. You seem very upset about this.
14.
▲
by
shub
8y ago
On the other hand, I live far away and the YouTubes would be entertaining. Please do this, Google.
15.
▲
by
shub
8y ago
I guess they got the name back when smelling bad and smoking pot was progressive.
16.
▲
by
shub
8y ago
Gaslighted. Moonlighting is a different thing.
17.
▲
by
shub
8y ago
Oh my God, people use Slack without changing the "Notify me about" setting to "Direct messages, mentions, and keywords"? I work on a 100% remote team and would rapidly go insane without that.
18.
▲
by
shub
8y ago
Yeah, that sounds about right.
19.
▲
by
shub
8y ago
Deep learning! It does everything really well, especially reducing complex problems to a single number. It's well known that anything which doesn't fit in the reals isn't really real, if you know what I mean.
20.
▲
by
shub
8y ago
I'll go with twelve.
21.
▲
by
shub
8y ago
Yeah, if you’re pushing to prod automatically without a really good test suite then I would say the problem isn’t with the person who wrote a bug.
22.
▲
by
shub
8y ago
There's nothing about git that requires you to use it like the kernel does. Centralized version control is just a special case of decentralized, if you're using git. You still get the benefits of your repo being a peer of the mast
23.
▲
by
shub
8y ago
> Like you said, their intent is just to add a new option, and it ought to have no extensional changes in behavior, but it still ends up behaving subtly different. The next morning, all your services end up broken as a result. Someone ma
24.
▲
by
shub
8y ago
Thank you (seriously) for the detailed explantion. JITs already do this, to my mind. What else are you going to call it when HotSpot sees bytecode for a loop initializing an array and replaces it with a call to memset? Special-casing instru
25.
▲
by
shub
8y ago
I was using "intrinsic" inappropriately, I think, to mean both substitution of method calls and substitution of bytecode patterns. Yeah, the JVM already does the second thing. It's not roses for them, either[0]. The thing tha
26.
▲
by
shub
8y ago
Windows likes local time on the RTC. Way back when DOS 1.0 was released (every story about Windows begins with this) there was one way to set the system clock: the user would type in the time. They would use the local time, of course. Consi
27.
▲
by
shub
8y ago
Um yes JIT intrinsics do that. Well, the JIT is recompiling as needed (or more often), but your bytecode isn't changing.
28.
▲
by
shub
8y ago
They're not that different, either. It's been a long time since high-performance cores were executing the instructions as fetched and not translating into µops. The stuff Intel does on their chips works on ARM too. People are doin
29.
▲
by
shub
8y ago
By your description, a jet is an intrinsic written by people who don't know about intrinsics. Plus the bonus of "if you don't trigger the intrinsic it literally costs you money" which is the kind of language-gotcha innov
30.
▲
by
shub
8y ago
That has bugged me since the first time I read about Nock. JITs use intrinsics to work around inefficiency of generated code when the maintenance burden of the intrinsic is worth the performance boost, and the grand plan is to make a VM so
More ›