rsschool-cv

Andrii Maksym

Andrew Maxim


Email: fake_email@gmail.com

Phone: +44 777 777 111

GitHub: https://github.com/Uixmonster

Discord: Uixmonster


About me

I know basics of Python and SQL, also have experience in creating education projects on Django and Flask. I want to become a Junior Frontend Developer and ready to solve complex problems. I am studying computer sciences by myself using courses from leading universities on Coursera and also interested in sound engineering.


Skills

Programming languages

|Language | Level | |—|—| |Python |Intermediate| |HTML | Basic| |CSS | Basic| |JavaScript | Basic|

Frameworks

Other skills


Code examples

# if __name__ == '__main__': --> 'note for me'

class Person:
    def __init__(self, name, surname, age, country) -> None:
        self.name = name
        self.surname = surname
        self.age = age
        self.country = country

        self.adult_ages = {"PL": 18, "USA": 21}

    def is_adult(self):
        if self.adult_ages[self.country]:
            return True

        return False


if __name__ == "__main__":
    person = Person("Andrew", "Maksim", 16, "PL")
    print(person.name)
    print(person.is_adult())

Experience

HealthTracker – Django Web App

Used stack: Python, Django, Bootstrap, SQLite, Chart.js. Features: user registration, activity logging, data visualization with Chart.js, Django Admin.

Project demo pictures:

Screenshot 2024-05-26 141913 Screenshot 2024-05-26 142627 Screenshot 2024-05-26 142739

Project code example:

from django import forms
from django.contrib.auth.models import User
from .models import Meal, Activity, WeightEntry
from django.contrib.auth.forms import UserCreationForm, AuthenticationForm


class CustomUserCreationForm(UserCreationForm):
    class Meta:
        model = User
        fields = ['username', 'password1', 'password2']

    def __init__(self, *args, **kwargs):
        super(CustomUserCreationForm, self).__init__(*args, **kwargs)
        for field_name, field in self.fields.items():
            field.widget.attrs['class'] = 'form-control'


class MealForm(forms.ModelForm):
    class Meta:
        model = Meal
        fields = ['date', 'meal_type', 'calories', 'proteins', 'fats']

    def __init__(self, *args, **kwargs):
        super(MealForm, self).__init__(*args, **kwargs)
        for field_name, field in self.fields.items():
            field.widget.attrs['class'] = 'form-control'


class ActivityForm(forms.ModelForm):
    class Meta:
        model = Activity
        fields = ['date', 'activity_type', 'duration', 'calories_burned']

    def __init__(self, *args, **kwargs):
        super(ActivityForm, self).__init__(*args, **kwargs)
        for field_name, field in self.fields.items():
            field.widget.attrs['class'] = 'form-control'


class WeightEntryForm(forms.ModelForm):
    class Meta:
        model = WeightEntry
        fields = ['date', 'weight']

    def __init__(self, *args, **kwargs):
        super(WeightEntryForm, self).__init__(*args, **kwargs)
        for field_name, field in self.fields.items():
            field.widget.attrs['class'] = 'form-control'

Education

Also studied in the course:


Certificates:

Languages:

English – A2 (in progress)

Russian - C2

Ukranian - C2

Polish - B1