profile picture

Istvan Varadi

Full stack developer

About me


Hi There! I am a Hungarian living in Poland. I fell in love with coding 1.5 years ago. Since then I write some code each day. I love front-end and backend as well. I was lucky enough to get my first paid project at my current company. My first assignment was a charity website first one in the “Portfolio Website” section above.

Contact Info

Please visit my Protfolio Website to find out more!


Experience

I have worked on a charity project for my current company Cognizant Techology Solutions. I am also studying here something new coding related things each year. I came to the realization here how much I love coding.


Project Examples

Please Check my Protfolio Website!


Languages

English C1(I am working for YouTube using it every day)

Hungarian Native


Education

Semmelweis Ignàc Medical University Public Helth(Microbiology specialty)

FreeCodeCamp(Responsive Webdesign)

Codecademy(Javascript, HTML, React)

Cognizant (Javascript by Mosh)

Code example

function lonelyinteger(a) { const hash={ } for (let e of a){ if(!hash[e]){ hash[e]=1 }else{ hash[e]++ }} for(let e in hash){ if(hash[e]===1){ console.log(e) } } } lonelyinteger([1,2,2,1,4])