Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
stevvooe
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
stevvooe
4y ago
Love to see projects that focus on the "boring" parts of getting infrastructure up and running. Something like this can save a bundle of time. This is a great project with a great team behind it!
2.
▲
by
stevvooe
9y ago
Decent overview, but, remember that when evaluating something, projects change over time. Even better, you can be the change you want to see! Thus far, the grpc project has been fairly responsive in making solid changes, either through PRs
3.
▲
by
stevvooe
9y ago
Note that I did not say "more granular layers" but more "more granular filesystem representation". This is a key point in achieving better data sharing. In fact, these use cases are not ruled out, but bolstered by OCIs a
4.
▲
by
stevvooe
9y ago
There is no real advantage to a dependency graph versus a list of layers. Originally, Docker images were actually fetched in sequence, similar to the ACI approach, but this blocked parallelization on each subsequent step. What has become OC
5.
▲
by
stevvooe
10y ago
AppC has layers[0]. In fact, an ACI is just a layer. While layers are codified into the OCI specification, the manifest system is flexible and allows for future extension. The main goal of OCI is to provide a specification for what is alrea
6.
▲
by
stevvooe
10y ago
Nix has been a very cool project to watch over the years. You can address part of the problem of picking up extra data in final images by declaring temporary build locations, such as `/var/lib/cache`, as a volume. Anything wr
7.
▲
by
stevvooe
12y ago
It seems you are trying hard to find something in my statement with which to refute. I was merely pointing out that the GP's conclusions are probably incomplete, given the data we have on lead. Most of my previous comments were quite n
8.
▲
by
stevvooe
12y ago
Yes, I do mean areas with high poverty areas or low income. I am not really suggesting any particular cause of poverty, but lead-soil levels seem to have some negative effect. The more important suggestion is that its not just income di
9.
▲
by
stevvooe
12y ago
Not disagreeing outright, but there are studies[1] that link high-poverty areas with higher lead concentrations. There was also an interactive map, some time ago, that showed lead soil levels by zip code and they definitely seemed to match
10.
▲
by
stevvooe
13y ago
Many people carry out fruitful lives in The Nut.
11.
▲
by
stevvooe
13y ago
Create a separate ServeMux for your application and let the utilities register to the DefaultServeMux via init (and you can even register your own!). Bind the DefaultServeMux to the debug port (6060) using http.ListenAndServe(debugPort, nil
12.
▲
by
stevvooe
13y ago
Didn't Nintendo already beat that theme to death?
13.
▲
by
stevvooe
13y ago
After following the development of Go for awhile, I've come to idolize Rob Pike's terse, accurate communication style.
14.
▲
by
stevvooe
13y ago
You're not way off, but, in this case, it has more to do with the fact that the Cove 2 Octopi are particularly beloved among the Seattle diving community.
15.
▲
by
stevvooe
13y ago
That octopus has been at Cove 2 on Alki for years. I got my SCUBA certification there nearly 8 years ago and every greybeard diver raved about this particular octupus. One of the stops on the certification dive was this old, broken sewer li
16.
▲
by
stevvooe
13y ago
Where does this stand against dropwizard?
17.
▲
by
stevvooe
13y ago
real developers who work in teams and have to maintain their codebase a month down the road stay the hell away from it. As a fake developer, our team has had little issue with code maintenance "a month down the road". I'm n
18.
▲
by
stevvooe
13y ago
It was ambiguous, with the name of the company being the first word of the sentence ;).
19.
▲
by
stevvooe
13y ago
IADNAL, but its a matter of risk. If one uses juju in operations scripts to implement proprietary services, do you have to make those scripts available to end users? At what point does your software become "derivative" of juju? Th
20.
▲
by
stevvooe
13y ago
Juju is a great project and you guys are way ahead of the game but the AGPL licensing is problematic for proprietary services built on that platform.
21.
▲
by
stevvooe
13y ago
Devices emit radiation whether they are using the radio or not. If its burning power, there is an emission, albeit small in comparison and probably hard to detect without specialized instruments. If the radios are simply on, link layer prot
22.
▲
by
stevvooe
13y ago
If they can come to my seat and tell me to turn off my device because they detected a source of interference, then I will turn off the device. If they can't or aren't willing to detect the source of interference, the real risk is likely dub
23.
▲
by
stevvooe
13y ago
Agreed that the articles reasoning is weak surrounding the "takin' o'r jerbs!" arguments; the cost of a lousy developer is insurmountable. However, the comparison with H-1B and indentured servitude is what is all to accurate in my personal
24.
▲
by
stevvooe
13y ago
> map[rhubarb]bool is how Go does sets Actually, you should use map[rhubarb]struct{} since a struct{} requires no storage. You can test membership with this: _, ok := m[strawberryRhubarb]
25.
▲
by
stevvooe
13y ago
Actually, I was very relieved it was not.
26.
▲
by
stevvooe
13y ago
That explains the dead birds all over RWC.
27.
▲
by
stevvooe
13y ago
How does Schneier's abstract not complement Professor Eben Moglen's argument?
28.
▲
by
stevvooe
13y ago
stevvooe
29.
▲
by
stevvooe
14y ago
I'm not sure. I haven't closely studied the difference between each algorithm. My guess would be that sort -u would perform better as the data set gets larger with a good block size setting because it does do an external sort. Cardinality w
30.
▲
by
stevvooe
14y ago
Sort will actually externally sort blocks into temp files and merge them. Adjusting this block size can help with thrashing. Awk may still be better for uniquification.
More ›