Izveidot katram savu github repo, pievienot Maintain tiesības https://github.com/evaldsurtans un nosūtīt Evaldam linku whatsapp
Github struktūrai jābūt sekojošai (full stack uzdevumi salaboti pēc komentāriem un jaunie flask uzdevumi katrs savā folderī). Kad palaiž PyCharm vai webstorm, tad atvērt katru folder atsevišķi (nepievienot node_modules folder)
xxxxxxxxxx
51.\fullstack_1
2.\fullstack_2
3.\fullstack_3
4.\flask_1
5.\flask_2
Lai github pievienotu failus un izmaiņas aizliegts izmantot github.com web upload, atļauts tikai izmantot SourceTree, GitKranken, Git komandrindu, iebūtvēto Git Pycharm / Webstorm utt.
Git commits jābūt detalizēti dokumentētiem, aizliegti commits “update” vai “fix” bez paskaidrojumiem. Pieturēties pie šī naming convention: https://www.conventionalcommits.org/en/v1.0.0/#summary
Katram uzdevumam jābūt līdzi report dokumentācijai, kur piefiksēt neskaidrās lietas, jautājumus vai problēmas, piemēram .\flask_1\report.md
(MD rakstīšanai iesaku izmantot Typora vai ko līdzīgu)
Izpētīt http://overleaf.com un LaTeX zinātnisko darbu rakstīšanai Piemēri: https://share.yellowrobot.xyz/quick/2024-12-19-A7DFD46B-FCF3-4D21-89ED-ACE5910A4F9A.html
Izpētīt Linux komandas, Piemēri: https://share.yellowrobot.xyz/quick/2024-12-19-EF4A8ECF-4A99-4013-BB0B-1941262BF8A8.html Pamēģināt ar VirtualBox uzinstalēt Ubuntu un uz tā palaist kādus no radītajiem koda uzdevumiem. https://www.perplexity.ai/search/how-to-install-ubuntu-on-virtu-qSI6Pm43R6Oo5LyT_LoxVA
Video: https://youtube.com/live/G-FjSQjDky8?feature=share
Whiteboard: https://whiteboard.fi/1e716da0-126a-41d9-8394-3e021574dadb
Design Patterns Book: http://share.yellowrobot.xyz/quick/2023-9-6-9D54BEEF-ECEB-4C37-AC3E-2B2EF475ED31.pdf
Pirms kursa uzsākšanas nepieciešams:
Uzinstalēt pycharm izstrādes vidi: https://www.jetbrains.com/pycharm/
Uzinstalēt Anaconda 3.9 Python package vidi: https://www.anaconda.com/products/individual
Uzinstalēt pytorch bibliotēku, izmantojot conda packager (mājaslapā tiek ģenerēta attiecīgā komanda katrai OS: https://pytorch.org). Komanda bez CUDA compatible GPU būs: conda install pytorch torchvision -c pytorch
Uzinstalēt SkLearn ar komandu: conda install scikit-learn un matplotlib ar: conda install matplotlib
Palaist hello_world.py piemēru (pielikumā), izmantojot PyCharm programmu (veiksmīgas palaišanas gadījumā varēsiet pārliecināties, ka bibliotēkas strādā)
Vairāk par Anaconda environments / vidēm:
Izveido vidi: conda create --name tavs_vards
Aktivizē vidi: conda activate tavs_vards
Tad instalē bibliotēkas. PyCharm arī tev kā python interpreter ir jāizvēlas vide tavs_vards Vairāk par conda envs var palasīt: https://towardsdatascience.com/getting-started-with-python-environments-using-conda-32e9f2779307
Nepieciešams uzinstalēt pygame un numpy bibliotēkas
Sagatave: http://share.yellowrobot.xyz/quick/2023-9-7-C879F887-7302-4A7F-8C5B-39B7BAAEE3AB.zip
Implementēt funkciju
Iesniegt pirmkodu un screenshot, papildus bonus, ja izmanto rekursiju
Izveidotot kodu sekojošam vienādojumam: http://share.yellowrobot.xyz/upic/df7e6c9b6b8f880de6ee2d3e5b740e75_1673883820.png
Implementēt UML diagramā doto shēmu Python valodā un vienā failā iesniegt līdz ar uzdevumu. Papildus punkti, implementējot.
Shēma:
http://share.yellowrobot.xyz/upic/46175827e374b23b19f988e61f2b1ba2_1694030930.png
Interface Python valodā implementē ar ABCMeta un @abstractmethod. Implementēt tikai getters un setters, pārējās funkcijas atstāt tukšas ar pass,
piemēram.
1class Game:
2def new_game(self):
3pass
Video: https://youtube.com/live/G-FjSQjDky8?feature=share
Whiteboard: https://whiteboard.fi/4f1babb7-eb4f-4ac8-8124-9563a2631178
Materials: https://realpython.com/pygame-a-primer/
Implementēt TODO un UML shēmu: http://share.yellowrobot.xyz/upic/8734c0d130fd735370f25b7f6dd6e1d0_1694639166.png
Iegūt sekojošu rezultātu: http://share.yellowrobot.xyz/upic/522c87cb595310c6495273b1aea5283e_1694638538.png
Sagatave: http://share.yellowrobot.xyz/quick/2023-9-13-06471100-6D2C-4ABA-97FA-7AAEBE39AB35.zip
Iesniegt pirmkodu un screenshots ZIP formātā
Impementēt jaunu klasi ComponentTank, kas pārmantota no ComponentGameObject, UML shēma:
http://share.yellowrobot.xyz/upic/ef642379019e6be4b1b2e44870d3a1fd_1695277114.png
Pievienot dzelteno tanku no pozīcijas (0,0) un (1,0), (0,2) un (0,3) un pārējos virzienos, battle_city_sprites.png.
Implementēt, ka ar bultiņām var braukt pa karti.
Kamēr tanks brauc animācija strāda starp 2 kadriem, kad tanks apstājies animācija arī apstājas
Neļaut uzbraukt uz citiem šķēršļiem
Neļaut izbraukt ārā no kartes
Rezultātam aptuveni jāizskatās šādi (ievērot, ka braucot tanks animējas, bet atlaižot pogas stāv) http://share.yellowrobot.xyz/quick/2023-9-14-6FBC9587-66CD-42AC-803A-AD86EE337955.mp4
Iesniegt pirmkodu un screenshots ZIP formātā
Video: https://youtube.com/live/24KkX73TUV8?feature=share
Sagatave: https://share.yellowrobot.xyz/quick/2024-10-2-128AC6AC-BE41-4533-951A-D7B419DC9970.zip
Implementēt Singleton, Factory, Prototype, Object Pool
Iesniegt screenshot un pirmkodu.
Implementēt Builder vai Abstract Factory šablonu, lai izveidotu 2 dažādus līmeņus vai kartes. Sakot spēli, izlvēleties nejauši starp 2 līmeņiem vai kartēm.
Implementēt funkcionalitāti, ka tanki autonomi braukā pa karti un šauj, darbības mainās ar intervālu game_object.tank_next_move_time
Iesniegt screenshot un pirmkodu.
Video: https://youtube.com/live/yvvDTfwsT7c?feature=share
Materials: https://refactoring.guru/design-patterns
https://www.youtube.com/watch?v=5Va1fslNKEo
Implementēt Decorator pattern: Lai savācot zvaigznes tanks sāktu ātrāk braukt Closure pattern, lai nodrošinātu funkciju ātruma mērīšanu un try..catch
Template: https://share.yellowrobot.xyz/quick/2024-10-10-49B23DD3-ACC4-45B8-B11D-159D0FA9371B.zip
Veikt izmaiņas sagatavē
Balstoties uz sagatavi iepriekš implementēt Closure pattern - decorator_measure_time, lai nomērītu funkcijas izpildes ātrumu.
Implementēt vēl kādu bonusu, kas piešķirtu papildus spējas tankam ar Decorator pattern, piemēram šaut ātrāk lodes
Iesniegt source code kā zip
Video: https://youtube.com/live/pJ1MTSKNdBg?feature=share
Materials: https://refactoring.guru/design-patterns
https://www.youtube.com/watch?v=5Va1fslNKEo
Implementēt Observer, Command, Iterator, Memento patterns (TODOs)
Template: https://share.yellowrobot.xyz/quick/2024-10-17-859BC921-864F-46B3-8960-D306610E3AF0.zip
Implementēt player name Redo funkciju (ar Command Pattern)
Implementēt settings save / load (memento, state)
Implementēt iterator pattern ControllerGame.new_game funkcijā, lai Iterator aizstātu sekojošo 2 for ciklus ar vienu collection, kurš atgriež visas kartes pozīcijas x, y, bet svarīgi, ka pāšā collection/iterator iekšienē nebūtu arī 2x for loops
xxxxxxxxxx
21 for x in range(game.map_size[0]):
2 for y in range(game.map_size[1]):
Video: https://youtube.com/live/raIxZPXzAKI?feature=share
Materiāli: https://reactjs.org/docs/react-component.html https://datafloq.com/read/the-differences-between-three-major-application-architectures-mvc-vs-flux-vs-redux/
Balstoties uz Video instrukcijām, iepazīties ar React programēšanas šablonu Izmantojot sagatavi: https://share.yellowrobot.xyz/quick/2024-10-24-5CAF7251-D0EC-40BD-B8CA-026C3D0E4981.zip
Implementēt, lai būtu šāds rezultāts: http://share.yellowrobot.xyz/quick/2023-10-26-17339E1E-C1EA-42B3-85FE-FADC12B25AD2.mov
Uzdevumi:
Implementēt izmantojot React pattern funkcionalitāti, lai ReactTextBox laukā var ievadīt tekstu (ierakstīt, nodzēst, atstarpes)
Implementēt izmantojot React pattern funkcionalitāti ReactButton
Implementēt, lai var peivienot jaunu high scrore iekš WindowHighScores
Papildus uzdevums, ja teksts pārsniedz TextBox platumu, tad to nobīdīt pa vienam simbolam pa kreisi tā, lai paliek redzami tikai pēdējie simboli, kuri ielien teksta laukā.
Iesniegt pirmkodu un screenshot
Izmantojot 6.2. sagatavi, ievērojot React, Flux principus (setState(..), state, props) implementēt:
Sašķirot iegūtos punktus dilstošā secībā
Rādīt tikai 10 labākos punktus ar vārdu
Prasīt ievadīt vārdu tikai tad, ja lietotājs iekļūst punktu tabulā (10 labākajos)
Pievienot pogu “Aizvērt”, lai nebūtu nepieciešams ar ESC aizstaisīt HighScores ekrānu
Iesniegt pirmkodu un screenshot
Video: https://youtube.com/live/7ah-dv0ZefQ
Jamboard: https://jamboard.google.com/d/1CviqwGRHtGZ6NqtyZce0IieelvNxPIoOWT9XtuRriBw/edit?usp=sharing
Video: https://youtube.com/live/dp9kGvgHuOQ?feature=share
Jamboard: https://jamboard.google.com/d/1qmOj3J4hwlCL4QlzuFIsCeYiCYhB-PnZQBY0haVnvlo/edit?usp=sharing
Template: http://share.yellowrobot.xyz/1629812987-programming-tutorials/session_2.zip
Video: https://youtu.be/6LV6df_JWbs
Jamboard: https://jamboard.google.com/d/1ZrLZ2_WvgmvVBRsponJ8BeBckXm3alElUV3IrIC1Vv4/edit?usp=sharing
Template: http://share.yellowrobot.xyz/1629812987-programming-tutorials/session_3.zip
Tasks:
Post delete function using HTML form, ControllerPosts and ControllerDatabase
Ability to save url_slug
and open URL using slug instead of post_id, for example http://localhost:8000/posts/my_post_title
Submit whole project as ZIP
Video: https://youtu.be/OSvtOrJ7bHw
Jamboard: https://jamboard.google.com/d/1S3oYruAJmrakj7fn0xbGQ_xJfI1u_pY289MjDQGCgNs/edit?usp=sharing
Template: http://share.yellowrobot.xyz/1629812987-programming-tutorials/session_4.zip
Tasks:
Implement so that after deletion and editing user is redirected to home page and sees message "post deleted" or "post updated"
Implement so that in home page you see list of all recorded posts (title and date of editing) and link to open editing form
Implement editing form (reuse new post form) when opening existing post fill fields with existing information
Submit whole project as ZIP
Video: https://youtu.be/c27teOoh1Ws
Jamboard: https://jamboard.google.com/d/1ibr2_rja6JVzvfMkhUMjU7_WOHaZEWxkHRaKar0SDe8/edit?usp=sharing
Tasks:
Implement base.html for all html pages / templates in views
Implement title block in view and edit pages so that in page header there would post title
Implement index.html page table of pages using
Video: https://youtu.be/ykTH_gWN0Xg
Jamboard: https://jamboard.google.com/d/1zbUHpD2cp99eMStuPOpC7UU7OvBikjxY93CyaiRowAo/edit?usp=sharing
Template: http://share.yellowrobot.xyz/1629812987-programming-tutorials/session_6.zip
Using latest template finish implement tags editing and viewing in posts (use ModelTag class)
Finish implementing Image upload that has filename file_thumbnail_uuid and showing it in post
Implement new table and ModelAttachment and ability to upload multiple PDF attachments to each post
Video: https://youtu.be/xGvDowhT-Fs
Jamboard: https://jamboard.google.com/d/15sim1LtBzIxPqdwtzMzVwKzeyfWx2xoqTQXnT4JOozA/viewer?f=0
Tasks:
Implement tags database structure
Implement editing tags in posts
Implement displaying tags in post view
Implement get_all_posts_flattened using recursion
Tasks (pabeidzot uzdevumus pābraudīt vai sekojošie ir izdarīti):
Post delete function using HTML form, ControllerPosts and ControllerDatabase
Ability to save url_slug
and open URL using slug instead of post_id, for example http://localhost:8000/posts/my_post_title
Implement so that after deletion and editing user is redirected to home page and sees message "post deleted" or "post updated"
Implement so that in home page you see list of all recorded posts (title and date of editing) and link to open editing form
Implement editing form (reuse new post form) when opening existing post fill fields with existing information
Implement base.html for all html pages / templates in views
Implement title block in view and edit pages so that in page header there would post title
Implement index.html page table of pages using
Implement tags database structure
Implement editing tags in posts
Implement displaying tags in post view
Implement get_all_posts_flattened using recursion
Using latest template finish implement tags editing and viewing in posts (use ModelTag class)
Finish implementing file_thumbnail_uuid editing and showing in post
Implement new table and ModelAttachment and ability to upload multiple PDF attachments to each post
Implement users table and ModelUser object, add manually user with credentials test@test.com and password test. Check credentials when you login into your page
Do not allow access post edit pages for unauthorized users, but do allow access home page and posts view page. Do not show edit buttons for unauthorized users.
Implement session_type as filesystem or in sqlite database instead of encrypted cookie
Implementēt print vietā logger, kurš izvada datus gan konsolē, gan failā, kurš mainās vienreiz dienā (https://github.com/Delgan/loguru)
Implementēt SCSS stilus un uzstādīt PyCharm automātisko file watcher, kurš nokompilē CSS, kuru var iekļaut HTML (https://sass-lang.com)