سافت گذر دانشنامه نرم افزار - دانلود رایگان نرم افزار

همه دسته بندی ها

منو
آیکون جستجو در سایت سافت گذر
اطلاعیه های مهم سایت اطلاعیه های مهم سایت
💐 میلاد زینت پدر حضرت زینب سلام الله علیها مبارک باد 💐
 
 
  1. جهت رفع مشکل باز شدن سایت به دلیل بلاک توسط  نود 32 این ویدیو یا این ویدیو(ورژن 9 به بالا) یا راهنمای تصویری را مشاهده کنید
  2. اکانت های بروزرسانی نود32 با قیمت های مناسب به صورت یک ، سه ، شش و دوازده ماهه از اینجا قابل خرید می باشد.

نرم افزار های پرکاربرد

ثبت نام | ورود
Coursera - Functional Programming Principles in Scala

دانلود Coursera - Functional Programming Principles in Scala - فیلم آموزش اصول برنامه‌نویسی تابعی در اسکالا

دانلود فیلم آموزش اصول برنامه‌نویسی تابعی در اسکالا

توضیحات بیشتر

دانـلـود کـنـیـد

سرور آپدیت نود 32
دانلود Coursera - Functional Programming Principles in Scala مشاهده تصاویر بیشتر ...
مشاهده تصاویر بیشتر ...
تعداد مشاهده

12718مشاهده |

768رأی |

امتیاز :3.3

ناشر / تولید کننده:

Coursera

سیستم عامل / حجم فایل:

1/11 GB / همه ویندوزها

آخرین بروزرسانی:

اسکالا یکی از برترین بسترهای برنامه‌نویسی تابعی و شیء‌گرا می‌باشد که به کاربران امکان خلق برنامه‌های کارآمد را در یک پروسه‌ی سریع و غنی می‌دهد. برنامه‌نویسی تابعی که در دنیا تحت عنوان Functional Programming شناخته می‌شود بطور فزاینده‌ای در صنعت برنامه‌سازی در حال گسترش است؛ هر کسی نیز مهارت خلق اپلیکیشن‌های استاندارد با آن را ندارد چرا که این مهم حتماً نیازمند آموزش‌های زیربنایی می‌باشد. با توجه کافی و پرداخت عملی به مهارت‌های تدریس شده در این دوره‌ی آموزشی تصویری، بطور مفصل تکنیک‌ها و اصول برنامه‌نویسی تابعی در Scala را یاد خواهید گرفت.

 

محتوای آموزش:

1- درک اصول برنامه‌نویسی تابعی

2- نوشتن برنامه‌های تابعی با استفاده از توابع بازگشتی

3- تطابق الگو و توابع "مرتبه بالاتر"

4- ترکیب برنامه‌نویسی تابعی با آبجکت‌ها و کلاس‌ها

5- مباحث مربوط به Design Immutable Data Structures

6- مباحث مربوط به خواص توابع

7- درک انواع عمومی برای برنامه‌های کاربردی و تابعی

 

تولید کننده: Coursera

زبان: انگلیسی

سطح: متوسط

تعداد ویدئوها: 40 ویدئوی آموزشی بصورت جداگانه

مدرس: Martin Odersky, Professor

 

فهرست کامل سرفصل‌ها و عناوین آموزش:

Getting Started + Functions & Evaluation

Get up and running with Scala on your computer. Complete an example assignment to familiarize yourself with our unique way of submitting assignments. In this week, we'll learn the difference between functional imperative programming. We step through the basics of Scala; covering expressions, evaluation, conditionals, functions, and recursion

Video · Course Introduction

Video · Tools Setup for Linux

Video · Tools Setup for Mac OS X

Video · Tools Setup for Windows

Practice Programming Assignment · Example Assignment

Reading · Tools Setup (Please read)

Reading · Cheat Sheet

Reading · IntelliJ IDEA Tutorial

Reading · Eclipse Tutorial

Reading · SBT tutorial and Submission of Assignments (Please read)

