Viewing profile — marcoms
marcoms
HN member- Joined
- Mon, Jun 09, 2014, 3:57 PM UTC
- HN karma
- 55
- Public activity
- 58 items
- HN profile
- View on Hacker News ↗
About marcoms
No profile information was provided.
Recent public activity
-
comment
Comment #25597371
Not sure what you mean, Nim doesn’t allow tabs so that wouldn’t work
-
comment
Comment #25592254
This might have been excused if they didn't also forbid tabs unless you use a hack ( https://github.com/nim-lang/Nim/wiki/Whitespace-FAQ#tabs-vs-... ), was interested in learning u…
-
comment
Comment #21369035
Yes, but I think they are emphasising that only a promise will be returned. Any further type information is not given
-
comment
Comment #19299976
The code is also compiled to native code, but it's written declaratively. It's not for everyone, but it's not the same as Electron. Even still you have the option to use the tradit…
-
comment
Comment #15706616
Typescript is great at catching bugs which would trickle down to the end user
-
comment
Comment #15296032
They are using the Monaco editor component of VSCode, not forking it
-
comment
Comment #14567942
UI themes, and a much more cohesive default theme
-
comment
Comment #14424321
Atom: the bloat of an IDE with the features of a text editor. At least there are plugins :/
-
comment
Comment #14308854
They try, but there is not really predictable and simple way to select those fonts in CSS. I've had times when Courier was used on Linux because the MS fonts we installed. I would …
-
comment
Comment #14265552
Admiring the optimism but having an untested reimplementation of node would make people a lot less confident in using the project
-
comment
Comment #14257337
Doesn't headless mode just mean rendering to a bitmap instead of a window?
-
comment
Comment #13807095
As others speculated I meant parentheses around the condition - my mistake, I should have qualified
-
comment
Comment #13804470
What's the argument for required brackets around if (conditions) and switch (conditions)? To me they seem redundant. -- As a side point, I hope switch statements are less like C an…
-
comment
Comment #13782135
Still does not allow tabs for indentation - same problem as `make` but inverted
-
comment
Comment #13667606
*Canonical
-
comment
Comment #13659251
Why not fixed-size ints - uint8_t, etc. from stdint.h? I've not been using C for a while, so I wonder what the viewpoints are regarding this.
-
comment
Comment #13373967
I mean if anything the syntax should me more specialised as you go into sub-keywords, which makes sense in this industry (e.g. ISO 8601). The problem is that `extern` seems to have…
-
comment
Comment #13373264
For me what's quite unnerving about `extern crate` is that the `extern` keyword has another function, that is to declare foreign functions [0]. `extern crate` on the other hand, is…
-
comment
Comment #13317529
Gtk3 supports macOS natively
-
comment
Comment #10480209
You could use Chrome which bundles Flash. The RPM is linked on the download page https://www.google.co.uk/chrome/browser/desktop/
-
comment
Comment #9824582
You could use ` backticks instead and use both " and ' in strings without worry
-
comment
Comment #9719210
Also see ES2015's Array.from() Array.from( ) https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe...
-
comment
Comment #9422951
> It's nice to see Google finally dogfooding Polymer in their own products
- story
-
comment
Comment #9068514
> you cannot do overlay blurring like iOS, for example this may change in the future - the backdrop-filter CSS property should allow you to do exactly that, and support has already…