my photo

Elina Nepomniashchaia

30 years / Saint Petersburg

Junior Frontend Developer

I have a Phd in technical science for developing of a laser sensor for blood disease diagnostics. I am good at physics and mathematics, worked with data processing algorithms.

During this work I gained some organizational and leading skills too. My team received a government grant for medical optical sensor development. I was a local organizer of international conferences.

So I can learn fast enough and always go for my goals with great enthusiasm, which usually helps me to gain success.

Skills and Proficiency


HTML5

CSS3

JavaScript Basics

Git

VS Code

Adobe Photoshop, Illustrator, XD

Education and experience


Peter the Great St. Petersburg Polytechnic University, Master degree in quantum physics

PhD in technical science

Russian Science Foundation grant supervisor

Courses and qualification


Web Design

Fundamentals of Graphic Design

UX Design Fundamentals

Visual Elements of User Interface Design

Academic English: Writing

JavaScript

Languages


English - Upper-intermediate (according to the  EF online test)

Russian - Native

Italian - Basic

Code examples




const MODERN_ACTIVITY = 15;
const HALF_LIFE_PERIOD = 5730;
function isFloat(n){
return Number(n) === n && n % 1 !== 0;}
export default function dateSample(sampleActivitySTR) {
if (typeof sampleActivitySTR == "string") {
let sampleActivity = Number(sampleActivitySTR);
if ((Number.isInteger(sampleActivity) || isFloat(sampleActivity)) &&
((sampleActivity <= MODERN_ACTIVITY) && (sampleActivity > 0))) {
let k = 0.693 / HALF_LIFE_PERIOD;
let timeLife = Math.ceil((Math.log(MODERN_ACTIVITY/sampleActivity))/k);
return timeLife; }
else return false; }
else return false; }