Reading · Learning Resources

Reading · Scala Tutorial

Reading · Scala Style Guide

Video · Lecture 1.1 - Programming Paradigms

Video · Lecture 1.2 - Elements of Programming

Video · Lecture 1.3 - Evaluation Strategies and Termination

Video · Lecture 1.4 - Conditionals and Value Definitions

Video · Lecture 1.5 - Example: square roots with Newton's method

Video · Lecture 1.6 - Blocks and Lexical Scope

Video · Lecture 1.7 - Tail Recursion

Programming Assignment · Recursion


Higher Order Functions

This week, we'll learn about functions as first-class values, and higher order functions. We'll also learn about Scala's syntax and how it's formally defined. Finally, we'll learn about methods, classes, and data abstraction through the design of a data structure for rational numbers

Video · Lecture 2.1 - Higher-Order Functions

Video · Lecture 2.2 - Currying

Video · Lecture 2.3 - Example: Finding Fixed Points

Video · Lecture 2.4 - Scala Syntax Summary

Video · Lecture 2.5 - Functions and Data

Video · Lecture 2.6 - More Fun With Rationals

Video · Lecture 2.7 - Evaluation and Operators

Programming Assignment · Functional Sets

 

Data and Abstraction

This week, we'll cover traits, and we'll learn how to organize classes into hierarchies. We'll cover the hierarchy of standard Scala types, and see how to organize classes and traits into packages. Finally, we'll touch upon the different sorts of polymorphism in Scala

Video · Lecture 3.1 - Class Hierarchies

Video · Lecture 3.2 - How Classes Are Organized

Video · Lecture 3.3 - Polymorphism

Programming Assignment · Object-Oriented Sets

 

Types and Pattern Matching

This week we'll learn about the relationship between functions and objects in Scala; functions *are* objects! We'll zoom in on Scala's type system, covering subtyping and generics, and moving on to more advanced aspects of Scala's type system like variance. Finally, we'll cover Scala's most widely used data structure, Lists, and one of Scala's most powerful tools, pattern matching

Video · Lecture 4.1 - Objects Everywhere

Video · Lecture 4.2 - Functions as Objects

Video · Lecture 4.3 - Subtyping and Generics

Video · Lecture 4.4 - Variance (Optional)

Video · Lecture 4.5 - Decomposition

Video · Lecture 4.6 - Pattern Matching

Video · Lecture 4.7 - Lists

Programming Assignment · Huffman Coding

 

Lists

This week we dive into Lists, the most commonly-used data structure in Scala.

Video · Lecture 5.1 - More Functions on Lists

Video · Lecture 5.2 - Pairs and Tuples

Video · Lecture 5.3 - Implicit Parameters

Video · Lecture 5.4 - Higher-Order List Functions

Video · Lecture 5.5 - Reduction of Lists

Video · Lecture 5.6 - Reasoning About Concat

Video · Lecture 5.7 - A Larger Equational Proof on Lists

 

Collections

After a deep-dive into Lists, this week we'll explore other data structures; vectors, maps, ranges, arrays, and more. We'll dive into Scala's powerful and flexible for-comprehensions for querying data

Video · Lecture 6.1 - Other Collections

Video · Lecture 6.2 - Combinatorial Search and For-Expressions

Video · Lecture 6.3 - Combinatorial Search Example

Video · Lecture 6.4 - Maps

Video · Lecture 6.5 - Putting the Pieces Together

Video · Conclusion

Programming Assignment · Anagrams
VIP Members
Exclusive downloads for VIP members

Unlimited access for just $7.5/month (billed annually).

دسترسی لینک ها برای کاربران خارج از کشور امکان پذیر نیست! در صورت فعال بودن پروکسی آن را غیر فعال کنید.

لطفا آموزش‌های بیشتری از کورسرا رو قرار بدید. بیشتر در زمینه برنامه نویسی

