Открыто

Scala [ENG]

Тема в разделе "Электронные книги", создана пользователем eduard1, 29 июл 2014.

Цена: 14300р.
Взнос: 14300р.

Список пока что пуст. Запишитесь первым!

  1. 29 июл 2014
    #1
    eduard1
    eduard1 ЧКЧлен клуба

    Scala [ENG]

    [​IMG]
    Simple Build Tool: sbt. The idea of a high quality build tool for Scala is indeed simple, but sbt itself is richly-featured and powerful. Documentation for sbt is sparse, and the blogs, tutorials, and other bits scattered across the web leave you wanting a comprehensive, accurate picture of how to build Scala projects effectively and efficiently. This book will help you transform ugly, complex builds into a streamlined, automated, and repeatable process.

    SBT in Action is first and foremost a tutorial about effectively building Scala projects. It introduces the sbt tool with a simple project that establishes the fundamentals of running commands and tasks. Next, it shows you how to use the peripheral libraries in sbt to make common tasks simpler. This includes an I/O library to deal with files and how to parse user input in a meaningful fashion. Finally, it covers how to deploy software effectively.


    [​IMG]
    Scalability = Functional Programming + Objects


    [​IMG]
    Practical Functional Programming for the JVM


    [​IMG]
    Building scalable, concurrent systems is hard. Think parallelism and we think about threads. Using threads for parallelism is not only difficult but also not scalable. You can only create a certain number of threads on a box. On the other hand you can create a million Akka actors on a box. Also it is difficult to scale out (parallel scaling) using threads. Any multi threaded application likely has the keyword synchronized peppered throughout the code base. It does not follow any pattern which makes the code base and application difficult to manage and it also indicates the difficulty in managing threads.
    The Akka framework has brought Actors to the Java virtual machine. Actors way of doing parallelism is way simpler than multi-threaded applications. Scala is a modern programming language for the Java Virtual Machine (JVM) that combines the best features of object-oriented and functional programming languages. Using Scala one can write concise programs with the power of concurrency. Since Scala runs on the JVM, it can access any Java library and is interoperable with Java frameworks. This book is a practical guide to use Akka along with power of Scala to design business solutions for scalability, fault tolerant concurrent systems. It introduces the topics of concurrency, Scala and Akka which are then blended together to provide a solution on steroids for modern day web scale applications.


    [​IMG]
    This should be your first Scala book, not your last. We show
    you enough to become familiar and comfortable with the
    language – competent, but not expert. You’ll write useful Scala
    code, but you won’t necessarily be able to read all the Scala
    code you encounter.
    When you’re done, you’ll be ready for more complex Scala
    books, several of which we recommend at the end of this one.
    This is a book for a dedicated novice. “Novice” because you
    don’t need prior programming knowledge, but “dedicated”
    because we’re giving you just enough to figure it out on your
    own. We give you a foundation in programming and in Scala
    but we don’t overwhelm you with the full extent of the
    language.
    Beginning programmers should think of it as a game: You can
    get through, but you’ll need to solve a few puzzles along the
    way. Experienced programmers can move rapidly through the
    book and find the place where they need to slow down and
    start paying attention.


    [​IMG]
    Your software needs to leverage multiple cores, handle thousands of users and terabytes of data, and continue working in the face of both hardware and software failure. Concurrency and parallelism are the keys, and Seven Concurrency Models in Seven Weeks equips you for this new world. See how emerging technologies such as actors and functional programming address issues with traditional threads and locks development. Learn how to exploit the parallelism in your computer’s GPU and leverage clusters of machines with MapReduce and Stream Processing. And do it all with the confidence that comes from using tools that help you write crystal clear, high-quality code.


    [​IMG]
    Beginning Scala, Second Edition takes a down-to-earth approach to teaching Scala that leads you through simple examples that can be combined to build complex, scalable systems and applications.

    This book introduces you to the Scala programming language, its object-oriented and functional programming characteristics, and then guides you through Scala constructs and libraries that allow you to assemble small components into high-performance, scalable systems. You will learn why Scala is judiciously used for critical business applications by leading companies such as Twitter, LinkedIn, Foursquare, the Guardian, Morgan Stanley, Credit Suisse, UBS, and HSBC.

    Scala is a multi-paradigm programming language that combines both functional and object-oriented languages. Moreover, this highly scalable language lends itself well to building cloud-based/deliverable Software as a Service (SaaS) online applications.


    [​IMG]
    Akka is a Scala-based toolkit that simplifies developing concurrent distributed applications. Akka uses Actors-independently executing processes that communicate via message passing—as the foundation for fault-tolerant applications where individual actors can fail without crashing everything. Perfect for high-volume applications that need to scale rapidly, Akka is an efficient foundation for event-driven systems that want to scale elastically up and out on demand, both on multi-core processors and across server nodes.

    Akka in Action is a comprehensive tutorial on building message-oriented systems using Akka. The book takes a hands-on approach, where each new concept is followed by an example that shows you how it works, how to implement the code, and how to (unit) test it. You'll learn to test and deploy an actor system and scale it up and out, showing off Akka's fault tolerance. As you move along, you'll explore a message-oriented event-driven application in Akka. You'll also tackle key issues like how to model immutable messages and domain models, and apply patterns like Event Sourcing, and CQRS. The book concludes with practical advice on how to tune and customize a system built with Akka.


    [​IMG]
    Modern distributed applications must deliver near-realtime performance while at the same time managing big data and high user loads spread across environments ranging from cloud systems to mobile devices. Unlike traditional enterprise applications that enforce highly-structured pathways for data and procedures, Reactive applications are built around loosely-coupled, asynchronous components that "react" efficiently to events like competition for shared resources, system failures, and user demands. These systems are highly-concurrent and fault-tolerant, with minimal dependencies among individual system components. Because they're designed to use fresh tools like Scala and Akka, they can combine familiar ideas, such as message passing, with new ideas like actor-based concurrency and CQRS, the Command-Query-Responsibility-Segregation data pattern.

    Reactive Design Patterns is a clearly-written guide for building event-driven distributed systems that are resilient, responsive, and scalable. In it, you'll find patterns for messaging, flow control, resource management, and concurrency, along with practical issues like test-friendly designs. All patterns include concrete examples using Scala and Akka. In some cases, you'll also see examples in Java, JavaScript, and Erlang. Software engineers and architects will learn patterns that address day-to-day distributed development problems in a fault-tolerant and scalable way. Project leaders and CTOs will gain a deeper understanding of the reactive design philosophy.


    [​IMG]
    Functional programming (FP) is a programming style emphasizing functions that return consistent and predictable results regardless of a program's state. As a result, functional code is easier to test and reuse, simpler to parallelize, and less prone to bugs. Scala is an emerging JVM language that offers strong support for FP. Its familiar syntax and transparent interoperability with existing Java libraries make Scala a great place to start learning FP.

    Functional Programming in Scala is a serious tutorial for programmers looking to learn FP and apply it to the everyday business of coding. The book guides readers from basic techniques to advanced topics in a logical, concise, and clear progression. In it, you'll find concrete examples and exercises that open up the world of functional programming.

    You'll discover simple but powerful ideas and techniques that cut through the complexity of modern software engineering, including writing multi-core and distributed programs. You'll learn how FP gives you high confidence in the correctness of your code and helps you design software at high levels of abstraction so that even very large systems become comprehensible at a glance.


    [​IMG]
    Scala is a modern programming language for the Java Virtual Machine (JVM) that combines the best features of object-oriented and functional programming languages. Using Scala, you can write programs more concisely than in Java, as well as leverage the full power of concurrency. Since Scala runs on the JVM, it can access any Java library and is interoperable with Java frameworks.

    Scala for the Impatient concisely shows developers what Scala can do and how to do it. In this book, Cay Horstmann, the principal author of the international best-selling Core Java™, offers a rapid, code-based introduction that’s completely practical. Horstmann introduces Scala concepts and techniques in “blog-sized” chunks that you can quickly master and apply. Hands-on activities guide you through well-defined stages of competency, from basic to expert.


     
  2. Последние события

    1. Mr Xorcistrs
      Mr Xorcistrs не участвует.
      7 окт 2017
    2. Mr Xorcistrs
      Mr Xorcistrs участвует.
      7 окт 2017
    3. diman55
      diman55 не участвует.
      10 май 2016
    4. diman55
      diman55 участвует.
      15 апр 2016
  3. Обсуждение
  4. 29 июл 2014
    #2
    eduard1
    eduard1 ЧКЧлен клуба
    Более того - я ещё и идеалист и максималист. :D
    Надо верить в лучшее - мечты сбывается, если их начать претворять в жизнь ... :cool:
    И пора уже переходить на другой уровень - не только на русском книги покупать. :)
     
    1 человеку нравится это.
  5. 29 июл 2014
    #3
    Greya
    Greya БанЗабанен
    Часть книг есть в паблике и двже на русском. Некоторые- слабые дубликаты. Может подчистить коллекцию?
    Заголовок нужно более интересный. Типа новые технологии для ява программистов, функциональное программирование.
     
  6. 30 июл 2014
    #4
    eduard1
    eduard1 ЧКЧлен клуба
    Данные книги у меня тоже есть - но хочется в нормально качестве и в формате PDF.
    Beginning Scala - здесь речь идёт об издании 2015 года.
    Progamming Scala - новая редакция.
    Scala for the impatient - тоже есть на русском, но лучше иметь оригинал в PDF. Можно сравнить оригинал и русское издание ... ;)
    Есть и другие по Scala - но весь книг точно нет в паблике - здесь указаны самые нрвые книги - более того часть из них только в черновиках только пока ... :cool:
    И эти книги стоят того - функциональное программирование с наскока не возьмёшь - здесь надо выкладываться по полной.
     
  7. 31 июл 2014
    #5
    Greya
    Greya БанЗабанен
    Настроился ты серьезно :) ну курсере прошел курсы?
     
  8. 31 июл 2014
    #6
    eduard1
    eduard1 ЧКЧлен клуба
    Мне нравится с книг начинать - нужно каждое слово видеть.
    Курсы уже будет следующий шаг. :cool:
     
  9. 31 июл 2014
    #7
    eduard1
    eduard1 ЧКЧлен клуба
    После этой складчины можно собраться и ещё на видео-курсы по Scala.
    Возможно и другие тоже ...
     
    1 человеку нравится это.
  10. 3 авг 2014
    #8
    ProtonV
    ProtonV БанЗабанен
    я за видео! Если оно с транскриптом - то это, считай, книга и есть )
     
  11. 3 авг 2014
    #9
    eduard1
    eduard1 ЧКЧлен клуба
    Участвуя в этой складчине, можно намного увеличить шанс появления складчины на видео. ;)
    Вместе мы сила! :cool:
     
  12. 5 авг 2014
    #10
    eduard1
    eduard1 ЧКЧлен клуба
    Часть из этих книг есть в формате epub - но они ужасно отформатированы и не факт что появятся в хорошем качестве в PDF в паблике.
    Поэтому и задумано было брать самим этот сборник и всегда иметь доступ к обновлениям ...
    Следовательно у меня вопрос - что ты имеешь под "есть в наличии" ?
     
  13. 5 авг 2014
    #11
    tocaboca
    tocaboca БанЗабанен
    При чем здесь паблик? Я говорю о легально купленных альфабуках у данных издательств( многое покупаю ещё на стадии альфа или предзаказа). Т.е. часть из того, что планировалось купить уже куплено мною. Я предлагаю данные книги исключить из основного списка и я добавлю их в качестве бонуса
     
    1 человеку нравится это.
  14. 5 авг 2014
    #12
    eduard1
    eduard1 ЧКЧлен клуба
    Тогда вообще замечательно! :cool:
    Если так пошло, то ещё можем добавить несколько книг ...
    Зачем отказывать себе в хороших книгах по данной теме. ;)
     
  15. 5 авг 2014
    #13
    eduard1
    eduard1 ЧКЧлен клуба
    Много народу здесь ждать не приходится - здесь одни "гурманы" и "эстеты" собрались. :)
    Зато есть прекрасный шанс получить отличную коллекцию книг для дальнейшего изучения ... :cool:
    Так что не надо стесняться - записываемся смелее!
     
  16. 5 авг 2014
    #14
    tocaboca
    tocaboca БанЗабанен
    Эти книги лучше отдельной складчиной сделать, во-первых, сумма и так большая для многих складчиков, а во-вторых, не впишемся по лимитам, администрация не даст мне права организовать( персональный аттестат получу не раньше конца месяца)
     
  17. 5 авг 2014
    #15
    eduard1
    eduard1 ЧКЧлен клуба
    Ты не волнуйся - мы тебя подождём ... ;)
    Многие вообще сомневаются , что эта складчина состоится - а мы её всё равно постараемся провести на высшем уровне! :cool:
     
    1 человеку нравится это.
  18. 8 сен 2014
    #16
    YuriiKyiv
    YuriiKyiv ЧКЧлен клуба
    Здесь можно найти скидку до 40% на некоторые книги из этой коллекции

    Удачи.
     
  19. 15 мар 2019
    #17
    ripless
    ripless ДолжникДолжник
    Добрый день! Нужны дампы с тестами по скале.
     

Поделиться этой страницей