Interests ✨

/**

I'm a person with a voracious hunger for knowledge, and being self-taught🥇 has led me to explore areas that were not in my original plans. This approach has helped me to improve and grow professionally, constantly seeking new challenges and opportunities for learning 📚. One arI also enjoyed the knowledge that I find particularly fascinating is UI/UX design ⚙️. This field allows me to unleash my creativity and find innovative solutions to problems, incorporating the latest trends and best practices to enhance the user experience 🎨.

Besides that, I also enjoy the application development process, being able to develop the business logic, working it from the databases💾, to the construction of the entire back-end 💻, then in my favorite part, in which I most like to innovate the front-end✨ of the application, I am a faithful believer that in the details is the magic🪄

Currently, I am studying the DevOps area 📖, which has taught me the importance of integrating this culture throughout the entire application development process. By implementing continuous integration and deployment 🚀, I have come to understand the significance of good software architecture for scalability and performance, ultimately providing clients with a professional product 🎉.

*/

// Code snippet showcase:


  
    const randomHexColorCode = () => {
      let n = (Math.random() * 0xfffff * 1000000)
      .toString(16);
      return '#' + n.slice(0, 6);
      };
    randomHexColorCode(); // "#e34155"
  
  
    const shuffle = ([...arr]) => {
      let m = arr.length;
      while (m) {
        const i = Math.floor(Math.random() * m--);
        [arr[m], arr[i]] = [arr[i], arr[m]];
        }
      return arr;
    };
    const foo = [1, 2, 3];
    shuffle(foo); // [2, 3, 1], foo = [1, 2, 3]


  
    const isAnagram = (str1, str2) => {
      const normalize = str =>
        str
          .toLowerCase()
          .replace(/[^a-z0-9]/gi, '')
          .split('')
          .sort()
          .join('');
      return normalize(str1) === normalize(str2);
      };
    isAnagram('iceman', 'cinema'); // true