سلام. خیلی خوبه که آموزش کورسرا رُ قرار دادین. لطفا این روند و ادامه بدین. ممنون.

شبکه کالا
فهرست نرم افزارهای مرتبط
مشاهده بقیه
هشتگ های مرتبط
حمایت مالی

حمایت از سافت گذر ❤️

تاکنون 0 نفر از ما حمایت کرده‌اند
امروز 0

با حمایت شما، هزاران کاربر دیگر هم از خدمات رایگان ما استفاده می‌کنند.
تیم سافت گذر از حمایت شما سپاسگزار است 🙏

حامی سافت گذر می‌شوم
سرور آپدیت نود 32
پیشنهاد سافت گذر
Summer in Mara v1.9

Summer in Mara v1.9

ماجراجویی برای کامپیوتر

Xenocide

Xenocide

نسل‌کشی زامبی‌ها

نگرش های یادگرفتن زبان انگلیسی که موسسات و دانشگاه ها به شما نمی گویند

نگرش های یادگرفتن زبان انگلیسی که موسسات و دانشگاه ها به شما نمی گویند

نگرش های یادگرفتن زبان انگلیسی

Lanota 2.5.0 for Android +2.3

Lanota 2.5.0 for Android +2.3

لانوتا

Microsoft Windows 7 latest version

Microsoft Windows 7 latest version

آخرین نسخه ویندوز

آی سی دی ال

آی سی دی ال

خودآموز مفاهیم پایه فناوری اطلاعات

Internet Download Manager (IDM) 6.42 Build 55 Retail Final

Internet Download Manager (IDM) 6.42 Build 55 Retail Final

اینترنت دانلود منیجر

چهره شناسی و ویژگیهای فردی اثر فرانسیس بو

چهره شناسی و ویژگیهای فردی اثر فرانسیس بو

چـهره خـوانـی اشخاص

آموزش اتصال به اینترنت از طریق GPRS گوشی

آموزش اتصال به اینترنت از طریق GPRS گوشی

آموزش اتصال به اینترنت از طریق جی پی آر اس

روش درمان بیماری‌های چشم، گوش و سینوزیت

روش درمان بیماری‌های چشم، گوش و سینوزیت

شیوه درمان سنتی و اسلامی بیماری‌های چشم، گوش و سینوزیت

گلچین بهترین مولودی های حاج محمود کریمی

گلچین بهترین مولودی های حاج محمود کریمی

مولودی کریمی

Into the Inferno

Into the Inferno

مستند آتشفشان دوبله فارسی

مداحی حاج محمود کریمی سال 95

مداحی حاج محمود کریمی سال 95

مداحی کریمی سال 95

Remote Desktop Manager 2025.3.22 + Enterprise

Remote Desktop Manager 2025.3.22 + Enterprise

مدیریت ریموت دسکتاپ

Autodesk AutoCAD Plant 3D 2026.1 / 2025.1 / 2024 / 2022.1.1 / 2021.1.1 / 2020.1 / 2019.2

Autodesk AutoCAD Plant 3D 2026.1 / 2025.1 / 2024 / 2022.1.1 / 2021.1.1 / 2020.1 / 2019.2

اتوکد پلنت تری دی

شب اول مراسم گرامیداشت سی و یکمین سالگرد ارتحال حضرت امام خمینی رحمت الله علیه

شب اول مراسم گرامیداشت سی و یکمین سالگرد ارتحال حضرت امام خمینی رحمت الله علیه

سی و یکمین سالگرد ارتحال بنیانگذار کبیر انقلاب اسلامی

گلچین بهترین مدیحه سرایی حاج  عبدالرضا هلالی

گلچین بهترین مدیحه سرایی حاج عبدالرضا هلالی

مولودی حاج عبدالرضا هلالی

Clash Royale 120169018 for Android +7.0

Clash Royale 120169018 for Android +7.0

کلش رویال

Udemy - Adobe Photoshop Course from Basic to Advacned for Graphics

Udemy - Adobe Photoshop Course from Basic to Advacned for Graphics

