Skip to content
View elisavetTriant's full-sized avatar
👩‍💻
Hello there!
👩‍💻
Hello there!

Block or report elisavetTriant

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
elisavetTriant/README.md

Hello! 👋

Who I am

I am Elissavet (Elizabeth) Triantafyllopoulou, an Information Technology Solutions Specialist with over twenty years of experience in architecting digital systems. Since 2003, I have been dedicated to bridging the gap between legacy foundations and the modern web, leading projects from initial concept through to deployment and maintenance.

Find me:

Pinned Loading

  1. responsive-images responsive-images Public

    Grunt task to resize and optimize images for responsive websites.

    JavaScript

  2. Hint.css updated for keyboard naviga... Hint.css updated for keyboard navigation and light themed tooltip.
    1
    /*! Hint.css - v3.0.0 - 2023-11-29
    2
    * https://kushagra.dev/lab/hint/
    3
    * Copyright (c) 2023 Kushagra Gour 
    4
    */
    5
    
                  
  3. Transforms the elements' average alt... Transforms the elements' average altitude into their orbital periods.
    1
    /*Intermediate Algorithm Scripting: Map the Debris
    2
    Return a new array that transforms the elements' average altitude into their orbital periods (in seconds).
    3
    The array will contain objects in the format {name: 'name', avgAlt: avgAlt}.
    4
    You can read about orbital periods on Wikipedia.
    5
    The values should be rounded to the nearest whole number. The body being orbited is Earth.
  4. palindrome-checker.js palindrome-checker.js
    1
    /*JavaScript Algorithms and Data Structures Projects: Palindrome Checker
    2
    Return true if the given string is a palindrome. Otherwise, return false.
    3
    A palindrome is a word or sentence that's spelled the same way both forward and backward, ignoring punctuation, case, and spacing.
    4
    Note
    5
    You'll need to remove all non-alphanumeric characters (punctuation, spaces and symbols) and turn everything into the same case (lower or upper case) in order to check for palindromes.
  5. sum-all-odd-fibonacci-numbers.js sum-all-odd-fibonacci-numbers.js
    1
    /*Intermediate Algorithm Scripting: Sum All Odd Fibonacci Numbers
    2
    https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sum-all-odd-fibonacci-numbers
    3
    Given a positive integer num, return the sum of all odd Fibonacci numbers that are less than or equal to num.
    4
    The first two numbers in the Fibonacci sequence are 1 and 1. Every additional number in the sequence is the sum of the two previous numbers. The first six numbers of the Fibonacci sequence are 1, 1, 2, 3, 5 and 8.
    5
    For example, sumFibs(10) should return 10 because all odd Fibonacci numbers less than or equal to 10 are 1, 1, 3, and 5.*/
  6. smallest-common-multiple-range.js smallest-common-multiple-range.js
    1
    /*https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/smallest-common-multiple
    2
    https://en.wikipedia.org/wiki/Least_common_multiple
    3
    https://en.wikipedia.org/wiki/Euclidean_algorithm
    4
    Intermediate Algorithm Scripting: Smallest Common Multiple
    5
    Find the smallest common multiple of the provided parameters that can be evenly divided by both, as well as by all sequential numbers in the range between these parameters.