Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
mpolun
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
13 ms
·
1.
▲
by
mpolun
4y ago
It's for proper integration of garbage collected languages -- otherwise you need to embed your GC too, which bloats the wasm. JS host VMs have very good GCs these days, so hooking into them allows for better integration by e.g. go, Jav
2.
▲
by
mpolun
5y ago
I don't see how it's any different than using any hosting provider. It's probably worth encrypting your databases, but if you don't trust your hosting provider you're hosed -- managed service or not. If your paranoi
3.
▲
by
mpolun
6y ago
swc ( https://github.com/swc-project/swc ) is a rust equivalent to babel and has a bundler under development. Not sure how far along it is. That would be an interesting comparison of performance and features.
4.
▲
by
mpolun
6y ago
Same with postgres. I never use specific lengths for text on postgres.
5.
▲
by
mpolun
6y ago
It's not part of rustup. At least for the VSCode plugin, it'll prompt you to download when it first runs. As long as you've got a working rust installation it'll work pretty seamlessly in my experience.
6.
▲
by
mpolun
7y ago
I don't think this is accurate. Other people may know better, but from my understanding the maintainers of ifconfig realized that to update it to use the new behavior, they would have to end up changing the output. The output of ifconf
7.
▲
by
mpolun
8y ago
Rust actually has that they just can't be substituted automatically because they're different types: fn<T: MyTrait> compile_time(thing: &T) {} fn run_time(thing: &dyn MyTrait) {} The reason that you can&
8.
▲
by
mpolun
14y ago
There's a permanent mirror of it: https://github.com/mirrors/linux
9.
▲
by
mpolun
14y ago
> Now time for a concrete example: PaaS – Platform-as-a- > Service. These modern cloud-based technologies enable an > extremely lean and agile dynamic response to delivering > software for a problem domai
10.
▲
by
mpolun
14y ago
Well, there's at least one difference: Android is open source, so anyone (even microsoft if they wanted to) could take android and fork it (and make everything but the kernel changes proprietary). The problem with predatory pricing isn't th
11.
▲
by
mpolun
14y ago
My biggest problem with IDEs is that they often don't like when I want to do something nonstandard. I've had trouble using git with Eclipse (it works, but I spend more time than I want fooling with it), for example. It's usually faster and
12.
▲
Django and the Real-time Web
(klewel.com)
1 points
by
mpolun
14y ago
|
0 comments
13.
▲
by
mpolun
14y ago
It would be interesting to have a "where are they now?" slide to see how many of those companies are still around and still worth anything. And on a log scale apple, google and microsoft shouldn't blow everyone else too far out of the water
14.
▲
by
mpolun
14y ago
There may be professions where being accessible at all times is more important than being able to drown out the world and concentrate, but programming is not one of them. Communication is important too, but when you need to concentrate head
15.
▲
by
mpolun
14y ago
Is this really a python issue, or a ruby specialty? If you look at programming resources for any language but ruby, I'll bet they're more like the python pages linked there than the ruby ones. I suspect that ruby just has an especially beau
16.
▲
by
mpolun
15y ago
:= in go means "declare this variable and infer it's type" You can always use i E = range e or similar, also range is not a function, it's part of go's syntax and always takes one argument. You don't need parens for the unary - operator. Go