Viewing profile — lzutao
lzutao
HN member- Joined
- Thu, Jan 10, 2019, 4:10 PM UTC
- HN karma
- 12
- Public activity
- 13 items
- HN profile
- View on Hacker News ↗
About lzutao
No profile information was provided.
Recent public activity
-
comment
Comment #26203744
like swift you say
-
comment
Comment #26087124
> I do want to know what makes it so hard to get a platform from T2 to T1 Basically tier-1 targets must have tests run on CI for every merged commit. If anybody have a way to do th…
-
comment
Comment #24844469
If the function you trying to keep is in non-pub module, it will be removed. Maybe you could move it out of private module: https://rust.godbolt.org/z/PYPbG8 >. There's also an `#[…
-
comment
Comment #24837836
> there is no feature in Rust to force a function to not be removed Can we use `pub` to make it public and not to be removed ?
-
comment
Comment #24726610
So tell me if C/C++ or Kotlin do that.
-
comment
Comment #24539190
Really! So now we have personal attacking shit instead of talking about technical info.
-
comment
Comment #24457990
shellcheck.net/ is really nice to catch bugs in your bash scripts.
-
comment
Comment #24142236
> nothing compile without nightly Have you ever compiled ripgrep?
-
comment
Comment #23971810
Really nice. I hope GitHub use this option soon. Or maybe not: I guess it's kinda slow and heavy on computation.
-
comment
Comment #23191886
We need more volunteers to help implement those features!
-
comment
Comment #19938857
I am not serious. Often in these cases I would use printf debugging to know where the errors came. (I am still a Rust beginner).
-
comment
Comment #19935915
Thanks through I still don't get it. I only know that you can get backtraces of errors by setting `RUST_BACKTRACE=1`.
-
comment
Comment #19927946
What are the cases when `try!` macro bettern than `?` operator? I'm a beginner to Rust so I don't know about that.