Hi, there! I'm Nura 👋
About me
> I'm working in economic field since 2016
> I started taking online courses in web development
> I am a self-motivated, responsible and hard working person
> I am able to work well both in a team environment as well as using own initiative
> I like cooking, hiking and traveling
Skills
Html
80%
Css/Sass
70%
Git/Github
60%
Javascript
20%
Figma
70%
Photoshop
50%
Education / Courses
- 2009-2015
- Bishkek Humanities University
- Sociology
- Master's degree
- 2017
- Chui Regional Library
- 1C: Accounting 8.3. "Accounting for budgetary organization in Kyrgyzstan
- Certificate
- 2019
- CDAC, Noida
- Basic IT "Fundamentals and Applications"
- Certificate
- 2020
- Bishkek Agroeconomical College
- Economy
- In progress
- 2021
- FreeCodeCamp
- Responsive Web Design
- Certificate
- 2022
- Rolling Scopes School
- Js/Front-end
- In progress
Languages
- English
- Intermediate
- Turkish
- Intermediate
- German
- Beginner
Code Exemples
function isDivideBy(n, a, b) {
if (n % a === 0 && n % b === 0) {
return true;
} else {
return false;
}
}