Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
krunaldo
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
krunaldo
8y ago
Well, first you have to calculate that the company pays 31.42% of your total salary in payroll taxes. This is illegal to print or show in any way or form to the employee from the employer. Then on most goods there is a 25% tax, additional t
2.
▲
Building an SDK for Robots
(t3d.one)
8 points
by
krunaldo
9y ago
|
1 comments
3.
▲
by
krunaldo
10y ago
You'll have to calculate how much it costs to buy the car and the loss of value when you estimate to sell into that as well to get a fair comparision.
4.
▲
Solving the stateful services problem in container orchestration
(blog.traintracks.io)
6 points
by
krunaldo
10y ago
|
0 comments
5.
▲
by
krunaldo
10y ago
crontab -e is the way to edit your cron. A similar command exists for editing the sudoers file which is visudo. This will ensure your configuration is a valid syntax as well as do an atomic swap of the file. Otherwise adding a file or delet
6.
▲
by
krunaldo
11y ago
Nitpick, Deaths due to TERRORIST attacks. Not arbitrary deaths.... "From this it follows that the average Muslim is responsible for approx 48 times more deaths than the average American of any religion." ^ This statement is false
7.
▲
by
krunaldo
11y ago
Interesting stuff, anyone know if there are other startups in China doing products that require large amounts of RnD, similar to http://traintracks.io , that's mentioned in the article.
8.
▲
by
krunaldo
11y ago
http://clang.llvm.org/docs/Tooling.html libclang is though :)
9.
▲
by
krunaldo
11y ago
They are. As I pointed out in my other comment: "All Red Hat Software Collections components are fully supported under Red Hat Enterprise Linux subscription terms of service. Components are functionally complete and intended for produc
10.
▲
by
krunaldo
11y ago
Yeah, if they are in CentOS land it will be a bit touch and go (as usual). But if you have a redhat subscription they are fully supported. I should have pointed that out in my first comment though, thanks for bringing it up :) "All Red
11.
▲
by
krunaldo
11y ago
Assuming they are using RHEL/CentOS 6. You can get supported ruby 1.9.3 on RHEL6 or CentOS6 https://www.softwarecollections.org/en/scls/rhscl/ruby193/ or https://wiki.centos.org/Addi
12.
▲
by
krunaldo
12y ago
My tip is always to try to get in contact with a couple of reseller and play them out against each other in the price department. If you are looking for larger purchases 50k+ USD than you should talk directly with Dell, HP or comparable ven
13.
▲
by
krunaldo
12y ago
An r720 from dell or similar model from dell with 600GB*2 SSD intel s3500DC model, 20 cores & 256GB of RAM will go for 5k-7k. You can bump this to 386GB of ram without going above 10k.
14.
▲
by
krunaldo
12y ago
Most of these are related to portable openssh and not openssh. These are two very different teams.
15.
▲
by
krunaldo
13y ago
Wrong! echo, true, false and [ are builtins in bash and are in the binary. You can even do TCP/UDP through bash by using the pretend redirect files /dev/(tcp|udp)/$host/$port. curl or wget exists on most systems by
16.
▲
by
krunaldo
13y ago
The matching engine should be separated completely from the rest of system as this is the one component where you want to align with cpu cache and all other kind of crazy low level optimizations. I do agree that mtgox system is slow but we
17.
▲
by
krunaldo
14y ago
Yes and no :) The tree is built up automatically but you can weight the paths and also which is the start node of the tree. There are also a lot of settings that may or may not completely fuck you over or fix a problem. Also you really want
18.
▲
by
krunaldo
14y ago
Nginx introduced least_conn lb method in 1.3.1 which makes it a bit better. http://nginx.org/en/docs/http/ngx_http_upstream_module.html#... ha-proxy is a lot better than nginx + more flexible if you want to introduce non-http to your stac
19.
▲
by
krunaldo
14y ago
n for next match, N for previous match. In combination with this it's almost as effective. Personally I'd use ctags and the http://vimdoc.sourceforge.net/htmldoc/tagsrch.html#tag-comma... search functionality of the tags. But I'll give yo
20.
▲
by
krunaldo
14y ago
EU market is tricky as you have both the EU directives and the nations law, but in the end the EU directives have no legal power unless the nation you are operating has enacted the law. It depends on what your domain your software is for, b
21.
▲
by
krunaldo
14y ago
It's next! http://www.youtube.com/watch?v=R2HzHSeV9v8
22.
▲
by
krunaldo
14y ago
BW is cheap, storage is cheap. They probably run filesystem that utilize dedup or/and do it in their applications storage logic.
23.
▲
by
krunaldo
14y ago
You can't have statements in pythons gimped versions of anon functions :/
24.
▲
by
krunaldo
14y ago
Thunderbolt supports DMA pretty much unrestricted iirc so it's a stupid standard. http://en.wikipedia.org/wiki/DMA_attack http://www.breaknenter.org/2012/02/adventures-with-daisy-in-...
25.
▲
by
krunaldo
14y ago
uh? You can change resolutions on the fly and orientation on the fly. This have been available for ages via xrandr and other things. Via API-calls or through the xrandr cli utility. The only thing that is really ugly in X11 is the protocol,
26.
▲
by
krunaldo
14y ago
Since they just repackage RHEL you were probably just running a 4.x release or a early 5.x release... SL is mostly for people interested in running RHEL but don't want to pay the licensing cost.
27.
▲
by
krunaldo
15y ago
The ruby community is awesome, the rails community less so.
28.
▲
by
krunaldo
15y ago
Storm is another good example of small projects going big (perhaps not research wise, but building new stuff). https://github.com/nathanmarz/storm They did some other stuff to accommodate their needs.
29.
▲
by
krunaldo
15y ago
(+ 1 2 3) = add 1 and 2 and 3 The syntax is a bit terse but if you teach people a good way to read it it becomes much more readable than 1+2+3 The only reason we prefer that way is that we are thought that syntax when we do math in school,