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

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

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

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

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

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

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

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

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

www.esetupdate.ir www.esetupdate.ir
دانلود Coursera - Functional Programming Principles in Scala مشاهده تصاویر بیشتر ...
مشاهده تصاویر بیشتر ...
تعداد مشاهده

12237مشاهده |

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

لینک های دانلود فقط برای اعضای ویژه فعال هست

با پرداخت فقط 9900 تومان، به لینک های دانلود این صفحه و تمامی صفحات VIP سایت دسترسی خواهید داشت.

پرداخت ریالی عضویت ویژه

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

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

www.esetupdate.ir
فهرست نرم افزارهای مرتبط
مشاهده بقیه
هشتگ های مرتبط
سرور آپدیت نود 32
پیشنهاد سافت گذر
Google Drive 2.25.100.1 for Android +6.0

Google Drive 2.25.100.1 for Android +6.0

گوگل درایو اندروید

Monster Legends - RPG 11.0.3 for android +4.0.3

Monster Legends - RPG 11.0.3 for android +4.0.3

افسانه هیولاها

تلاوت مجلسی استاد شحات محمد انور سوره مبارکه کهف

تلاوت مجلسی استاد شحات محمد انور سوره مبارکه کهف

تلاوت سوره کهف شحات محمد انور

Pluralsight - Enterprise Strength Mobile Device Security

Pluralsight - Enterprise Strength Mobile Device Security

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

SBK 22

SBK 22

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

حضرت زهرا(س) کیست؟  از زبان آیت الله حسین مظاهری

حضرت زهرا(س) کیست؟ از زبان آیت الله حسین مظاهری

حضرت زهرا(س) کیست؟ از زبان آیت الله حسین مظاهری

ساخت هلیکوپترهای فوق سبک کوچک

ساخت هلیکوپترهای فوق سبک کوچک

آشنایی با ساخت هلیکوپترهای یک یا دو نفره

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

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

شکسپیر نویسنده، شاعر، بازیگر و نمایشنامه نویس

IrfanView 4.66 Commercial

IrfanView 4.66 Commercial

ویرایشگر عکس ساده

Warhammer 40,000 - Kill Team

Warhammer 40,000 - Kill Team

نبرد کوبنده 40000 - گروه کشتار

جستجو در اینترنت

جستجو در اینترنت

آموزش تحقیق در اینترنت

شاهچراغ (ع) 1394.4.0.1.01 برای اندروید 1.6+

شاهچراغ (ع) 1394.4.0.1.01 برای اندروید 1.6+

نرم افزار حضرت شاهچراغ (ع)

BREAK ARTS II + Updates

BREAK ARTS II + Updates

ربات های جنگی

Train Simple - Muse CC Fundamentals

Train Simple - Muse CC Fundamentals

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

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

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

آموزش و آشنایی با فیسبوک برای والدین

Mini Motor Racing 2.0.2 for Android 2.3

Mini Motor Racing 2.0.2 for Android 2.3

ماشین سواری در Race

ooVoo 7.0.4.3

ooVoo 7.0.4.3

بهترین برنامه برای ارتباط و چت صوتی تصویری اینترنتی رایگان

سخنرانی استاد رفیعی با موضوع صفت رضایت و رضوان خدا

سخنرانی استاد رفیعی با موضوع صفت رضایت و رضوان خدا

سخنرانی استاد رفیعی با موضوع خداوند

Autodesk 3DS MAX 2025 / 2024 / 2023.3 / 2022.3 / 2021.3.2 / 2020.3.2

Autodesk 3DS MAX 2025 / 2024 / 2023.3 / 2022.3 / 2021.3.2 / 2020.3.2

تری دی مکس

Power Battery 1.9.8.1 for Android +4.1

Power Battery 1.9.8.1 for Android +4.1

پاور باتری

Moonlighter - Between Dimensions

Moonlighter - Between Dimensions

اکشن برای کامپیوتر

تواشیح ( همخوانی ) دلنشین توبه گروه اسوه

تواشیح ( همخوانی ) دلنشین توبه گروه اسوه

تواشیح توبه ( یا رب تقبل توبتنا ) گروه اسوه

Train Sim World 3

Train Sim World 3

شبیه ساز قطار برای کامپیوتر

سیستم عامل پیشرفته - ویندوز 7 و لینوکس دبیان

سیستم عامل پیشرفته - ویندوز 7 و لینوکس دبیان

windows 7 Linux

InShot Video Editor 2.113.1481 For Android +7.0

InShot Video Editor 2.113.1481 For Android +7.0

ویرایش گر عکس اینشات

CPU-Z 1.43 / CPU-X 1.40.4 for Android +2.2

CPU-Z 1.43 / CPU-X 1.40.4 for Android +2.2

سی پی یو زد

معجزات حضرت ابوالفضل العباس (ع) پس از شهادت

معجزات حضرت ابوالفضل العباس (ع) پس از شهادت

معجزات حضرت عباس (ع) بعد از شهادت

Agent Walker Secret Journey

Agent Walker Secret Journey

کارآگاه واکر

آموزش ترفندهای فتوشاپ

آموزش ترفندهای فتوشاپ

آشنایی با تکنیک ها و کلک هایی در Photoshop

EasyPHP DevServer 17.0

EasyPHP DevServer 17.0

نرم افزار اجرا فایل های PHP و ساخت لوکال هاست

Age of Empires III: Complete Collection

Age of Empires III: Complete Collection

بهترین بازی های استراتژیک کامپیوتر

QTranslate 6.10.0 + Portable

QTranslate 6.10.0 + Portable

ترجمه آنلاین متن

Wise Disk Cleaner 11.2.2.841

Wise Disk Cleaner 11.2.2.841

پاکسازی فضای هارد از فایل های اضافی

Made Man

Made Man

اعتراف به خونخواهی خانوادگی

Super Moose

Super Moose

گوزن قهرمان

احکام بانوان مطابق با فتاوای آیت الله سبحانی

احکام بانوان مطابق با فتاوای آیت الله سبحانی

آشنایی ساده و روان با احکام بانوان

Pluralsight - Cisco CCNA Part 1/2/3/4 + Cisco CCNA WAN Technologies/Advanced Ethernet and File Management/IP Routing

Pluralsight - Cisco CCNA Part 1/2/3/4 + Cisco CCNA WAN Technologies/Advanced Ethernet and File Management/IP Routing

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

GAMS Distribution 23.5.1 x86 / 24.1.2 x86/x64

GAMS Distribution 23.5.1 x86 / 24.1.2 x86/x64

سیستم قدرتمند مدل سازی GAMS

Citavi 6.3.0.0 / 5.7.1.0 / 5.4.0.2 / 5.0.0.11 / 4.5.0.11

Citavi 6.3.0.0 / 5.7.1.0 / 5.4.0.2 / 5.0.0.11 / 4.5.0.11

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

Torchlight II‌

Torchlight II‌

مشعل درخشان 2 - نسخه اختصاصی سافت‌گذر

خبرنامه

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