Avatar

Taube
Anastasia

Junior Full-stack
Developer

Contact Information

Skills and Proficiency

  • Basics HTML5 and CSS3

  • Git, GitHub

  • Python 3

  • Django

  • SQL

Language skills

  • Russian: native

  • English: B2

About me

I' m 24 years old and have no commercial experience. It would be sad, but it actually does not. Now I am hard-working under my studying to start my IT-career. I'm a student of RS-School (Stage 0 JS/Frontend-development) and Yandex.Practicum (Python development).
My goal is simple. I want to create useful projects which are make people's daily life is better and easily.
A journey of a thousand miles begins with a single step, as they say. So at first I must finish my education. I'm sure I will be one of the best students in both schools because i work under it even in free-time, getting better little by little every day.

Education

Russian State
Social University

2016 - 2020

Computer science
and engineering

Learning the basics of programming and programming languages, including Python, which was used to write a bachelor's thesis on computer vision.

Yandex.Practicum

April 2022 - present

Python development

Study and practice of back-end development:
- Django-framework;
- SQL;
- testing.

Rolling Scopes
School

June 2022 - present

Stage 0 JS/
Frontend-development

Study and practice of front-end development:
- HTML;
- CSS;
- JS.

Work expirience

Demonstration of understanding of object-oriented programming.
Simulation of fitness tracker data transfer as height, weight of the user, number of basic movements (step or fungus), distance, their processing and output of the resulting information in the form:
Type of training: (type of training); Duration: (duration) hours; Distance: (distance) km; Cp. speed: (speed) km/h; kcal spent: (quantity)

Blogs Project (in process)
Online diary system. The user can register, create posts and edit them, as well as view other people's posts, posts by category.
In the future, the ability to leave comments will be added.

Bachelor's thesis. User interface and Computer Vision.
The program analyzes the video in order to categorize and count vehicles of different types: from cars to trucks.

Code example

Find the shortest word in the sentence
def find_short(sting):
  word_list = string.split()
  shortest_len = len(word_list[0])
  for word in word_list:
    if len(word)<shortest_len: 
      shortest_len = len(word) 
  return shortest_len