دوره آموزش گرافیک کامپیوتری با فتوشاپ

SD Memory Card Formatter 5.0.3 / macOS

SD Memory Card Formatter 5.0.3 / macOS

فرمت کننده مموری کارت

Udemy - The Complete Guide to Chess Tactics

Udemy - The Complete Guide to Chess Tactics

آموزش کامل شطرنج

HTML Compiler 025.20

HTML Compiler 025.20

تبدیل صفحات وب به فایل‌های اجرایی

چگونگی اخذ مدرک مهندسی شبکه MCSE

چگونگی اخذ مدرک مهندسی شبکه MCSE

چگونگی اخذ مدرک ام سی اس ای

Fuel - 2009

Fuel - 2009

جنگ برای سوخت در آخر دنیا

Vue xStream Pro 2016 R6 Build 602995 x64

Vue xStream Pro 2016 R6 Build 602995 x64

طراحی تصاویر 3 بعدی

آموزش فارسی برنامه نویسی Java

آموزش فارسی برنامه نویسی Java

آموزش برنامه نویسی جاوا

Autodesk AutoCAD Electrical 2026.0.1 / 2025.0.2 / 2024 / 2022.0.2 / 2021.0.1 / 2020.0.1

Autodesk AutoCAD Electrical 2026.0.1 / 2025.0.2 / 2024 / 2022.0.2 / 2021.0.1 / 2020.0.1

اتوکد الکتریکال

افزایش اعتماد به نفس

افزایش اعتماد به نفس

تاثیر اعتماد به نفس در زندگی

Full Convert Pro 25.10.1691 / Ultimate 25.10.1692

Full Convert Pro 25.10.1691 / Ultimate 25.10.1692

قویترین نرم افزار تبدیل انواع پایگاه داده (دیتابیس) به یکدیگر

جاذبه حسینی نسخه کامل 2.1.5 برای اندروید 2.1+

جاذبه حسینی نسخه کامل 2.1.5 برای اندروید 2.1+

نسخه کامل برنامه جاذبه حسینی ویژه اربعین

سیاحت غرب آقا نجفی قوچانی

سیاحت غرب آقا نجفی قوچانی

سرنوشت ارواح بعد از مرگ

کارگردانی فیلم اثر اریک شرمن

کارگردانی فیلم اثر اریک شرمن

سخنرانی هفتاد و پنج کارگردان بین المللی

Axis 4.5.3 for Android +4.0

Axis 4.5.3 for Android +4.0

1400 آیکون

Digital Tutors - Creating a Cross-Platform Mobile Game in HTML5 and JavaScript

Digital Tutors - Creating a Cross-Platform Mobile Game in HTML5 and JavaScript

فیلم آموزش ساخت یک بازی موبایلی چندپلتفُرمی با استفاده از اچ‌تی‌ام‌ال5 و جاوا اسکریپت

Farming Simulator 22 Platinum Edition v1.14.0.0  - 2024 Edition

Farming Simulator 22 Platinum Edition v1.14.0.0 - 2024 Edition

شبیه ساز کشاورزی

Turner

Turner

اکشن سکویی

دوره ویدئویی آموزش زبان آلمانی - به زبان فارسی ساده

دوره ویدئویی آموزش زبان آلمانی - به زبان فارسی ساده

آموزش زبان آلمانی

Udemy - The Complete ASP.NET MVC 5 Course

Udemy - The Complete ASP.NET MVC 5 Course

دوره آموزش برنامه‌نویسی

سـؤالات با اهمیـت پیـرامون حـجاب Hijab (Islamic clothing)

سـؤالات با اهمیـت پیـرامون حـجاب Hijab (Islamic clothing)

حـیاء چـیست؟

9Monkeys of Shaolin - New Games Plus

9Monkeys of Shaolin - New Games Plus

نُه میمون شائولین

خبرنامه

با عضویت در خبرنامه، زودتر از همه باخبر باش!