Photo of Victor Gnedin

Victor Gnedin

Senior+ Product Designer & Mentor

Contacts

About me

Based in London 🇬🇧, Global Talent visa.

Senior+ Product Designer with 8 years of experience in delivering products cherished by up to 90 million people.

Proven in B2C and B2B products across diverse fields: FinTech, EdTech, Search Engines, and Classifieds.

Experienced with two of Russia's top three Big Tech firms, akin to FAANG.

Committed to mentoring and teaching, graduating over 100 designers and delivering 150+ hours of live webinars.

Skills

Completed courses

Code example

This fucnction sets weather info on my portfolio website gned.in:

                    

    function setWeather() {

        fetch("https://2qtt2ujcsk.execute-api.eu-north-1.amazonaws.com/prod/weather")
            .then(response => response.json())
            .then(data => {
                // Set temperature data
                const spanTemperature = document.querySelector("span.temperature")
                spanTemperature.textContent = data.current.tempFormatted
            })
            .catch(error => {
                // Hide container if no temperature data has returned
                const divWeather = document.querySelector("div.weather")
                divWeather.style.display = "none"
            })
    }
                    
                

Languages