📜 ⬆️ ⬇️

The best reports of the DotNext 2015 Piter conference: Part 2 (Video inside)

Three days ago I talked about those reports of the DotNext 2015 Piter conference, which, according to a survey of participants, took places from 6 to 10. Now it's time to tell about the top five reports.




5th place


Kirill Skrygan, JetBrains - ReSharper vs. Roslyn
Average rating: 4.33
')


It would seem that ReSharper is a plugin for Visual Studio that extends the capabilities of the IDE. Roslyn - compiler (set of compilers). What common?

The fact is that in order to do all possible refactorings, tips, etc., ReSharper builds its own model, its own syntax tree. So, in it there is, in fact, half of the compiler, the front-end compiler. So, it can be compared with the Roslyn frontend, which Cyril did in this report.

Cyril placed accents not in favor of Roslyn:




The main conclusion that I made - Roslyn is still quite a raw product, and almost all the diseases described by Kirill are “children's”. Time will pass and Roslin will probably get rid of them all. Well, what will happen in reality - time will tell.






4th place


Roman Belov, JetBrains - Memory unit testing
Average rating: 4.33



Report about dotMemory Unit - a framework about Unit memory testing. What was in the report:


dotMemory Unit allows you to search not only for memory leaks by writing tests with a description of some limitations, but, moreover, to check how far the application behaves in runtime (in terms of memory consumption) behaves as planned. For example, to control the number of objects of some type available in runtime. From the examples given by Roma:




You can read more about the tool in the JetBrains blog here and here .




3rd place


Andrei DreamWalker Akinshin, Enterra - Let's talk about micro-optimizations of .NET applications
Average rating: 4.52



We all know the famous statement by Donald Knuth that premature optimizations are the root of all evil. Suppose in your project


What to do? That's right, you need to start to figure out how that piece of code that actually consumes all your CPU time is actually executed in your runtime. Andrei has sorted out and learned a lot of interesting things about how runtime is running in certain cases and, in particular, various JIT compilers (legacy JIT x86, legacy JIT x64, RyuJIT).

The report sorted out the following examples:




In December, a continuation of this report with new, in some places absolutely furious, examples can be heard on DotNext 2015 Moscow.




2nd place


Romuald Zdebsky, Microsoft - In the wake of BUILD 2015 - the .NET platform today and tomorrow
Average rating: 4.58



For the second time in a row, Roman made a survey report on where .NET is heading. From what I noted for myself:




Now, six months later, many articles have already been published on these topics and a lot of blog posts have been written. Win10 was released, many have already started writing for it. If you have not started yet, be sure to watch this video.




1 place


Dmitry Soshnikov, Microsoft - Magic F # for data processing: monads, type providers, and some machine learning
Average rating: 4.59



Dmitry Soshnikov and F # are practically synonyms in Russia. Dmitry loves this language very much, he has been studying it for a long time and loves to talk about it. The report was all - the basics of functional programming, a few minutes of matan, an example of a remote control of a turtle from Twitter, pattern recognition, and a few more fun and astounding pieces.



The talk is a great introduction to F # and functional programming in general.




findings



Links



And of course, I invite everyone to DotNext 2015 Moscow - the only .NET conference in Russia. Come to share experiences with colleagues and ask the experts about what you personally care about. See you!

Source: https://habr.com/ru/post/270889/


All Articles