Which is why browsers take so seriously the time to first paint despite the efforts by javascript frameworks to push it back.
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 be related to these dynamic properties.…
Are there gateways to see how it works before trying it out myself?
I had remapped <prefix> w to cycle to the next pane so I had no idea of the window list. Thanks for that.
So it's a remix. What was that about good artists steal?
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.
Because it would make moving away from lambda much easier.
What is this superb country you live in?
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 developers. Can't keep managers from using…
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 that don't use English, just like…
It could be if there's someone willing to pay for it being added.
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 several projects and most projects are…
> 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 access for free?
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 it. It doesn't work that way.
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 add rules to them, like GitHub pull…
Where does Mono fit in all this?
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.
Seems like it only downloads from CDNs.
Then generate a session id and invalidate the URI after first use.
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 source code to be available. That is…
Cool
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 software itself was available for download…
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/issues/39 Using arrow functions at the…
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?
The case would be solved if they added some syntax to bind a function to the class. Something like class Foo { bind function bar() { console.log(this); } } So behind the scene it would do `this.bar =…
Which is why browsers take so seriously the time to first paint despite the efforts by javascript frameworks to push it back.
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 be related to these dynamic properties.…
Are there gateways to see how it works before trying it out myself?
I had remapped <prefix> w to cycle to the next pane so I had no idea of the window list. Thanks for that.
So it's a remix. What was that about good artists steal?
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.
Because it would make moving away from lambda much easier.
What is this superb country you live in?
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 developers. Can't keep managers from using…
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 that don't use English, just like…
It could be if there's someone willing to pay for it being added.
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 several projects and most projects are…
> 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 access for free?
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 it. It doesn't work that way.
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 add rules to them, like GitHub pull…
Where does Mono fit in all this?
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.
Seems like it only downloads from CDNs.
Then generate a session id and invalidate the URI after first use.
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 source code to be available. That is…
Cool
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 software itself was available for download…
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/issues/39 Using arrow functions at the…
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?
The case would be solved if they added some syntax to bind a function to the class. Something like class Foo { bind function bar() { console.log(this); } } So behind the scene it would do `this.bar =…