ruby on rails with flutter 2023 [Arabic]
- Description
- Curriculum
- FAQ
- Reviews
الدورات التدريبية الطويلة التي تطول وتضيع في التفاصيل؟ وتلك التي تتناسب مع تنسيق قصير ، تتصفح الموضوعات الأساسية؟
مع هذه الدورة ، تستثمر يومًا من وقتك في تعلم Ruby on Rails ، FAST and EASY.
لاختراق تعلم ريلز ، نعتمد على قانون باريتو: يتم الحصول على 80٪ من المعرفة المفيدة في 20٪ من الجهد. لذلك نتناول هنا الموضوعات الأساسية ، والموضوعات الأساسية فقط ، لاكتشاف هذا الإطار الذي يسهل الوصول إليه وقوي للغاية.
للترسيخ في سياق مشروع حقيقي ، نقوم في هذه الدورة بتطوير تطبيق ويب حقيقي. لديك الكود المصدري للرجوع إليه عند الحاجة (منشور على GitHub ، مع فرع واحد لكل جلسة من الدورة).
من خلال هذه التجربة ، ستكون جاهزًا لتطوير تطبيق الويب الخاص بك والانتقال من فكرة إلى منتج بسرعة كبيرة.
روبي هي لغة برمجة كائنية متعددة الاستخدام. وتمتاز اللغة بكونها لغة شيئية نقية كما تمتاز باحتوائها على كثير من خواص اللغات الوظيفية استخدامات لغة روبي :
– تطبيقات سطح المكتب – تطبيقات الويب – قواعد بيانات وسكربتات امن معلومات – والمزيد
سنتعلم في هذا الكورس مايلي :
1- اساسيات لغة البرمجة روبي
2- البرمجة كائنية التوجه
3- 10 مشاريع وامثلة
سيصبح بأمكانك ان تبدأ تطور نفسك في هذه اللغة
– تطبيقات ويب
– قواعد بيانات
– تطبيقات سطح المكتب
سأقوم بشرح امثلة جديدة اضافة الى شرح كامل لقواعد بيانات بشكل احترافي
ثم سأتطرق الى شرح واجهات رسومية تطبيقات سطح المكتب شامل
اضافة الى شرح رايلز اطار عملي روبي لبناء تطبيقات الويب
سنستمر في العطاء ونشر العلم
-
1IntroductionVideo lesson
عرض تقديمي للدورة: ما الذي ستتعلمه ، ولماذا نقوم بهذه الاختيارات وكيف سنكتشف Ruby on Rails.
-
2installation ruby on rails and node jsVideo lesson
Open a terminal in Kali Linux.
Update the package list by running the following command:
sudo apt update
Install Ruby using the following command:
sudo apt install ruby-full
After Ruby is installed, verify the installation by checking the version:
ruby --version
Install the build tools and libraries required for Ruby on Rails:
sudo apt install build-essential libssl-dev libreadline-dev zlib1g-dev
Install Node.js:
sudo apt install nodejs
Install the Yarn package manager (optional but recommended for managing JavaScript dependencies in Rails applications):
sudo apt install yarn
Install Ruby on Rails using the gem package manager:
gem install rails
After the installation completes, verify the installation by checking the Rails version:
rails --version
You may also need to install the SQLite database library, which is commonly used with Rails:
Copy code
sudo apt install libsqlite3-dev
-
3noteVideo lesson
-
4install postgresqlVideo lesson
link of website : https://techviewleo.com/how-to-install-postgresql-server-on-kali-linux/
-
5details aboute files of project ruby on railsVideo lesson
-
7how to create controller with view and make routing between pagesVideo lesson
-
8RoutingVideo lesson
-
9add code ruby into code htmlVideo lesson
-
10redirectingVideo lesson
-
11build system in just 1 min !Video lesson
-
12modelVideo lesson
-
13migration and railsVideo lesson
-
14rails vs rakeVideo lesson
-
15Active:relation , createVideo lesson
-
16active: relation , update , modify , saveVideo lesson
-
17CRUD action desplay dataVideo lesson
-
25make api for signup in ruby on rails with flutterVideo lesson
-
26add protection to your data in database with sanitizeVideo lesson
-
27send request to sign_up api from flutter to ruby on rails backendVideo lesson
-
28send request to sign_in api endpoind from flutter to ruby on railsVideo lesson
External Links May Contain Affiliate Links read more