>> Our project is a result of more than 7 years of industrial and consulting experience in different sectors, including transportation, automotive industry, retail and finance.
While technically the careful wording leaves open that Retail could mean 'sat on the board of Walmart' we all know it really means 'worked at a BestBuy'.
> Will ReSharper take advantage of Roslyn?
The short answer to this tremendously popular question is, no, ReSharper will not use Roslyn. There are at least two major reasons behind this.
The first reason is the effort it would take, in terms of rewriting, testing and stabilizing. We’ve been developing and evolving ReSharper for 10 years, and we have a very successful platform for implementing our inspections and refactorings. In many ways, Roslyn is very similar to the model we already have for ReSharper: we build abstract syntax trees of the code and create a semantic model for type resolution which we use to implement the many inspections and refactorings. Replacing that much code would take an enormous amount of time, and risk destabilizing currently working code. We’d rather concentrate on the functionality we want to add or optimize, rather than spend the next release cycle reimplementing what we’ve already got working.
The second reason is architectural. Many things that ReSharper does cannot be supported with Roslyn, as they’re too dependent on concepts in our own code model. Examples of these features include Solution-Wide Error Analysis, code inspections requiring fast lookup of inheritors, and code inspections that require having the “big picture” such as finding unused public classes. In cases where Roslyn does provide suitable core APIs, they don’t provide the benefit of having years of optimization behind them: say, finding all derived types of a given type in Roslyn implies enumerating through all classes and checking whether each of them is derived. On the ReSharper side, this functionality belongs to the core and is highly optimized.
The code model underlying ReSharper features is conceptually different from Roslyn’s code model. This is highlighted by drastically different approaches to processing and updating syntax trees. In contrast to ReSharper, Roslyn syntax trees are immutable, meaning that a new tree is built for every change.
Another core difference is that Roslyn covers exactly two languages, C# and VB.NET, whereas ReSharper architecture is multilingual, supporting cross-language references and non-trivial language mixtures such as Razor. Moreover, ReSharper provides an internal feature framework that streamlines consistent feature coverage for each new supported language. This is something that Roslyn doesn’t have by definition.
Technically to get HIV reproduction you need to wake up the virus, but if you are seeing more reproduction while the patient is on very effective HAART then it is not a good sign. What you want to see is a reduction in the integrated HIV (i.e. HIV DNA). Unfortunately, even with much stronger drugs this was not seen even after 8 weeks (see my main post above for the references).
Fetch is focused on turning your browsing history into a searchable knowledge base. Fetch doesn't just index links, it indexes content as well, and it ranks them by time spent, which is very handy to find the links you need quickly.Coming soon you will be able to sign in with the same acc into mozilla and safari as well, your history across browsers will be clubbed together making it all the more valuable.
Hi!
Since I'm not from US I have no idea whether this idea is good or not, but here are a few points from your fix form.
- no email validation / phone number, zipcode, comcast client# mask: Your user could easily mistype something without noticing
That's a great point! Right now we're manually following up with users if there's any problem, but I'll add better form validation to our roadmap. Thanks!