Viewing profile — barskern
barskern
HN member- Joined
- Mon, Feb 19, 2018, 8:39 PM UTC
- HN karma
- 27
- Public activity
- 8 items
- HN profile
- View on Hacker News ↗
About barskern
[ my public key: https://keybase.io/barskern; my proof: https://keybase.io/barskern/sigs/LHWKxAyi9yM2XL4uu64jIwq3O60taGF2gb6tYwZTB7E ]
Recent public activity
-
comment
Comment #23660519
Isn't the following statement always true, as casting using `as` will silently ~~overflow~~ truncate the `u32` if `usize` is 64-bits? assert!((samples as u32) EDIT: I know it's a c…
-
comment
Comment #18585751
This is a minor nitpick but I feel that the usage of the arrow function in Javascript was overly verbose. Instead of: const add = (a, b) => { return a + b; } It could be written as…
-
comment
Comment #17572705
No it is not equal because the former autobinds `this` into the body of the arrow function, however the latter is "just" a function pointer hence will not be called with the correc…
-
comment
Comment #16821663
I understand what you mean, but I don't think you understand my point. I am not thinking about the official documentation of the language. Normally translating the explanations in …
-
comment
Comment #16791686
Thank you for the explanatory answer. Localization seems like a two-edged sword. Wouldn't it cause a spilt in the community when it comes to tutorials and documentation? Especially…
-
comment
Comment #16790637
I'm not really sure I understand what Crayon fixes for Javascript. Based on my understanding from the intermediate tutorial it seems to be mostly identical to Javascript, with a ga…
-
comment
Comment #16431165
Thank you for the share. Simple and useful tips to bring UI to a prettier state. Especially for a "pure" programmer, myself, who has no idea how to make nice interfaces without bei…
-
comment
Comment #16421047
> And don’t over use viz. [...] I don't fully agree with this neither. Especially for mathematical concepts, visualization can give insight into how theorems are constructed and co…