Viewing profile — supergreg
supergreg
HN member- Joined
- Tue, Nov 03, 2015, 4:20 PM UTC
- HN karma
- 525
- Public activity
- 201 items
- HN profile
- View on Hacker News ↗
About supergreg
No profile information was provided.
Recent public activity
-
comment
Comment #16295608
Which is why browsers take so seriously the time to first paint despite the efforts by javascript frameworks to push it back.
-
comment
Comment #16290317
Edit: I misinterpreted the question at first. I guess in TS you declare a class' properties explicitly while in javascript it is usually done in the constructor. The feature must b…
-
comment
Comment #16273280
Are there gateways to see how it works before trying it out myself?
-
comment
Comment #16238944
I had remapped w to cycle to the next pane so I had no idea of the window list. Thanks for that.
-
comment
Comment #16238894
So it's a remix. What was that about good artists steal?
-
comment
Comment #16230436
Just warn them that at some point in time the feature will cease to work. I see these warnings in the console all the time for broken SSL CAs and deprecated DOM APIs.
-
comment
Comment #16173640
Because it would make moving away from lambda much easier.
-
comment
Comment #16167686
What is this superb country you live in?
-
comment
Comment #16134266
Same in Spanish. At my company we use only English for code, even comments. And are trying to push for jira tickets to be written in English only as well. At least among the develo…
-
comment
Comment #16132904
I've seen a couple of Spanish versions of Python out there, just novelties, never seen them move beyond a proof of concept. There's a whole bunch of esoteric programming languages …
-
comment
Comment #16084541
It could be if there's someone willing to pay for it being added.
-
comment
Comment #16045865
If you are looking for open source, I think Discourse is the best out there. We tried to move a community from an old phpbb forum to a newer software some years ago and checked sev…
-
comment
Comment #16045825
> Usenet is free Last time I checked it needed you to subscribe through some provider who charges money, ISPs used to offer it with the Internet access. Is it really possible to ac…
-
comment
Comment #16029377
I don't think they can enforce their TOC just by opening the page. I need to open it just to read the TOC in the first place. By reading this comment you consent to agreeing with i…
-
comment
Comment #16029329
I'll trust the block lists from my internet neighbors. Thank you for your concern but the people who build those lists take sufficient care and most use a transparent process to ad…
-
comment
Comment #15999349
Where does Mono fit in all this?
-
comment
Comment #15892725
Maybe we could look at the problem from the other side. Create tools to manage multi-repos like if they were a single mono-repo. A docke-compose for git.
-
comment
Comment #15860887
Seems like it only downloads from CDNs.
-
comment
Comment #15849021
Then generate a session id and invalidate the URI after first use.
-
comment
Comment #15809716
Don't free and open source licenses apply only during redistribution of the software? Unless it is licensed with the Affero GPL, just connecting to a service does not require its s…
-
comment
Comment #15779030
Cool
-
comment
Comment #15757314
I remember one IronPython book that made a spreadsheet application that allowed the user to use python itself for the spreadsheet functions. I think it was a great idea. The softwa…
- comment
-
comment
Comment #15735387
Looked around and there's a proposal for an easier way to bind `this` and some discussion about extending that to class methods: https://github.com/tc39/proposal-bind-operator/issu…
-
comment
Comment #15735270
Do arrow functions get added to the prototype or the instance of the object? Can they be created directly in the class body or have to be added inside the class constructor?