Added Emojis to all pages and their titles/subtitles (#74)

This commit is contained in:
Evgenii
2023-01-31 23:59:03 +01:00
committed by GitHub
parent a4c294e458
commit 9d4d591a04
40 changed files with 191 additions and 194 deletions

View File

@@ -1,11 +1,11 @@
# Pet-projects
# :telescope: Pet-projects
The pet-projects are a great chance to gain hands-on experience when learning a programming language or libraries and/or frameworks. The pet-projects can also become a starting point for interviews and an invitation to dialogue if you start your career.
There are often difficulties with finding and choosing the idea of a pet-project. We tried to put together a small collection of links and ideas that can be a start for your inspiration. After reading it, you will be able to choose the most suitable idea or it will inspire you to some idea of your own!
## External links
## :arrows_counterclockwise: External links
* [Google Summer of Code](https://summerofcode.withgoogle.com/archive)
@@ -20,9 +20,9 @@ The repository contains a collection of pet projects collected for various progr
Roulette with ideas for pet projects. You set up the expected complexity of the project and run the roulette. Then randomness will decide for you what task you will have to solve :)
## The list of pet-project ideas
## :boom: The list of pet-project ideas
### Games
### :arrow_forward: Games
Below is a list of classic video games that do not contain complex AI or dynamic world generation. You can implement one of the following games, and then refine additional functionality. As a graphics library, you can use [SFML](https://www.sfml-dev.org/). This is an easy-to-use library that provides a sufficient set of features for creating simple graphical interfaces for 2D or 2.5D games using [sprites](https://en.wikipedia.org/wiki/Sprite_(computer_graphics)). If you want to do something more complex where physics is applied, you can start with simple engines, for example: [Box2D](https://box2d.org/) or learn more advanced ones: [Cocos2D](https://www.cocos.com/en/), [Unreal Engine](https://www.unrealengine.com/en-US/) etc. Don't forget about the rule: "from simple to complex." Start with a simple one, and gradually increase the difficulty.
@@ -47,7 +47,7 @@ It's recommended reading the following sources, which contain more information a
---
### Applications
### :arrow_forward: Applications
When creating an application, start with the simplest implementation of a console application. After each completed step, set a more complex task, for example: add a graphical interface for the application, teach the application to request data from the source using an http request, and then write/read the received data to a test file/database, etc. Do not forget about the principle: "from simple to complex."
@@ -60,7 +60,7 @@ When creating an application, start with the simplest implementation of a consol
---
### Student applications
### :arrow_forward: Student applications
The following examples are more suitable for students who are passing or recently passed basic disciplines: linear algebra, analytical geometry, mathematical analysis, physics, etc. Tasks for the application of the studied theory will help to simultaneously "catch two birds with one stone": to consolidate the studied theory in practice and to practice programming. This path is not closed to others, but it is obviously easier for students, because knowledge of academic disciplines is still fresh.